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