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 8. Follow the path: ×4 → ×3 → -54 → -30. What is the final value?",
                "answer": "12",
                "startValue": 8,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 32
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 96
                    },
                    {
                        "op": "-",
                        "operand": 54,
                        "result": 42
                    },
                    {
                        "op": "-",
                        "operand": 30,
                        "result": 12
                    }
                ],
                "finalValue": 12,
                "pathDescription": "Step 1: ×4 = 32; Step 2: ×3 = 96; Step 3: -54 = 42; Step 4: -30 = 12"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 3. Follow the path: -2 → +7 → -7 → +6. What is the final value?",
                "answer": "7",
                "startValue": 3,
                "steps": [
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 8
                    },
                    {
                        "op": "-",
                        "operand": 7,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 7
                    }
                ],
                "finalValue": 7,
                "pathDescription": "Step 1: -2 = 1; Step 2: +7 = 8; Step 3: -7 = 1; Step 4: +6 = 7"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 1. Follow the path: -1 → -1 → +2 → +6. What is the final value?",
                "answer": "7",
                "startValue": 1,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": -1
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 7
                    }
                ],
                "finalValue": 7,
                "pathDescription": "Step 1: -1 = 0; Step 2: -1 = -1; Step 3: +2 = 1; Step 4: +6 = 7"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 5. Follow the path: ×2 → ×2 → ×2 → ×3. What is the final value?",
                "answer": "120",
                "startValue": 5,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 10
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 20
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 40
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 120
                    }
                ],
                "finalValue": 120,
                "pathDescription": "Step 1: ×2 = 10; Step 2: ×2 = 20; Step 3: ×2 = 40; Step 4: ×3 = 120"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 10. Follow the path: -2 → ×4 → +9 → ×2. What is the final value?",
                "answer": "82",
                "startValue": 10,
                "steps": [
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 8
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 32
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 41
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 82
                    }
                ],
                "finalValue": 82,
                "pathDescription": "Step 1: -2 = 8; Step 2: ×4 = 32; Step 3: +9 = 41; Step 4: ×2 = 82"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 6. Follow the path: ×3 → ×3 → ×3 → -137. What is the final value?",
                "answer": "25",
                "startValue": 6,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 18
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 54
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 162
                    },
                    {
                        "op": "-",
                        "operand": 137,
                        "result": 25
                    }
                ],
                "finalValue": 25,
                "pathDescription": "Step 1: ×3 = 18; Step 2: ×3 = 54; Step 3: ×3 = 162; Step 4: -137 = 25"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 2. Follow the path: ×3 → +10 → ×3 → +7. What is the final value?",
                "answer": "55",
                "startValue": 2,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 6
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 16
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 48
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 55
                    }
                ],
                "finalValue": 55,
                "pathDescription": "Step 1: ×3 = 6; Step 2: +10 = 16; Step 3: ×3 = 48; Step 4: +7 = 55"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 9. Follow the path: -2 → +4 → -3 → ×3. What is the final value?",
                "answer": "24",
                "startValue": 9,
                "steps": [
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 7
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 11
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 8
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 24
                    }
                ],
                "finalValue": 24,
                "pathDescription": "Step 1: -2 = 7; Step 2: +4 = 11; Step 3: -3 = 8; Step 4: ×3 = 24"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}