B Set 99 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": "easy",
        "config": {
            "difficulty": "easy",
            "maxNumber": 10
        },
        "problems": [
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 7. Follow the path: ×3 → ×2 → +9. What is the final value?",
                "answer": "51",
                "startValue": 7,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 21
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 42
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 51
                    }
                ],
                "finalValue": 51,
                "pathDescription": "Step 1: ×3 = 21; Step 2: ×2 = 42; Step 3: +9 = 51"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 6. Follow the path: +8 → +1 → +9. What is the final value?",
                "answer": "24",
                "startValue": 6,
                "steps": [
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 14
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 15
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 24
                    }
                ],
                "finalValue": 24,
                "pathDescription": "Step 1: +8 = 14; Step 2: +1 = 15; Step 3: +9 = 24"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 2. Follow the path: +3 → +6 → +6. What is the final value?",
                "answer": "17",
                "startValue": 2,
                "steps": [
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 5
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 11
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 17
                    }
                ],
                "finalValue": 17,
                "pathDescription": "Step 1: +3 = 5; Step 2: +6 = 11; Step 3: +6 = 17"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 1. Follow the path: ×2 → -1 → ×2. What is the final value?",
                "answer": "2",
                "startValue": 1,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 2
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 2
                    }
                ],
                "finalValue": 2,
                "pathDescription": "Step 1: ×2 = 2; Step 2: -1 = 1; Step 3: ×2 = 2"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 9. Follow the path: ×4 → ×4 → ×4. What is the final value?",
                "answer": "576",
                "startValue": 9,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 36
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 144
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 576
                    }
                ],
                "finalValue": 576,
                "pathDescription": "Step 1: ×4 = 36; Step 2: ×4 = 144; Step 3: ×4 = 576"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 8. Follow the path: +7 → ×2 → +5. What is the final value?",
                "answer": "35",
                "startValue": 8,
                "steps": [
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 15
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 30
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 35
                    }
                ],
                "finalValue": 35,
                "pathDescription": "Step 1: +7 = 15; Step 2: ×2 = 30; Step 3: +5 = 35"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 4. Follow the path: ×2 → ×4 → +7. What is the final value?",
                "answer": "39",
                "startValue": 4,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 8
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 32
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 39
                    }
                ],
                "finalValue": 39,
                "pathDescription": "Step 1: ×2 = 8; Step 2: ×4 = 32; Step 3: +7 = 39"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 10. Follow the path: ×4 → ×2 → -21. What is the final value?",
                "answer": "59",
                "startValue": 10,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 40
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 80
                    },
                    {
                        "op": "-",
                        "operand": 21,
                        "result": 59
                    }
                ],
                "finalValue": 59,
                "pathDescription": "Step 1: ×4 = 40; Step 2: ×2 = 80; Step 3: -21 = 59"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}