B Set 65 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": "medium",
        "config": {
            "difficulty": "medium",
            "maxNumber": 10
        },
        "problems": [
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 10. Follow the path: -8 → ×2 → -2 → ×4. What is the final value?",
                "answer": "8",
                "startValue": 10,
                "steps": [
                    {
                        "op": "-",
                        "operand": 8,
                        "result": 2
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 4
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 2
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 8
                    }
                ],
                "finalValue": 8,
                "pathDescription": "Step 1: -8 = 2; Step 2: ×2 = 4; Step 3: -2 = 2; Step 4: ×4 = 8"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 4. Follow the path: +4 → ×2 → -7 → ×2. What is the final value?",
                "answer": "18",
                "startValue": 4,
                "steps": [
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 8
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 16
                    },
                    {
                        "op": "-",
                        "operand": 7,
                        "result": 9
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 18
                    }
                ],
                "finalValue": 18,
                "pathDescription": "Step 1: +4 = 8; Step 2: ×2 = 16; Step 3: -7 = 9; Step 4: ×2 = 18"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 10. Follow the path: +7 → +10 → -10 → ×4. What is the final value?",
                "answer": "68",
                "startValue": 10,
                "steps": [
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 17
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 27
                    },
                    {
                        "op": "-",
                        "operand": 10,
                        "result": 17
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 68
                    }
                ],
                "finalValue": 68,
                "pathDescription": "Step 1: +7 = 17; Step 2: +10 = 27; Step 3: -10 = 17; Step 4: ×4 = 68"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 7. Follow the path: +6 → -5 → ×4 → -17. What is the final value?",
                "answer": "15",
                "startValue": 7,
                "steps": [
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 13
                    },
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 8
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 32
                    },
                    {
                        "op": "-",
                        "operand": 17,
                        "result": 15
                    }
                ],
                "finalValue": 15,
                "pathDescription": "Step 1: +6 = 13; Step 2: -5 = 8; Step 3: ×4 = 32; Step 4: -17 = 15"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 7. Follow the path: ×3 → ×4 → -34 → -19. What is the final value?",
                "answer": "31",
                "startValue": 7,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 21
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 84
                    },
                    {
                        "op": "-",
                        "operand": 34,
                        "result": 50
                    },
                    {
                        "op": "-",
                        "operand": 19,
                        "result": 31
                    }
                ],
                "finalValue": 31,
                "pathDescription": "Step 1: ×3 = 21; Step 2: ×4 = 84; Step 3: -34 = 50; Step 4: -19 = 31"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 9. Follow the path: ×2 → +10 → ×3 → +7. What is the final value?",
                "answer": "91",
                "startValue": 9,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 18
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 28
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 84
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 91
                    }
                ],
                "finalValue": 91,
                "pathDescription": "Step 1: ×2 = 18; Step 2: +10 = 28; Step 3: ×3 = 84; Step 4: +7 = 91"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 7. Follow the path: +3 → ×2 → +4 → -19. What is the final value?",
                "answer": "5",
                "startValue": 7,
                "steps": [
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 10
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 20
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 24
                    },
                    {
                        "op": "-",
                        "operand": 19,
                        "result": 5
                    }
                ],
                "finalValue": 5,
                "pathDescription": "Step 1: +3 = 10; Step 2: ×2 = 20; Step 3: +4 = 24; Step 4: -19 = 5"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 8. Follow the path: ×3 → ×2 → -34 → +6. What is the final value?",
                "answer": "20",
                "startValue": 8,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 24
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 48
                    },
                    {
                        "op": "-",
                        "operand": 34,
                        "result": 14
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 20
                    }
                ],
                "finalValue": 20,
                "pathDescription": "Step 1: ×3 = 24; Step 2: ×2 = 48; Step 3: -34 = 14; Step 4: +6 = 20"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}