B Set 79 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 → ×2 → -1. What is the final value?",
                "answer": "27",
                "startValue": 7,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 14
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 28
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 27
                    }
                ],
                "finalValue": 27,
                "pathDescription": "Step 1: ×2 = 14; Step 2: ×2 = 28; Step 3: -1 = 27"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 6. Follow the path: -5 → ×2 → +3. What is the final value?",
                "answer": "5",
                "startValue": 6,
                "steps": [
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 2
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 5
                    }
                ],
                "finalValue": 5,
                "pathDescription": "Step 1: -5 = 1; Step 2: ×2 = 2; Step 3: +3 = 5"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 7. Follow the path: ×3 → -5 → +5. What is the final value?",
                "answer": "21",
                "startValue": 7,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 21
                    },
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 16
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 21
                    }
                ],
                "finalValue": 21,
                "pathDescription": "Step 1: ×3 = 21; Step 2: -5 = 16; Step 3: +5 = 21"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 8. Follow the path: ×2 → +7 → +3. What is the final value?",
                "answer": "26",
                "startValue": 8,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 16
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 23
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 26
                    }
                ],
                "finalValue": 26,
                "pathDescription": "Step 1: ×2 = 16; Step 2: +7 = 23; Step 3: +3 = 26"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 8. Follow the path: +8 → -15 → ×2. What is the final value?",
                "answer": "2",
                "startValue": 8,
                "steps": [
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 16
                    },
                    {
                        "op": "-",
                        "operand": 15,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 2
                    }
                ],
                "finalValue": 2,
                "pathDescription": "Step 1: +8 = 16; Step 2: -15 = 1; Step 3: ×2 = 2"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 1. Follow the path: -1 → ×2 → -1. What is the final value?",
                "answer": "-1",
                "startValue": 1,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 0
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": -1
                    }
                ],
                "finalValue": -1,
                "pathDescription": "Step 1: -1 = 0; Step 2: ×2 = 0; Step 3: -1 = -1"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 7. Follow the path: +3 → ×2 → ×4. What is the final value?",
                "answer": "80",
                "startValue": 7,
                "steps": [
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 10
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 20
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 80
                    }
                ],
                "finalValue": 80,
                "pathDescription": "Step 1: +3 = 10; Step 2: ×2 = 20; Step 3: ×4 = 80"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 5. Follow the path: ×4 → ×4 → -24. What is the final value?",
                "answer": "56",
                "startValue": 5,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 20
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 80
                    },
                    {
                        "op": "-",
                        "operand": 24,
                        "result": 56
                    }
                ],
                "finalValue": 56,
                "pathDescription": "Step 1: ×4 = 20; Step 2: ×4 = 80; Step 3: -24 = 56"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}