B Set 61 Unknown

This page uses a content type that does not have a custom renderer yet. Raw structured data is shown below.

{
    "contentData": {
        "operation": "math-maze",
        "subject": "arithmetic",
        "difficulty": "hard",
        "config": {
            "difficulty": "hard",
            "maxNumber": 10
        },
        "problems": [
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 10. Follow the path: ×4 → ×2 → +7 → ×3 → ×4. What is the final value?",
                "answer": "1044",
                "startValue": 10,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 40
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 80
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 87
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 261
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 1044
                    }
                ],
                "finalValue": 1044,
                "pathDescription": "Step 1: ×4 = 40; Step 2: ×2 = 80; Step 3: +7 = 87; Step 4: ×3 = 261; Step 5: ×4 = 1044"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 1. Follow the path: +2 → +9 → ×4 → ×4 → ×2. What is the final value?",
                "answer": "384",
                "startValue": 1,
                "steps": [
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 3
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 12
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 48
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 192
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 384
                    }
                ],
                "finalValue": 384,
                "pathDescription": "Step 1: +2 = 3; Step 2: +9 = 12; Step 3: ×4 = 48; Step 4: ×4 = 192; Step 5: ×2 = 384"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 10. Follow the path: ×2 → -7 → +9 → +2 → -3. What is the final value?",
                "answer": "21",
                "startValue": 10,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 20
                    },
                    {
                        "op": "-",
                        "operand": 7,
                        "result": 13
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 22
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 24
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 21
                    }
                ],
                "finalValue": 21,
                "pathDescription": "Step 1: ×2 = 20; Step 2: -7 = 13; Step 3: +9 = 22; Step 4: +2 = 24; Step 5: -3 = 21"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 10. Follow the path: +1 → +7 → ×2 → +3 → -19. What is the final value?",
                "answer": "20",
                "startValue": 10,
                "steps": [
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 11
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 18
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 36
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 39
                    },
                    {
                        "op": "-",
                        "operand": 19,
                        "result": 20
                    }
                ],
                "finalValue": 20,
                "pathDescription": "Step 1: +1 = 11; Step 2: +7 = 18; Step 3: ×2 = 36; Step 4: +3 = 39; Step 5: -19 = 20"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 8. Follow the path: +5 → +5 → -6 → -7 → -4. What is the final value?",
                "answer": "1",
                "startValue": 8,
                "steps": [
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 13
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 18
                    },
                    {
                        "op": "-",
                        "operand": 6,
                        "result": 12
                    },
                    {
                        "op": "-",
                        "operand": 7,
                        "result": 5
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 1
                    }
                ],
                "finalValue": 1,
                "pathDescription": "Step 1: +5 = 13; Step 2: +5 = 18; Step 3: -6 = 12; Step 4: -7 = 5; Step 5: -4 = 1"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 2. Follow the path: ×4 → +7 → -10 → ×2 → ×2. What is the final value?",
                "answer": "20",
                "startValue": 2,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 8
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 15
                    },
                    {
                        "op": "-",
                        "operand": 10,
                        "result": 5
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 10
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 20
                    }
                ],
                "finalValue": 20,
                "pathDescription": "Step 1: ×4 = 8; Step 2: +7 = 15; Step 3: -10 = 5; Step 4: ×2 = 10; Step 5: ×2 = 20"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 10. Follow the path: ×3 → -29 → -1 → ×2 → -1. What is the final value?",
                "answer": "-1",
                "startValue": 10,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 30
                    },
                    {
                        "op": "-",
                        "operand": 29,
                        "result": 1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 0
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": -1
                    }
                ],
                "finalValue": -1,
                "pathDescription": "Step 1: ×3 = 30; Step 2: -29 = 1; Step 3: -1 = 0; Step 4: ×2 = 0; Step 5: -1 = -1"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 10. Follow the path: -1 → -3 → +8 → -11 → -2. What is the final value?",
                "answer": "1",
                "startValue": 10,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 9
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 6
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 14
                    },
                    {
                        "op": "-",
                        "operand": 11,
                        "result": 3
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 1
                    }
                ],
                "finalValue": 1,
                "pathDescription": "Step 1: -1 = 9; Step 2: -3 = 6; Step 3: +8 = 14; Step 4: -11 = 3; Step 5: -2 = 1"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}