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