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": "easy",
        "config": {
            "difficulty": "easy",
            "maxNumber": 10
        },
        "problems": [
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 7. Follow the path: ×2 → ×4 → -37. What is the final value?",
                "answer": "19",
                "startValue": 7,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 14
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 56
                    },
                    {
                        "op": "-",
                        "operand": 37,
                        "result": 19
                    }
                ],
                "finalValue": 19,
                "pathDescription": "Step 1: ×2 = 14; Step 2: ×4 = 56; Step 3: -37 = 19"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 6. Follow the path: ×4 → ×4 → -11. What is the final value?",
                "answer": "85",
                "startValue": 6,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 24
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 96
                    },
                    {
                        "op": "-",
                        "operand": 11,
                        "result": 85
                    }
                ],
                "finalValue": 85,
                "pathDescription": "Step 1: ×4 = 24; Step 2: ×4 = 96; Step 3: -11 = 85"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 8. Follow the path: -1 → -4 → -1. What is the final value?",
                "answer": "2",
                "startValue": 8,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 7
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 3
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 2
                    }
                ],
                "finalValue": 2,
                "pathDescription": "Step 1: -1 = 7; Step 2: -4 = 3; Step 3: -1 = 2"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 6. Follow the path: -2 → ×4 → ×2. What is the final value?",
                "answer": "32",
                "startValue": 6,
                "steps": [
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 4
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 16
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 32
                    }
                ],
                "finalValue": 32,
                "pathDescription": "Step 1: -2 = 4; Step 2: ×4 = 16; Step 3: ×2 = 32"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 2. Follow the path: -1 → -1 → -1. What is the final value?",
                "answer": "-1",
                "startValue": 2,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": -1
                    }
                ],
                "finalValue": -1,
                "pathDescription": "Step 1: -1 = 1; Step 2: -1 = 0; Step 3: -1 = -1"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 5. Follow the path: -2 → -2 → ×3. What is the final value?",
                "answer": "3",
                "startValue": 5,
                "steps": [
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 3
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 3
                    }
                ],
                "finalValue": 3,
                "pathDescription": "Step 1: -2 = 3; Step 2: -2 = 1; Step 3: ×3 = 3"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 10. Follow the path: -8 → +9 → -5. What is the final value?",
                "answer": "6",
                "startValue": 10,
                "steps": [
                    {
                        "op": "-",
                        "operand": 8,
                        "result": 2
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 11
                    },
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 6
                    }
                ],
                "finalValue": 6,
                "pathDescription": "Step 1: -8 = 2; Step 2: +9 = 11; Step 3: -5 = 6"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 3. Follow the path: -2 → +3 → +2. What is the final value?",
                "answer": "6",
                "startValue": 3,
                "steps": [
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 4
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 6
                    }
                ],
                "finalValue": 6,
                "pathDescription": "Step 1: -2 = 1; Step 2: +3 = 4; Step 3: +2 = 6"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}