B Set 74 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 8. Follow the path: +7 → ×4 → +3 → +1 → -24. What is the final value?",
                "answer": "40",
                "startValue": 8,
                "steps": [
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 15
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 60
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 63
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 64
                    },
                    {
                        "op": "-",
                        "operand": 24,
                        "result": 40
                    }
                ],
                "finalValue": 40,
                "pathDescription": "Step 1: +7 = 15; Step 2: ×4 = 60; Step 3: +3 = 63; Step 4: +1 = 64; Step 5: -24 = 40"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 2. Follow the path: +3 → ×3 → -6 → ×4 → ×3. What is the final value?",
                "answer": "108",
                "startValue": 2,
                "steps": [
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 5
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 15
                    },
                    {
                        "op": "-",
                        "operand": 6,
                        "result": 9
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 36
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 108
                    }
                ],
                "finalValue": 108,
                "pathDescription": "Step 1: +3 = 5; Step 2: ×3 = 15; Step 3: -6 = 9; Step 4: ×4 = 36; Step 5: ×3 = 108"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 10. Follow the path: +6 → +9 → +9 → +3 → +5. What is the final value?",
                "answer": "42",
                "startValue": 10,
                "steps": [
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 16
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 25
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 34
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 37
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 42
                    }
                ],
                "finalValue": 42,
                "pathDescription": "Step 1: +6 = 16; Step 2: +9 = 25; Step 3: +9 = 34; Step 4: +3 = 37; Step 5: +5 = 42"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 9. Follow the path: ×2 → +2 → -9 → +10 → +9. What is the final value?",
                "answer": "30",
                "startValue": 9,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 18
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 20
                    },
                    {
                        "op": "-",
                        "operand": 9,
                        "result": 11
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 21
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 30
                    }
                ],
                "finalValue": 30,
                "pathDescription": "Step 1: ×2 = 18; Step 2: +2 = 20; Step 3: -9 = 11; Step 4: +10 = 21; Step 5: +9 = 30"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 1. Follow the path: ×2 → ×2 → +10 → ×3 → ×3. What is the final value?",
                "answer": "126",
                "startValue": 1,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 2
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 4
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 14
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 42
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 126
                    }
                ],
                "finalValue": 126,
                "pathDescription": "Step 1: ×2 = 2; Step 2: ×2 = 4; Step 3: +10 = 14; Step 4: ×3 = 42; Step 5: ×3 = 126"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 5. Follow the path: +6 → +4 → +9 → -23 → ×2. What is the final value?",
                "answer": "2",
                "startValue": 5,
                "steps": [
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 11
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 15
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 24
                    },
                    {
                        "op": "-",
                        "operand": 23,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 2
                    }
                ],
                "finalValue": 2,
                "pathDescription": "Step 1: +6 = 11; Step 2: +4 = 15; Step 3: +9 = 24; Step 4: -23 = 1; Step 5: ×2 = 2"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 9. Follow the path: ×2 → +7 → ×3 → -9 → -20. What is the final value?",
                "answer": "46",
                "startValue": 9,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 18
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 25
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 75
                    },
                    {
                        "op": "-",
                        "operand": 9,
                        "result": 66
                    },
                    {
                        "op": "-",
                        "operand": 20,
                        "result": 46
                    }
                ],
                "finalValue": 46,
                "pathDescription": "Step 1: ×2 = 18; Step 2: +7 = 25; Step 3: ×3 = 75; Step 4: -9 = 66; Step 5: -20 = 46"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 7. Follow the path: -4 → +1 → -1 → -2 → -1. What is the final value?",
                "answer": "0",
                "startValue": 7,
                "steps": [
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 3
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 4
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 3
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    }
                ],
                "finalValue": 0,
                "pathDescription": "Step 1: -4 = 3; Step 2: +1 = 4; Step 3: -1 = 3; Step 4: -2 = 1; Step 5: -1 = 0"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}