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