B Set 99 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: +7 → ×3 → -6 → +10 → -37. What is the final value?",
                "answer": "6",
                "startValue": 6,
                "steps": [
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 13
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 39
                    },
                    {
                        "op": "-",
                        "operand": 6,
                        "result": 33
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 43
                    },
                    {
                        "op": "-",
                        "operand": 37,
                        "result": 6
                    }
                ],
                "finalValue": 6,
                "pathDescription": "Step 1: +7 = 13; Step 2: ×3 = 39; Step 3: -6 = 33; Step 4: +10 = 43; Step 5: -37 = 6"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 2. Follow the path: +10 → +7 → +5 → ×3 → +9. What is the final value?",
                "answer": "81",
                "startValue": 2,
                "steps": [
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 12
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 19
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 24
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 72
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 81
                    }
                ],
                "finalValue": 81,
                "pathDescription": "Step 1: +10 = 12; Step 2: +7 = 19; Step 3: +5 = 24; Step 4: ×3 = 72; Step 5: +9 = 81"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 5. Follow the path: +7 → -4 → ×2 → ×4 → ×2. What is the final value?",
                "answer": "128",
                "startValue": 5,
                "steps": [
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 12
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 8
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 16
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 64
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 128
                    }
                ],
                "finalValue": 128,
                "pathDescription": "Step 1: +7 = 12; Step 2: -4 = 8; Step 3: ×2 = 16; Step 4: ×4 = 64; Step 5: ×2 = 128"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 2. Follow the path: -1 → ×4 → +5 → ×4 → ×2. What is the final value?",
                "answer": "72",
                "startValue": 2,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 4
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 9
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 36
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 72
                    }
                ],
                "finalValue": 72,
                "pathDescription": "Step 1: -1 = 1; Step 2: ×4 = 4; Step 3: +5 = 9; Step 4: ×4 = 36; Step 5: ×2 = 72"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 7. Follow the path: +10 → +6 → +4 → ×2 → +5. What is the final value?",
                "answer": "59",
                "startValue": 7,
                "steps": [
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 17
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 23
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 27
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 54
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 59
                    }
                ],
                "finalValue": 59,
                "pathDescription": "Step 1: +10 = 17; Step 2: +6 = 23; Step 3: +4 = 27; Step 4: ×2 = 54; Step 5: +5 = 59"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 9. Follow the path: -7 → -1 → +9 → +5 → -5. What is the final value?",
                "answer": "10",
                "startValue": 9,
                "steps": [
                    {
                        "op": "-",
                        "operand": 7,
                        "result": 2
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 10
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 15
                    },
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 10
                    }
                ],
                "finalValue": 10,
                "pathDescription": "Step 1: -7 = 2; Step 2: -1 = 1; Step 3: +9 = 10; Step 4: +5 = 15; Step 5: -5 = 10"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 3. Follow the path: +7 → ×4 → +9 → ×3 → -42. What is the final value?",
                "answer": "105",
                "startValue": 3,
                "steps": [
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 10
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 40
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 49
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 147
                    },
                    {
                        "op": "-",
                        "operand": 42,
                        "result": 105
                    }
                ],
                "finalValue": 105,
                "pathDescription": "Step 1: +7 = 10; Step 2: ×4 = 40; Step 3: +9 = 49; Step 4: ×3 = 147; Step 5: -42 = 105"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 2. Follow the path: ×3 → -3 → -1 → -1 → ×4. What is the final value?",
                "answer": "4",
                "startValue": 2,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 6
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 3
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 2
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 4
                    }
                ],
                "finalValue": 4,
                "pathDescription": "Step 1: ×3 = 6; Step 2: -3 = 3; Step 3: -1 = 2; Step 4: -1 = 1; Step 5: ×4 = 4"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}