B Set 56 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 6. Follow the path: -5 → +2 → -1 → +8 → -4. What is the final value?",
                "answer": "6",
                "startValue": 6,
                "steps": [
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 3
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 2
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 10
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 6
                    }
                ],
                "finalValue": 6,
                "pathDescription": "Step 1: -5 = 1; Step 2: +2 = 3; Step 3: -1 = 2; Step 4: +8 = 10; Step 5: -4 = 6"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 4. Follow the path: -1 → ×3 → -5 → ×4 → +2. What is the final value?",
                "answer": "18",
                "startValue": 4,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 3
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 9
                    },
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 4
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 16
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 18
                    }
                ],
                "finalValue": 18,
                "pathDescription": "Step 1: -1 = 3; Step 2: ×3 = 9; Step 3: -5 = 4; Step 4: ×4 = 16; Step 5: +2 = 18"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 5. Follow the path: ×4 → -9 → ×3 → +7 → ×3. What is the final value?",
                "answer": "120",
                "startValue": 5,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 20
                    },
                    {
                        "op": "-",
                        "operand": 9,
                        "result": 11
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 33
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 40
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 120
                    }
                ],
                "finalValue": 120,
                "pathDescription": "Step 1: ×4 = 20; Step 2: -9 = 11; Step 3: ×3 = 33; Step 4: +7 = 40; Step 5: ×3 = 120"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 2. Follow the path: +5 → -4 → ×3 → -5 → ×3. What is the final value?",
                "answer": "12",
                "startValue": 2,
                "steps": [
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 7
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 3
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 9
                    },
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 4
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 12
                    }
                ],
                "finalValue": 12,
                "pathDescription": "Step 1: +5 = 7; Step 2: -4 = 3; Step 3: ×3 = 9; Step 4: -5 = 4; Step 5: ×3 = 12"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 8. Follow the path: +6 → ×4 → +3 → ×4 → -80. What is the final value?",
                "answer": "156",
                "startValue": 8,
                "steps": [
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 14
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 56
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 59
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 236
                    },
                    {
                        "op": "-",
                        "operand": 80,
                        "result": 156
                    }
                ],
                "finalValue": 156,
                "pathDescription": "Step 1: +6 = 14; Step 2: ×4 = 56; Step 3: +3 = 59; Step 4: ×4 = 236; Step 5: -80 = 156"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 10. Follow the path: -2 → -6 → ×4 → ×2 → +9. What is the final value?",
                "answer": "25",
                "startValue": 10,
                "steps": [
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 8
                    },
                    {
                        "op": "-",
                        "operand": 6,
                        "result": 2
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 8
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 16
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 25
                    }
                ],
                "finalValue": 25,
                "pathDescription": "Step 1: -2 = 8; Step 2: -6 = 2; Step 3: ×4 = 8; Step 4: ×2 = 16; Step 5: +9 = 25"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 7. Follow the path: +5 → +8 → +2 → -20 → ×2. What is the final value?",
                "answer": "4",
                "startValue": 7,
                "steps": [
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 12
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 20
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 22
                    },
                    {
                        "op": "-",
                        "operand": 20,
                        "result": 2
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 4
                    }
                ],
                "finalValue": 4,
                "pathDescription": "Step 1: +5 = 12; Step 2: +8 = 20; Step 3: +2 = 22; Step 4: -20 = 2; Step 5: ×2 = 4"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 4. Follow the path: +3 → -2 → -3 → -1 → -1. What is the final value?",
                "answer": "0",
                "startValue": 4,
                "steps": [
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 7
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 5
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 2
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    }
                ],
                "finalValue": 0,
                "pathDescription": "Step 1: +3 = 7; Step 2: -2 = 5; Step 3: -3 = 2; Step 4: -1 = 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"
}