B Set 57 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 7. Follow the path: -1 → ×2 → +10 → -9 → +10. What is the final value?",
                "answer": "23",
                "startValue": 7,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 6
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 12
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 22
                    },
                    {
                        "op": "-",
                        "operand": 9,
                        "result": 13
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 23
                    }
                ],
                "finalValue": 23,
                "pathDescription": "Step 1: -1 = 6; Step 2: ×2 = 12; Step 3: +10 = 22; Step 4: -9 = 13; Step 5: +10 = 23"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 8. Follow the path: +6 → +1 → ×4 → -24 → +1. What is the final value?",
                "answer": "37",
                "startValue": 8,
                "steps": [
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 14
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 15
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 60
                    },
                    {
                        "op": "-",
                        "operand": 24,
                        "result": 36
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 37
                    }
                ],
                "finalValue": 37,
                "pathDescription": "Step 1: +6 = 14; Step 2: +1 = 15; Step 3: ×4 = 60; Step 4: -24 = 36; Step 5: +1 = 37"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 9. Follow the path: ×4 → ×2 → ×4 → -68 → ×2. What is the final value?",
                "answer": "440",
                "startValue": 9,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 36
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 72
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 288
                    },
                    {
                        "op": "-",
                        "operand": 68,
                        "result": 220
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 440
                    }
                ],
                "finalValue": 440,
                "pathDescription": "Step 1: ×4 = 36; Step 2: ×2 = 72; Step 3: ×4 = 288; Step 4: -68 = 220; Step 5: ×2 = 440"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 5. Follow the path: ×3 → ×4 → -45 → ×2 → +9. What is the final value?",
                "answer": "39",
                "startValue": 5,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 15
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 60
                    },
                    {
                        "op": "-",
                        "operand": 45,
                        "result": 15
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 30
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 39
                    }
                ],
                "finalValue": 39,
                "pathDescription": "Step 1: ×3 = 15; Step 2: ×4 = 60; Step 3: -45 = 15; Step 4: ×2 = 30; Step 5: +9 = 39"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 3. Follow the path: -2 → +9 → ×2 → -11 → ×4. What is the final value?",
                "answer": "36",
                "startValue": 3,
                "steps": [
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 10
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 20
                    },
                    {
                        "op": "-",
                        "operand": 11,
                        "result": 9
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 36
                    }
                ],
                "finalValue": 36,
                "pathDescription": "Step 1: -2 = 1; Step 2: +9 = 10; Step 3: ×2 = 20; Step 4: -11 = 9; Step 5: ×4 = 36"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 8. Follow the path: ×2 → ×2 → +8 → -10 → +10. What is the final value?",
                "answer": "40",
                "startValue": 8,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 16
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 32
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 40
                    },
                    {
                        "op": "-",
                        "operand": 10,
                        "result": 30
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 40
                    }
                ],
                "finalValue": 40,
                "pathDescription": "Step 1: ×2 = 16; Step 2: ×2 = 32; Step 3: +8 = 40; Step 4: -10 = 30; Step 5: +10 = 40"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 4. Follow the path: ×3 → +3 → ×4 → ×3 → ×4. What is the final value?",
                "answer": "720",
                "startValue": 4,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 12
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 15
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 60
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 180
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 720
                    }
                ],
                "finalValue": 720,
                "pathDescription": "Step 1: ×3 = 12; Step 2: +3 = 15; Step 3: ×4 = 60; Step 4: ×3 = 180; Step 5: ×4 = 720"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 8. Follow the path: +1 → -6 → ×4 → -2 → -3. What is the final value?",
                "answer": "7",
                "startValue": 8,
                "steps": [
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 9
                    },
                    {
                        "op": "-",
                        "operand": 6,
                        "result": 3
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 12
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 10
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 7
                    }
                ],
                "finalValue": 7,
                "pathDescription": "Step 1: +1 = 9; Step 2: -6 = 3; Step 3: ×4 = 12; Step 4: -2 = 10; Step 5: -3 = 7"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}