B Set 55 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 3. Follow the path: ×4 → +10 → -8 → +9. What is the final value?",
                "answer": "23",
                "startValue": 3,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 12
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 22
                    },
                    {
                        "op": "-",
                        "operand": 8,
                        "result": 14
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 23
                    }
                ],
                "finalValue": 23,
                "pathDescription": "Step 1: ×4 = 12; Step 2: +10 = 22; Step 3: -8 = 14; Step 4: +9 = 23"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 10. Follow the path: +10 → ×2 → -8 → +6. What is the final value?",
                "answer": "38",
                "startValue": 10,
                "steps": [
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 20
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 40
                    },
                    {
                        "op": "-",
                        "operand": 8,
                        "result": 32
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 38
                    }
                ],
                "finalValue": 38,
                "pathDescription": "Step 1: +10 = 20; Step 2: ×2 = 40; Step 3: -8 = 32; Step 4: +6 = 38"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 2. Follow the path: +5 → +6 → ×3 → -34. What is the final value?",
                "answer": "5",
                "startValue": 2,
                "steps": [
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 7
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 13
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 39
                    },
                    {
                        "op": "-",
                        "operand": 34,
                        "result": 5
                    }
                ],
                "finalValue": 5,
                "pathDescription": "Step 1: +5 = 7; Step 2: +6 = 13; Step 3: ×3 = 39; Step 4: -34 = 5"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 2. Follow the path: ×2 → +3 → ×4 → -12. What is the final value?",
                "answer": "16",
                "startValue": 2,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 4
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 7
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 28
                    },
                    {
                        "op": "-",
                        "operand": 12,
                        "result": 16
                    }
                ],
                "finalValue": 16,
                "pathDescription": "Step 1: ×2 = 4; Step 2: +3 = 7; Step 3: ×4 = 28; Step 4: -12 = 16"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 7. Follow the path: +3 → +9 → -13 → ×2. What is the final value?",
                "answer": "12",
                "startValue": 7,
                "steps": [
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 10
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 19
                    },
                    {
                        "op": "-",
                        "operand": 13,
                        "result": 6
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 12
                    }
                ],
                "finalValue": 12,
                "pathDescription": "Step 1: +3 = 10; Step 2: +9 = 19; Step 3: -13 = 6; Step 4: ×2 = 12"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 8. Follow the path: -3 → -1 → +6 → -3. What is the final value?",
                "answer": "7",
                "startValue": 8,
                "steps": [
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 5
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 4
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 10
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 7
                    }
                ],
                "finalValue": 7,
                "pathDescription": "Step 1: -3 = 5; Step 2: -1 = 4; Step 3: +6 = 10; Step 4: -3 = 7"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 9. Follow the path: -3 → ×3 → +7 → ×4. What is the final value?",
                "answer": "100",
                "startValue": 9,
                "steps": [
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 6
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 18
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 25
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 100
                    }
                ],
                "finalValue": 100,
                "pathDescription": "Step 1: -3 = 6; Step 2: ×3 = 18; Step 3: +7 = 25; Step 4: ×4 = 100"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 6. Follow the path: ×2 → +8 → +6 → -2. What is the final value?",
                "answer": "24",
                "startValue": 6,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 12
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 20
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 26
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 24
                    }
                ],
                "finalValue": 24,
                "pathDescription": "Step 1: ×2 = 12; Step 2: +8 = 20; Step 3: +6 = 26; Step 4: -2 = 24"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}