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