B Set 96 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 1. Follow the path: +10 → -5 → ×4 → -20. What is the final value?",
                "answer": "4",
                "startValue": 1,
                "steps": [
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 11
                    },
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 6
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 24
                    },
                    {
                        "op": "-",
                        "operand": 20,
                        "result": 4
                    }
                ],
                "finalValue": 4,
                "pathDescription": "Step 1: +10 = 11; Step 2: -5 = 6; Step 3: ×4 = 24; Step 4: -20 = 4"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 2. Follow the path: ×4 → ×2 → +6 → +8. What is the final value?",
                "answer": "30",
                "startValue": 2,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 8
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 16
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 22
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 30
                    }
                ],
                "finalValue": 30,
                "pathDescription": "Step 1: ×4 = 8; Step 2: ×2 = 16; Step 3: +6 = 22; Step 4: +8 = 30"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 8. Follow the path: ×4 → -6 → +3 → +6. What is the final value?",
                "answer": "35",
                "startValue": 8,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 32
                    },
                    {
                        "op": "-",
                        "operand": 6,
                        "result": 26
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 29
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 35
                    }
                ],
                "finalValue": 35,
                "pathDescription": "Step 1: ×4 = 32; Step 2: -6 = 26; Step 3: +3 = 29; Step 4: +6 = 35"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 9. Follow the path: +10 → +7 → ×4 → -99. What is the final value?",
                "answer": "5",
                "startValue": 9,
                "steps": [
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 19
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 26
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 104
                    },
                    {
                        "op": "-",
                        "operand": 99,
                        "result": 5
                    }
                ],
                "finalValue": 5,
                "pathDescription": "Step 1: +10 = 19; Step 2: +7 = 26; Step 3: ×4 = 104; Step 4: -99 = 5"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 4. Follow the path: +5 → ×2 → ×2 → -9. What is the final value?",
                "answer": "27",
                "startValue": 4,
                "steps": [
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 9
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 18
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 36
                    },
                    {
                        "op": "-",
                        "operand": 9,
                        "result": 27
                    }
                ],
                "finalValue": 27,
                "pathDescription": "Step 1: +5 = 9; Step 2: ×2 = 18; Step 3: ×2 = 36; Step 4: -9 = 27"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 1. Follow the path: ×3 → ×2 → -1 → ×3. What is the final value?",
                "answer": "15",
                "startValue": 1,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 3
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 6
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 5
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 15
                    }
                ],
                "finalValue": 15,
                "pathDescription": "Step 1: ×3 = 3; Step 2: ×2 = 6; Step 3: -1 = 5; Step 4: ×3 = 15"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 10. Follow the path: +7 → -12 → +9 → ×2. What is the final value?",
                "answer": "28",
                "startValue": 10,
                "steps": [
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 17
                    },
                    {
                        "op": "-",
                        "operand": 12,
                        "result": 5
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 14
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 28
                    }
                ],
                "finalValue": 28,
                "pathDescription": "Step 1: +7 = 17; Step 2: -12 = 5; Step 3: +9 = 14; Step 4: ×2 = 28"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 8. Follow the path: +3 → -10 → ×3 → ×4. What is the final value?",
                "answer": "12",
                "startValue": 8,
                "steps": [
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 11
                    },
                    {
                        "op": "-",
                        "operand": 10,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 3
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 12
                    }
                ],
                "finalValue": 12,
                "pathDescription": "Step 1: +3 = 11; Step 2: -10 = 1; Step 3: ×3 = 3; Step 4: ×4 = 12"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}