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