B Set 40 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: +5 → -11 → ×3 → ×3 → ×2. What is the final value?",
                "answer": "36",
                "startValue": 8,
                "steps": [
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 13
                    },
                    {
                        "op": "-",
                        "operand": 11,
                        "result": 2
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 6
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 18
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 36
                    }
                ],
                "finalValue": 36,
                "pathDescription": "Step 1: +5 = 13; Step 2: -11 = 2; Step 3: ×3 = 6; Step 4: ×3 = 18; Step 5: ×2 = 36"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 1. Follow the path: +3 → -2 → +10 → ×4 → +5. What is the final value?",
                "answer": "53",
                "startValue": 1,
                "steps": [
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 4
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 2
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 12
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 48
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 53
                    }
                ],
                "finalValue": 53,
                "pathDescription": "Step 1: +3 = 4; Step 2: -2 = 2; Step 3: +10 = 12; Step 4: ×4 = 48; Step 5: +5 = 53"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 10. Follow the path: +10 → -13 → -2 → -4 → -1. What is the final value?",
                "answer": "0",
                "startValue": 10,
                "steps": [
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 20
                    },
                    {
                        "op": "-",
                        "operand": 13,
                        "result": 7
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 5
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    }
                ],
                "finalValue": 0,
                "pathDescription": "Step 1: +10 = 20; Step 2: -13 = 7; Step 3: -2 = 5; Step 4: -4 = 1; Step 5: -1 = 0"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 6. Follow the path: ×3 → +8 → -25 → +3 → +8. What is the final value?",
                "answer": "12",
                "startValue": 6,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 18
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 26
                    },
                    {
                        "op": "-",
                        "operand": 25,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 4
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 12
                    }
                ],
                "finalValue": 12,
                "pathDescription": "Step 1: ×3 = 18; Step 2: +8 = 26; Step 3: -25 = 1; Step 4: +3 = 4; Step 5: +8 = 12"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 4. Follow the path: ×2 → -2 → -3 → ×2 → -2. What is the final value?",
                "answer": "4",
                "startValue": 4,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 8
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 6
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 3
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 6
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 4
                    }
                ],
                "finalValue": 4,
                "pathDescription": "Step 1: ×2 = 8; Step 2: -2 = 6; Step 3: -3 = 3; Step 4: ×2 = 6; Step 5: -2 = 4"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 6. Follow the path: -2 → ×4 → ×2 → -16 → -5. What is the final value?",
                "answer": "11",
                "startValue": 6,
                "steps": [
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 4
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 16
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 32
                    },
                    {
                        "op": "-",
                        "operand": 16,
                        "result": 16
                    },
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 11
                    }
                ],
                "finalValue": 11,
                "pathDescription": "Step 1: -2 = 4; Step 2: ×4 = 16; Step 3: ×2 = 32; Step 4: -16 = 16; Step 5: -5 = 11"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 5. Follow the path: ×3 → +4 → ×4 → ×4 → -100. What is the final value?",
                "answer": "204",
                "startValue": 5,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 15
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 19
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 76
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 304
                    },
                    {
                        "op": "-",
                        "operand": 100,
                        "result": 204
                    }
                ],
                "finalValue": 204,
                "pathDescription": "Step 1: ×3 = 15; Step 2: +4 = 19; Step 3: ×4 = 76; Step 4: ×4 = 304; Step 5: -100 = 204"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 10. Follow the path: ×4 → ×3 → ×4 → ×2 → -24. What is the final value?",
                "answer": "936",
                "startValue": 10,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 40
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 120
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 480
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 960
                    },
                    {
                        "op": "-",
                        "operand": 24,
                        "result": 936
                    }
                ],
                "finalValue": 936,
                "pathDescription": "Step 1: ×4 = 40; Step 2: ×3 = 120; Step 3: ×4 = 480; Step 4: ×2 = 960; Step 5: -24 = 936"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}