B Set 89 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: +5 → +5 → ×3 → +10 → -62. What is the final value?",
                "answer": "8",
                "startValue": 10,
                "steps": [
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 15
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 20
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 60
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 70
                    },
                    {
                        "op": "-",
                        "operand": 62,
                        "result": 8
                    }
                ],
                "finalValue": 8,
                "pathDescription": "Step 1: +5 = 15; Step 2: +5 = 20; Step 3: ×3 = 60; Step 4: +10 = 70; Step 5: -62 = 8"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 6. Follow the path: +5 → ×2 → ×4 → -46 → ×2. What is the final value?",
                "answer": "84",
                "startValue": 6,
                "steps": [
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 11
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 22
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 88
                    },
                    {
                        "op": "-",
                        "operand": 46,
                        "result": 42
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 84
                    }
                ],
                "finalValue": 84,
                "pathDescription": "Step 1: +5 = 11; Step 2: ×2 = 22; Step 3: ×4 = 88; Step 4: -46 = 42; Step 5: ×2 = 84"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 8. Follow the path: +10 → -2 → ×3 → -34 → -12. What is the final value?",
                "answer": "2",
                "startValue": 8,
                "steps": [
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 18
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 16
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 48
                    },
                    {
                        "op": "-",
                        "operand": 34,
                        "result": 14
                    },
                    {
                        "op": "-",
                        "operand": 12,
                        "result": 2
                    }
                ],
                "finalValue": 2,
                "pathDescription": "Step 1: +10 = 18; Step 2: -2 = 16; Step 3: ×3 = 48; Step 4: -34 = 14; Step 5: -12 = 2"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 7. Follow the path: -6 → ×2 → ×2 → +9 → +3. What is the final value?",
                "answer": "16",
                "startValue": 7,
                "steps": [
                    {
                        "op": "-",
                        "operand": 6,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 2
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 4
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 13
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 16
                    }
                ],
                "finalValue": 16,
                "pathDescription": "Step 1: -6 = 1; Step 2: ×2 = 2; Step 3: ×2 = 4; Step 4: +9 = 13; Step 5: +3 = 16"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 1. Follow the path: -1 → +3 → -2 → -1 → ×2. What is the final value?",
                "answer": "0",
                "startValue": 1,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 3
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 0
                    }
                ],
                "finalValue": 0,
                "pathDescription": "Step 1: -1 = 0; Step 2: +3 = 3; Step 3: -2 = 1; Step 4: -1 = 0; Step 5: ×2 = 0"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 6. Follow the path: +5 → +6 → -4 → -8 → -1. What is the final value?",
                "answer": "4",
                "startValue": 6,
                "steps": [
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 11
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 17
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 13
                    },
                    {
                        "op": "-",
                        "operand": 8,
                        "result": 5
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 4
                    }
                ],
                "finalValue": 4,
                "pathDescription": "Step 1: +5 = 11; Step 2: +6 = 17; Step 3: -4 = 13; Step 4: -8 = 5; Step 5: -1 = 4"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 7. Follow the path: +10 → -13 → +4 → ×3 → -12. What is the final value?",
                "answer": "12",
                "startValue": 7,
                "steps": [
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 17
                    },
                    {
                        "op": "-",
                        "operand": 13,
                        "result": 4
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 8
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 24
                    },
                    {
                        "op": "-",
                        "operand": 12,
                        "result": 12
                    }
                ],
                "finalValue": 12,
                "pathDescription": "Step 1: +10 = 17; Step 2: -13 = 4; Step 3: +4 = 8; Step 4: ×3 = 24; Step 5: -12 = 12"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 3. Follow the path: +4 → +1 → -3 → -4 → -1. What is the final value?",
                "answer": "0",
                "startValue": 3,
                "steps": [
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 7
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 8
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 5
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    }
                ],
                "finalValue": 0,
                "pathDescription": "Step 1: +4 = 7; Step 2: +1 = 8; Step 3: -3 = 5; Step 4: -4 = 1; Step 5: -1 = 0"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}