B Set 33 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 3. Follow the path: -1 → -1 → -1 → -1 → +3. What is the final value?",
                "answer": "2",
                "startValue": 3,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 2
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": -1
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 2
                    }
                ],
                "finalValue": 2,
                "pathDescription": "Step 1: -1 = 2; Step 2: -1 = 1; Step 3: -1 = 0; Step 4: -1 = -1; Step 5: +3 = 2"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 10. Follow the path: -5 → +3 → ×4 → +2 → -13. What is the final value?",
                "answer": "21",
                "startValue": 10,
                "steps": [
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 5
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 8
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 32
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 34
                    },
                    {
                        "op": "-",
                        "operand": 13,
                        "result": 21
                    }
                ],
                "finalValue": 21,
                "pathDescription": "Step 1: -5 = 5; Step 2: +3 = 8; Step 3: ×4 = 32; Step 4: +2 = 34; Step 5: -13 = 21"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 10. Follow the path: -3 → ×4 → ×4 → ×4 → +5. What is the final value?",
                "answer": "453",
                "startValue": 10,
                "steps": [
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 7
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 28
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 112
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 448
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 453
                    }
                ],
                "finalValue": 453,
                "pathDescription": "Step 1: -3 = 7; Step 2: ×4 = 28; Step 3: ×4 = 112; Step 4: ×4 = 448; Step 5: +5 = 453"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 10. Follow the path: +4 → -8 → ×2 → +3 → +4. What is the final value?",
                "answer": "19",
                "startValue": 10,
                "steps": [
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 14
                    },
                    {
                        "op": "-",
                        "operand": 8,
                        "result": 6
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 12
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 15
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 19
                    }
                ],
                "finalValue": 19,
                "pathDescription": "Step 1: +4 = 14; Step 2: -8 = 6; Step 3: ×2 = 12; Step 4: +3 = 15; Step 5: +4 = 19"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 10. Follow the path: -5 → +7 → ×3 → ×2 → -36. What is the final value?",
                "answer": "36",
                "startValue": 10,
                "steps": [
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 5
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 12
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 36
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 72
                    },
                    {
                        "op": "-",
                        "operand": 36,
                        "result": 36
                    }
                ],
                "finalValue": 36,
                "pathDescription": "Step 1: -5 = 5; Step 2: +7 = 12; Step 3: ×3 = 36; Step 4: ×2 = 72; Step 5: -36 = 36"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 5. Follow the path: ×3 → ×2 → ×4 → ×3 → ×3. What is the final value?",
                "answer": "1080",
                "startValue": 5,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 15
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 30
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 120
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 360
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 1080
                    }
                ],
                "finalValue": 1080,
                "pathDescription": "Step 1: ×3 = 15; Step 2: ×2 = 30; Step 3: ×4 = 120; Step 4: ×3 = 360; Step 5: ×3 = 1080"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 5. Follow the path: -4 → +2 → +8 → -8 → +8. What is the final value?",
                "answer": "11",
                "startValue": 5,
                "steps": [
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 3
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 11
                    },
                    {
                        "op": "-",
                        "operand": 8,
                        "result": 3
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 11
                    }
                ],
                "finalValue": 11,
                "pathDescription": "Step 1: -4 = 1; Step 2: +2 = 3; Step 3: +8 = 11; Step 4: -8 = 3; Step 5: +8 = 11"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 8. Follow the path: +1 → -6 → +6 → ×2 → -12. What is the final value?",
                "answer": "6",
                "startValue": 8,
                "steps": [
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 9
                    },
                    {
                        "op": "-",
                        "operand": 6,
                        "result": 3
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 9
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 18
                    },
                    {
                        "op": "-",
                        "operand": 12,
                        "result": 6
                    }
                ],
                "finalValue": 6,
                "pathDescription": "Step 1: +1 = 9; Step 2: -6 = 3; Step 3: +6 = 9; Step 4: ×2 = 18; Step 5: -12 = 6"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}