B Set 84 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: +4 → -5 → ×2 → -9 → -2. What is the final value?",
                "answer": "5",
                "startValue": 9,
                "steps": [
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 13
                    },
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 8
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 16
                    },
                    {
                        "op": "-",
                        "operand": 9,
                        "result": 7
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 5
                    }
                ],
                "finalValue": 5,
                "pathDescription": "Step 1: +4 = 13; Step 2: -5 = 8; Step 3: ×2 = 16; Step 4: -9 = 7; Step 5: -2 = 5"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 5. Follow the path: ×4 → ×2 → ×2 → -32 → +1. What is the final value?",
                "answer": "49",
                "startValue": 5,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 20
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 40
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 80
                    },
                    {
                        "op": "-",
                        "operand": 32,
                        "result": 48
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 49
                    }
                ],
                "finalValue": 49,
                "pathDescription": "Step 1: ×4 = 20; Step 2: ×2 = 40; Step 3: ×2 = 80; Step 4: -32 = 48; Step 5: +1 = 49"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 9. Follow the path: ×3 → ×3 → ×3 → -224 → ×4. What is the final value?",
                "answer": "76",
                "startValue": 9,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 27
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 81
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 243
                    },
                    {
                        "op": "-",
                        "operand": 224,
                        "result": 19
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 76
                    }
                ],
                "finalValue": 76,
                "pathDescription": "Step 1: ×3 = 27; Step 2: ×3 = 81; Step 3: ×3 = 243; Step 4: -224 = 19; Step 5: ×4 = 76"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 8. Follow the path: +6 → ×4 → +4 → +5 → ×3. What is the final value?",
                "answer": "195",
                "startValue": 8,
                "steps": [
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 14
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 56
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 60
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 65
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 195
                    }
                ],
                "finalValue": 195,
                "pathDescription": "Step 1: +6 = 14; Step 2: ×4 = 56; Step 3: +4 = 60; Step 4: +5 = 65; Step 5: ×3 = 195"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 8. Follow the path: ×3 → ×3 → +8 → -24 → ×3. What is the final value?",
                "answer": "168",
                "startValue": 8,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 24
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 72
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 80
                    },
                    {
                        "op": "-",
                        "operand": 24,
                        "result": 56
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 168
                    }
                ],
                "finalValue": 168,
                "pathDescription": "Step 1: ×3 = 24; Step 2: ×3 = 72; Step 3: +8 = 80; Step 4: -24 = 56; Step 5: ×3 = 168"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 5. Follow the path: -1 → ×3 → +7 → ×4 → -44. What is the final value?",
                "answer": "32",
                "startValue": 5,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 4
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 12
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 19
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 76
                    },
                    {
                        "op": "-",
                        "operand": 44,
                        "result": 32
                    }
                ],
                "finalValue": 32,
                "pathDescription": "Step 1: -1 = 4; Step 2: ×3 = 12; Step 3: +7 = 19; Step 4: ×4 = 76; Step 5: -44 = 32"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 3. Follow the path: -2 → +8 → +2 → +6 → ×4. What is the final value?",
                "answer": "68",
                "startValue": 3,
                "steps": [
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 9
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 11
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 17
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 68
                    }
                ],
                "finalValue": 68,
                "pathDescription": "Step 1: -2 = 1; Step 2: +8 = 9; Step 3: +2 = 11; Step 4: +6 = 17; Step 5: ×4 = 68"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 6. Follow the path: -5 → +6 → ×2 → -9 → ×3. What is the final value?",
                "answer": "15",
                "startValue": 6,
                "steps": [
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 7
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 14
                    },
                    {
                        "op": "-",
                        "operand": 9,
                        "result": 5
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 15
                    }
                ],
                "finalValue": 15,
                "pathDescription": "Step 1: -5 = 1; Step 2: +6 = 7; Step 3: ×2 = 14; Step 4: -9 = 5; Step 5: ×3 = 15"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}