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