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 6. Follow the path: ×4 → ×2 → ×4 → +3. What is the final value?",
                "answer": "195",
                "startValue": 6,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 24
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 48
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 192
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 195
                    }
                ],
                "finalValue": 195,
                "pathDescription": "Step 1: ×4 = 24; Step 2: ×2 = 48; Step 3: ×4 = 192; Step 4: +3 = 195"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 9. Follow the path: -1 → ×3 → -22 → ×3. What is the final value?",
                "answer": "6",
                "startValue": 9,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 8
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 24
                    },
                    {
                        "op": "-",
                        "operand": 22,
                        "result": 2
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 6
                    }
                ],
                "finalValue": 6,
                "pathDescription": "Step 1: -1 = 8; Step 2: ×3 = 24; Step 3: -22 = 2; Step 4: ×3 = 6"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 7. Follow the path: -6 → ×4 → -3 → +7. What is the final value?",
                "answer": "8",
                "startValue": 7,
                "steps": [
                    {
                        "op": "-",
                        "operand": 6,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 4
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 8
                    }
                ],
                "finalValue": 8,
                "pathDescription": "Step 1: -6 = 1; Step 2: ×4 = 4; Step 3: -3 = 1; Step 4: +7 = 8"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 5. Follow the path: ×4 → +4 → +1 → -17. What is the final value?",
                "answer": "8",
                "startValue": 5,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 20
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 24
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 25
                    },
                    {
                        "op": "-",
                        "operand": 17,
                        "result": 8
                    }
                ],
                "finalValue": 8,
                "pathDescription": "Step 1: ×4 = 20; Step 2: +4 = 24; Step 3: +1 = 25; Step 4: -17 = 8"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 9. Follow the path: -6 → -1 → +6 → -6. What is the final value?",
                "answer": "2",
                "startValue": 9,
                "steps": [
                    {
                        "op": "-",
                        "operand": 6,
                        "result": 3
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 2
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 8
                    },
                    {
                        "op": "-",
                        "operand": 6,
                        "result": 2
                    }
                ],
                "finalValue": 2,
                "pathDescription": "Step 1: -6 = 3; Step 2: -1 = 2; Step 3: +6 = 8; Step 4: -6 = 2"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 7. Follow the path: ×3 → -19 → -1 → -1. What is the final value?",
                "answer": "0",
                "startValue": 7,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 21
                    },
                    {
                        "op": "-",
                        "operand": 19,
                        "result": 2
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    }
                ],
                "finalValue": 0,
                "pathDescription": "Step 1: ×3 = 21; Step 2: -19 = 2; Step 3: -1 = 1; Step 4: -1 = 0"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 6. Follow the path: -3 → ×3 → ×4 → -4. What is the final value?",
                "answer": "32",
                "startValue": 6,
                "steps": [
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 3
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 9
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 36
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 32
                    }
                ],
                "finalValue": 32,
                "pathDescription": "Step 1: -3 = 3; Step 2: ×3 = 9; Step 3: ×4 = 36; Step 4: -4 = 32"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 6. Follow the path: -3 → ×2 → +8 → +8. What is the final value?",
                "answer": "22",
                "startValue": 6,
                "steps": [
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 3
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 6
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 14
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 22
                    }
                ],
                "finalValue": 22,
                "pathDescription": "Step 1: -3 = 3; Step 2: ×2 = 6; Step 3: +8 = 14; Step 4: +8 = 22"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}