B Set 73 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 2. Follow the path: -1 → +6 → -2 → ×2. What is the final value?",
                "answer": "10",
                "startValue": 2,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 7
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 5
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 10
                    }
                ],
                "finalValue": 10,
                "pathDescription": "Step 1: -1 = 1; Step 2: +6 = 7; Step 3: -2 = 5; Step 4: ×2 = 10"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 9. Follow the path: +10 → ×2 → ×4 → ×4. What is the final value?",
                "answer": "608",
                "startValue": 9,
                "steps": [
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 19
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 38
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 152
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 608
                    }
                ],
                "finalValue": 608,
                "pathDescription": "Step 1: +10 = 19; Step 2: ×2 = 38; Step 3: ×4 = 152; Step 4: ×4 = 608"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 1. Follow the path: -1 → ×2 → ×2 → +6. What is the final value?",
                "answer": "6",
                "startValue": 1,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 0
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 0
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 6
                    }
                ],
                "finalValue": 6,
                "pathDescription": "Step 1: -1 = 0; Step 2: ×2 = 0; Step 3: ×2 = 0; Step 4: +6 = 6"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 10. Follow the path: ×4 → ×3 → -111 → ×3. What is the final value?",
                "answer": "27",
                "startValue": 10,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 40
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 120
                    },
                    {
                        "op": "-",
                        "operand": 111,
                        "result": 9
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 27
                    }
                ],
                "finalValue": 27,
                "pathDescription": "Step 1: ×4 = 40; Step 2: ×3 = 120; Step 3: -111 = 9; Step 4: ×3 = 27"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 8. Follow the path: +6 → -10 → ×2 → -7. What is the final value?",
                "answer": "1",
                "startValue": 8,
                "steps": [
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 14
                    },
                    {
                        "op": "-",
                        "operand": 10,
                        "result": 4
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 8
                    },
                    {
                        "op": "-",
                        "operand": 7,
                        "result": 1
                    }
                ],
                "finalValue": 1,
                "pathDescription": "Step 1: +6 = 14; Step 2: -10 = 4; Step 3: ×2 = 8; Step 4: -7 = 1"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 1. Follow the path: +10 → -1 → +2 → +8. What is the final value?",
                "answer": "20",
                "startValue": 1,
                "steps": [
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 11
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 10
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 12
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 20
                    }
                ],
                "finalValue": 20,
                "pathDescription": "Step 1: +10 = 11; Step 2: -1 = 10; Step 3: +2 = 12; Step 4: +8 = 20"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 9. Follow the path: +8 → +8 → +2 → -1. What is the final value?",
                "answer": "26",
                "startValue": 9,
                "steps": [
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 17
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 25
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 27
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 26
                    }
                ],
                "finalValue": 26,
                "pathDescription": "Step 1: +8 = 17; Step 2: +8 = 25; Step 3: +2 = 27; Step 4: -1 = 26"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 5. Follow the path: ×2 → +8 → +2 → -19. What is the final value?",
                "answer": "1",
                "startValue": 5,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 10
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 18
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 20
                    },
                    {
                        "op": "-",
                        "operand": 19,
                        "result": 1
                    }
                ],
                "finalValue": 1,
                "pathDescription": "Step 1: ×2 = 10; Step 2: +8 = 18; Step 3: +2 = 20; Step 4: -19 = 1"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}