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