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