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