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 6. Follow the path: ×4 → -14 → +7 → +1 → -13. What is the final value?",
                "answer": "5",
                "startValue": 6,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 24
                    },
                    {
                        "op": "-",
                        "operand": 14,
                        "result": 10
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 17
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 18
                    },
                    {
                        "op": "-",
                        "operand": 13,
                        "result": 5
                    }
                ],
                "finalValue": 5,
                "pathDescription": "Step 1: ×4 = 24; Step 2: -14 = 10; Step 3: +7 = 17; Step 4: +1 = 18; Step 5: -13 = 5"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 4. Follow the path: +5 → ×4 → +9 → -1 → ×3. What is the final value?",
                "answer": "132",
                "startValue": 4,
                "steps": [
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 9
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 36
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 45
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 44
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 132
                    }
                ],
                "finalValue": 132,
                "pathDescription": "Step 1: +5 = 9; Step 2: ×4 = 36; Step 3: +9 = 45; Step 4: -1 = 44; Step 5: ×3 = 132"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 1. Follow the path: +2 → -2 → -1 → -1 → +4. What is the final value?",
                "answer": "3",
                "startValue": 1,
                "steps": [
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 3
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": -1
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 3
                    }
                ],
                "finalValue": 3,
                "pathDescription": "Step 1: +2 = 3; Step 2: -2 = 1; Step 3: -1 = 0; Step 4: -1 = -1; Step 5: +4 = 3"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 6. Follow the path: -4 → -1 → -1 → ×4 → -1. What is the final value?",
                "answer": "-1",
                "startValue": 6,
                "steps": [
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 2
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 0
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": -1
                    }
                ],
                "finalValue": -1,
                "pathDescription": "Step 1: -4 = 2; Step 2: -1 = 1; Step 3: -1 = 0; Step 4: ×4 = 0; Step 5: -1 = -1"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 2. Follow the path: ×2 → -3 → ×4 → +1 → ×3. What is the final value?",
                "answer": "15",
                "startValue": 2,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 4
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 4
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 5
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 15
                    }
                ],
                "finalValue": 15,
                "pathDescription": "Step 1: ×2 = 4; Step 2: -3 = 1; Step 3: ×4 = 4; Step 4: +1 = 5; Step 5: ×3 = 15"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 1. Follow the path: ×3 → ×2 → -1 → -3 → ×2. What is the final value?",
                "answer": "4",
                "startValue": 1,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 3
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 6
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 5
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 2
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 4
                    }
                ],
                "finalValue": 4,
                "pathDescription": "Step 1: ×3 = 3; Step 2: ×2 = 6; Step 3: -1 = 5; Step 4: -3 = 2; Step 5: ×2 = 4"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 7. Follow the path: +4 → +10 → -8 → ×2 → -11. What is the final value?",
                "answer": "15",
                "startValue": 7,
                "steps": [
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 11
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 21
                    },
                    {
                        "op": "-",
                        "operand": 8,
                        "result": 13
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 26
                    },
                    {
                        "op": "-",
                        "operand": 11,
                        "result": 15
                    }
                ],
                "finalValue": 15,
                "pathDescription": "Step 1: +4 = 11; Step 2: +10 = 21; Step 3: -8 = 13; Step 4: ×2 = 26; Step 5: -11 = 15"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 8. Follow the path: +6 → ×4 → -40 → ×3 → -11. What is the final value?",
                "answer": "37",
                "startValue": 8,
                "steps": [
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 14
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 56
                    },
                    {
                        "op": "-",
                        "operand": 40,
                        "result": 16
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 48
                    },
                    {
                        "op": "-",
                        "operand": 11,
                        "result": 37
                    }
                ],
                "finalValue": 37,
                "pathDescription": "Step 1: +6 = 14; Step 2: ×4 = 56; Step 3: -40 = 16; Step 4: ×3 = 48; Step 5: -11 = 37"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}