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