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