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