B Set 18 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": "hard",
        "config": {
            "difficulty": "hard",
            "maxNumber": 10
        },
        "problems": [
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 4. Follow the path: ×3 → +4 → -5 → +7 → -10. What is the final value?",
                "answer": "8",
                "startValue": 4,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 12
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 16
                    },
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 11
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 18
                    },
                    {
                        "op": "-",
                        "operand": 10,
                        "result": 8
                    }
                ],
                "finalValue": 8,
                "pathDescription": "Step 1: ×3 = 12; Step 2: +4 = 16; Step 3: -5 = 11; Step 4: +7 = 18; Step 5: -10 = 8"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 3. Follow the path: ×2 → ×4 → ×3 → +10 → +10. What is the final value?",
                "answer": "92",
                "startValue": 3,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 6
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 24
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 72
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 82
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 92
                    }
                ],
                "finalValue": 92,
                "pathDescription": "Step 1: ×2 = 6; Step 2: ×4 = 24; Step 3: ×3 = 72; Step 4: +10 = 82; Step 5: +10 = 92"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 6. Follow the path: -5 → ×4 → -3 → -1 → ×3. What is the final value?",
                "answer": "0",
                "startValue": 6,
                "steps": [
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 4
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 0
                    }
                ],
                "finalValue": 0,
                "pathDescription": "Step 1: -5 = 1; Step 2: ×4 = 4; Step 3: -3 = 1; Step 4: -1 = 0; Step 5: ×3 = 0"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 8. Follow the path: ×4 → +5 → +10 → +10 → -53. What is the final value?",
                "answer": "4",
                "startValue": 8,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 32
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 37
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 47
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 57
                    },
                    {
                        "op": "-",
                        "operand": 53,
                        "result": 4
                    }
                ],
                "finalValue": 4,
                "pathDescription": "Step 1: ×4 = 32; Step 2: +5 = 37; Step 3: +10 = 47; Step 4: +10 = 57; Step 5: -53 = 4"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 7. Follow the path: +1 → +7 → ×3 → ×2 → ×2. What is the final value?",
                "answer": "180",
                "startValue": 7,
                "steps": [
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 8
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 15
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 45
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 90
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 180
                    }
                ],
                "finalValue": 180,
                "pathDescription": "Step 1: +1 = 8; Step 2: +7 = 15; Step 3: ×3 = 45; Step 4: ×2 = 90; Step 5: ×2 = 180"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 2. Follow the path: ×2 → +6 → +2 → ×2 → -17. What is the final value?",
                "answer": "7",
                "startValue": 2,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 4
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 10
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 12
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 24
                    },
                    {
                        "op": "-",
                        "operand": 17,
                        "result": 7
                    }
                ],
                "finalValue": 7,
                "pathDescription": "Step 1: ×2 = 4; Step 2: +6 = 10; Step 3: +2 = 12; Step 4: ×2 = 24; Step 5: -17 = 7"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 1. Follow the path: ×4 → ×3 → -4 → +4 → ×2. What is the final value?",
                "answer": "24",
                "startValue": 1,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 4
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 12
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 8
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 12
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 24
                    }
                ],
                "finalValue": 24,
                "pathDescription": "Step 1: ×4 = 4; Step 2: ×3 = 12; Step 3: -4 = 8; Step 4: +4 = 12; Step 5: ×2 = 24"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 8. Follow the path: ×4 → -29 → ×3 → -4 → -1. What is the final value?",
                "answer": "4",
                "startValue": 8,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 32
                    },
                    {
                        "op": "-",
                        "operand": 29,
                        "result": 3
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 9
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 5
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 4
                    }
                ],
                "finalValue": 4,
                "pathDescription": "Step 1: ×4 = 32; Step 2: -29 = 3; Step 3: ×3 = 9; Step 4: -4 = 5; Step 5: -1 = 4"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}