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