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