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