B Set 35 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: -2 → +3 → -1. What is the final value?",
                "answer": "7",
                "startValue": 7,
                "steps": [
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 5
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 8
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 7
                    }
                ],
                "finalValue": 7,
                "pathDescription": "Step 1: -2 = 5; Step 2: +3 = 8; Step 3: -1 = 7"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 9. Follow the path: -3 → +6 → -3. What is the final value?",
                "answer": "9",
                "startValue": 9,
                "steps": [
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 6
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 12
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 9
                    }
                ],
                "finalValue": 9,
                "pathDescription": "Step 1: -3 = 6; Step 2: +6 = 12; Step 3: -3 = 9"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 9. Follow the path: ×3 → ×2 → -46. What is the final value?",
                "answer": "8",
                "startValue": 9,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 27
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 54
                    },
                    {
                        "op": "-",
                        "operand": 46,
                        "result": 8
                    }
                ],
                "finalValue": 8,
                "pathDescription": "Step 1: ×3 = 27; Step 2: ×2 = 54; Step 3: -46 = 8"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 8. Follow the path: ×2 → ×2 → ×4. What is the final value?",
                "answer": "128",
                "startValue": 8,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 16
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 32
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 128
                    }
                ],
                "finalValue": 128,
                "pathDescription": "Step 1: ×2 = 16; Step 2: ×2 = 32; Step 3: ×4 = 128"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 10. Follow the path: +2 → -6 → -3. What is the final value?",
                "answer": "3",
                "startValue": 10,
                "steps": [
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 12
                    },
                    {
                        "op": "-",
                        "operand": 6,
                        "result": 6
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 3
                    }
                ],
                "finalValue": 3,
                "pathDescription": "Step 1: +2 = 12; Step 2: -6 = 6; Step 3: -3 = 3"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 9. Follow the path: +9 → ×2 → +1. What is the final value?",
                "answer": "37",
                "startValue": 9,
                "steps": [
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 18
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 36
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 37
                    }
                ],
                "finalValue": 37,
                "pathDescription": "Step 1: +9 = 18; Step 2: ×2 = 36; Step 3: +1 = 37"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 2. Follow the path: +3 → ×3 → ×3. What is the final value?",
                "answer": "45",
                "startValue": 2,
                "steps": [
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 5
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 15
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 45
                    }
                ],
                "finalValue": 45,
                "pathDescription": "Step 1: +3 = 5; Step 2: ×3 = 15; Step 3: ×3 = 45"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 2. Follow the path: ×2 → ×4 → -7. What is the final value?",
                "answer": "9",
                "startValue": 2,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 4
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 16
                    },
                    {
                        "op": "-",
                        "operand": 7,
                        "result": 9
                    }
                ],
                "finalValue": 9,
                "pathDescription": "Step 1: ×2 = 4; Step 2: ×4 = 16; Step 3: -7 = 9"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}