B Set 11 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: +8 → ×3 → -18 → +3. What is the final value?",
                "answer": "12",
                "startValue": 1,
                "steps": [
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 9
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 27
                    },
                    {
                        "op": "-",
                        "operand": 18,
                        "result": 9
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 12
                    }
                ],
                "finalValue": 12,
                "pathDescription": "Step 1: +8 = 9; Step 2: ×3 = 27; Step 3: -18 = 9; Step 4: +3 = 12"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 9. Follow the path: -3 → +6 → ×4 → ×2. What is the final value?",
                "answer": "96",
                "startValue": 9,
                "steps": [
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 6
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 12
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 48
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 96
                    }
                ],
                "finalValue": 96,
                "pathDescription": "Step 1: -3 = 6; Step 2: +6 = 12; Step 3: ×4 = 48; Step 4: ×2 = 96"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 1. Follow the path: +8 → ×3 → ×4 → -42. What is the final value?",
                "answer": "66",
                "startValue": 1,
                "steps": [
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 9
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 27
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 108
                    },
                    {
                        "op": "-",
                        "operand": 42,
                        "result": 66
                    }
                ],
                "finalValue": 66,
                "pathDescription": "Step 1: +8 = 9; Step 2: ×3 = 27; Step 3: ×4 = 108; Step 4: -42 = 66"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 2. Follow the path: -1 → -1 → ×2 → +1. What is the final value?",
                "answer": "1",
                "startValue": 2,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 0
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 1
                    }
                ],
                "finalValue": 1,
                "pathDescription": "Step 1: -1 = 1; Step 2: -1 = 0; Step 3: ×2 = 0; Step 4: +1 = 1"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 9. Follow the path: +3 → +6 → +1 → -10. What is the final value?",
                "answer": "9",
                "startValue": 9,
                "steps": [
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 12
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 18
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 19
                    },
                    {
                        "op": "-",
                        "operand": 10,
                        "result": 9
                    }
                ],
                "finalValue": 9,
                "pathDescription": "Step 1: +3 = 12; Step 2: +6 = 18; Step 3: +1 = 19; Step 4: -10 = 9"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 4. Follow the path: -1 → +7 → -3 → ×3. What is the final value?",
                "answer": "21",
                "startValue": 4,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 3
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 10
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 7
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 21
                    }
                ],
                "finalValue": 21,
                "pathDescription": "Step 1: -1 = 3; Step 2: +7 = 10; Step 3: -3 = 7; Step 4: ×3 = 21"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 7. Follow the path: +4 → ×2 → ×2 → ×3. What is the final value?",
                "answer": "132",
                "startValue": 7,
                "steps": [
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 11
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 22
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 44
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 132
                    }
                ],
                "finalValue": 132,
                "pathDescription": "Step 1: +4 = 11; Step 2: ×2 = 22; Step 3: ×2 = 44; Step 4: ×3 = 132"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 1. Follow the path: +9 → ×4 → +9 → -47. What is the final value?",
                "answer": "2",
                "startValue": 1,
                "steps": [
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 10
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 40
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 49
                    },
                    {
                        "op": "-",
                        "operand": 47,
                        "result": 2
                    }
                ],
                "finalValue": 2,
                "pathDescription": "Step 1: +9 = 10; Step 2: ×4 = 40; Step 3: +9 = 49; Step 4: -47 = 2"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}