B Set 60 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 4. Follow the path: ×2 → ×3 → +9 → ×4 → -68. What is the final value?",
                "answer": "64",
                "startValue": 4,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 8
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 24
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 33
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 132
                    },
                    {
                        "op": "-",
                        "operand": 68,
                        "result": 64
                    }
                ],
                "finalValue": 64,
                "pathDescription": "Step 1: ×2 = 8; Step 2: ×3 = 24; Step 3: +9 = 33; Step 4: ×4 = 132; Step 5: -68 = 64"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 3. Follow the path: -2 → +4 → ×3 → ×2 → -13. What is the final value?",
                "answer": "17",
                "startValue": 3,
                "steps": [
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 5
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 15
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 30
                    },
                    {
                        "op": "-",
                        "operand": 13,
                        "result": 17
                    }
                ],
                "finalValue": 17,
                "pathDescription": "Step 1: -2 = 1; Step 2: +4 = 5; Step 3: ×3 = 15; Step 4: ×2 = 30; Step 5: -13 = 17"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 2. Follow the path: +10 → +9 → ×2 → ×2 → ×3. What is the final value?",
                "answer": "252",
                "startValue": 2,
                "steps": [
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 12
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 21
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 42
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 84
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 252
                    }
                ],
                "finalValue": 252,
                "pathDescription": "Step 1: +10 = 12; Step 2: +9 = 21; Step 3: ×2 = 42; Step 4: ×2 = 84; Step 5: ×3 = 252"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 6. Follow the path: +1 → +9 → ×2 → -27 → +8. What is the final value?",
                "answer": "13",
                "startValue": 6,
                "steps": [
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 7
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 16
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 32
                    },
                    {
                        "op": "-",
                        "operand": 27,
                        "result": 5
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 13
                    }
                ],
                "finalValue": 13,
                "pathDescription": "Step 1: +1 = 7; Step 2: +9 = 16; Step 3: ×2 = 32; Step 4: -27 = 5; Step 5: +8 = 13"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 4. Follow the path: +2 → ×2 → -1 → ×3 → +10. What is the final value?",
                "answer": "43",
                "startValue": 4,
                "steps": [
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 6
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 12
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 11
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 33
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 43
                    }
                ],
                "finalValue": 43,
                "pathDescription": "Step 1: +2 = 6; Step 2: ×2 = 12; Step 3: -1 = 11; Step 4: ×3 = 33; Step 5: +10 = 43"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 3. Follow the path: +10 → ×4 → +10 → -33 → +9. What is the final value?",
                "answer": "38",
                "startValue": 3,
                "steps": [
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 13
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 52
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 62
                    },
                    {
                        "op": "-",
                        "operand": 33,
                        "result": 29
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 38
                    }
                ],
                "finalValue": 38,
                "pathDescription": "Step 1: +10 = 13; Step 2: ×4 = 52; Step 3: +10 = 62; Step 4: -33 = 29; Step 5: +9 = 38"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 4. Follow the path: ×3 → ×2 → ×3 → +9 → +10. What is the final value?",
                "answer": "91",
                "startValue": 4,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 12
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 24
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 72
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 81
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 91
                    }
                ],
                "finalValue": 91,
                "pathDescription": "Step 1: ×3 = 12; Step 2: ×2 = 24; Step 3: ×3 = 72; Step 4: +9 = 81; Step 5: +10 = 91"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 6. Follow the path: ×3 → ×4 → -34 → -9 → -21. What is the final value?",
                "answer": "8",
                "startValue": 6,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 18
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 72
                    },
                    {
                        "op": "-",
                        "operand": 34,
                        "result": 38
                    },
                    {
                        "op": "-",
                        "operand": 9,
                        "result": 29
                    },
                    {
                        "op": "-",
                        "operand": 21,
                        "result": 8
                    }
                ],
                "finalValue": 8,
                "pathDescription": "Step 1: ×3 = 18; Step 2: ×4 = 72; Step 3: -34 = 38; Step 4: -9 = 29; Step 5: -21 = 8"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}