B Set 76 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 9. Follow the path: +8 → ×4 → -29 → +10 → +7. What is the final value?",
                "answer": "56",
                "startValue": 9,
                "steps": [
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 17
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 68
                    },
                    {
                        "op": "-",
                        "operand": 29,
                        "result": 39
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 49
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 56
                    }
                ],
                "finalValue": 56,
                "pathDescription": "Step 1: +8 = 17; Step 2: ×4 = 68; Step 3: -29 = 39; Step 4: +10 = 49; Step 5: +7 = 56"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 4. Follow the path: ×4 → +9 → +2 → ×2 → ×2. What is the final value?",
                "answer": "108",
                "startValue": 4,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 16
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 25
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 27
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 54
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 108
                    }
                ],
                "finalValue": 108,
                "pathDescription": "Step 1: ×4 = 16; Step 2: +9 = 25; Step 3: +2 = 27; Step 4: ×2 = 54; Step 5: ×2 = 108"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 7. Follow the path: -2 → -1 → ×2 → -2 → -1. What is the final value?",
                "answer": "5",
                "startValue": 7,
                "steps": [
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 5
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 4
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 8
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 6
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 5
                    }
                ],
                "finalValue": 5,
                "pathDescription": "Step 1: -2 = 5; Step 2: -1 = 4; Step 3: ×2 = 8; Step 4: -2 = 6; Step 5: -1 = 5"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 9. Follow the path: ×3 → -19 → +8 → +9 → +6. What is the final value?",
                "answer": "31",
                "startValue": 9,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 27
                    },
                    {
                        "op": "-",
                        "operand": 19,
                        "result": 8
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 16
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 25
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 31
                    }
                ],
                "finalValue": 31,
                "pathDescription": "Step 1: ×3 = 27; Step 2: -19 = 8; Step 3: +8 = 16; Step 4: +9 = 25; Step 5: +6 = 31"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 9. Follow the path: ×3 → -22 → ×3 → +4 → ×3. What is the final value?",
                "answer": "57",
                "startValue": 9,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 27
                    },
                    {
                        "op": "-",
                        "operand": 22,
                        "result": 5
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 15
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 19
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 57
                    }
                ],
                "finalValue": 57,
                "pathDescription": "Step 1: ×3 = 27; Step 2: -22 = 5; Step 3: ×3 = 15; Step 4: +4 = 19; Step 5: ×3 = 57"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 1. Follow the path: -1 → ×2 → ×4 → ×3 → -1. What is the final value?",
                "answer": "-1",
                "startValue": 1,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 0
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 0
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 0
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": -1
                    }
                ],
                "finalValue": -1,
                "pathDescription": "Step 1: -1 = 0; Step 2: ×2 = 0; Step 3: ×4 = 0; Step 4: ×3 = 0; Step 5: -1 = -1"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 10. Follow the path: -5 → ×2 → ×3 → ×2 → ×3. What is the final value?",
                "answer": "180",
                "startValue": 10,
                "steps": [
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 5
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 10
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 30
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 60
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 180
                    }
                ],
                "finalValue": 180,
                "pathDescription": "Step 1: -5 = 5; Step 2: ×2 = 10; Step 3: ×3 = 30; Step 4: ×2 = 60; Step 5: ×3 = 180"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 4. Follow the path: +7 → -4 → ×2 → -6 → +4. What is the final value?",
                "answer": "12",
                "startValue": 4,
                "steps": [
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 11
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 7
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 14
                    },
                    {
                        "op": "-",
                        "operand": 6,
                        "result": 8
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 12
                    }
                ],
                "finalValue": 12,
                "pathDescription": "Step 1: +7 = 11; Step 2: -4 = 7; Step 3: ×2 = 14; Step 4: -6 = 8; Step 5: +4 = 12"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}