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