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