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