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