B Set 67 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 4. Follow the path: -3 → ×2 → +9 → ×2 → +10. What is the final value?",
                "answer": "32",
                "startValue": 4,
                "steps": [
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 2
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 11
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 22
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 32
                    }
                ],
                "finalValue": 32,
                "pathDescription": "Step 1: -3 = 1; Step 2: ×2 = 2; Step 3: +9 = 11; Step 4: ×2 = 22; Step 5: +10 = 32"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 10. Follow the path: ×2 → +5 → ×3 → -6 → +7. What is the final value?",
                "answer": "76",
                "startValue": 10,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 20
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 25
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 75
                    },
                    {
                        "op": "-",
                        "operand": 6,
                        "result": 69
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 76
                    }
                ],
                "finalValue": 76,
                "pathDescription": "Step 1: ×2 = 20; Step 2: +5 = 25; Step 3: ×3 = 75; Step 4: -6 = 69; Step 5: +7 = 76"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 1. Follow the path: +6 → +9 → ×2 → ×2 → -62. What is the final value?",
                "answer": "2",
                "startValue": 1,
                "steps": [
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 7
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 16
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 32
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 64
                    },
                    {
                        "op": "-",
                        "operand": 62,
                        "result": 2
                    }
                ],
                "finalValue": 2,
                "pathDescription": "Step 1: +6 = 7; Step 2: +9 = 16; Step 3: ×2 = 32; Step 4: ×2 = 64; Step 5: -62 = 2"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 1. Follow the path: ×3 → +4 → +10 → -10 → ×2. What is the final value?",
                "answer": "14",
                "startValue": 1,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 3
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 7
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 17
                    },
                    {
                        "op": "-",
                        "operand": 10,
                        "result": 7
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 14
                    }
                ],
                "finalValue": 14,
                "pathDescription": "Step 1: ×3 = 3; Step 2: +4 = 7; Step 3: +10 = 17; Step 4: -10 = 7; Step 5: ×2 = 14"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 6. Follow the path: +8 → -2 → -6 → ×2 → +10. What is the final value?",
                "answer": "22",
                "startValue": 6,
                "steps": [
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 14
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 12
                    },
                    {
                        "op": "-",
                        "operand": 6,
                        "result": 6
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 12
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 22
                    }
                ],
                "finalValue": 22,
                "pathDescription": "Step 1: +8 = 14; Step 2: -2 = 12; Step 3: -6 = 6; Step 4: ×2 = 12; Step 5: +10 = 22"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 7. Follow the path: +4 → +10 → +3 → -23 → -1. What is the final value?",
                "answer": "0",
                "startValue": 7,
                "steps": [
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 11
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 21
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 24
                    },
                    {
                        "op": "-",
                        "operand": 23,
                        "result": 1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    }
                ],
                "finalValue": 0,
                "pathDescription": "Step 1: +4 = 11; Step 2: +10 = 21; Step 3: +3 = 24; Step 4: -23 = 1; Step 5: -1 = 0"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 9. Follow the path: -8 → -1 → -1 → -1 → -1. What is the final value?",
                "answer": "-3",
                "startValue": 9,
                "steps": [
                    {
                        "op": "-",
                        "operand": 8,
                        "result": 1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": -1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": -2
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": -3
                    }
                ],
                "finalValue": -3,
                "pathDescription": "Step 1: -8 = 1; Step 2: -1 = 0; Step 3: -1 = -1; Step 4: -1 = -2; Step 5: -1 = -3"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 7. Follow the path: +8 → ×4 → -21 → ×4 → ×4. What is the final value?",
                "answer": "624",
                "startValue": 7,
                "steps": [
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 15
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 60
                    },
                    {
                        "op": "-",
                        "operand": 21,
                        "result": 39
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 156
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 624
                    }
                ],
                "finalValue": 624,
                "pathDescription": "Step 1: +8 = 15; Step 2: ×4 = 60; Step 3: -21 = 39; Step 4: ×4 = 156; Step 5: ×4 = 624"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}