B Set 20 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 5. Follow the path: ×2 → -1 → -6 → -2 → +10. What is the final value?",
                "answer": "11",
                "startValue": 5,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 10
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 9
                    },
                    {
                        "op": "-",
                        "operand": 6,
                        "result": 3
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 11
                    }
                ],
                "finalValue": 11,
                "pathDescription": "Step 1: ×2 = 10; Step 2: -1 = 9; Step 3: -6 = 3; Step 4: -2 = 1; Step 5: +10 = 11"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 10. Follow the path: +7 → ×4 → +5 → ×2 → +4. What is the final value?",
                "answer": "150",
                "startValue": 10,
                "steps": [
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 17
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 68
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 73
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 146
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 150
                    }
                ],
                "finalValue": 150,
                "pathDescription": "Step 1: +7 = 17; Step 2: ×4 = 68; Step 3: +5 = 73; Step 4: ×2 = 146; Step 5: +4 = 150"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 7. Follow the path: +7 → -3 → ×2 → +1 → -9. What is the final value?",
                "answer": "14",
                "startValue": 7,
                "steps": [
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 14
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 11
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 22
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 23
                    },
                    {
                        "op": "-",
                        "operand": 9,
                        "result": 14
                    }
                ],
                "finalValue": 14,
                "pathDescription": "Step 1: +7 = 14; Step 2: -3 = 11; Step 3: ×2 = 22; Step 4: +1 = 23; Step 5: -9 = 14"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 9. Follow the path: +7 → -11 → +6 → ×4 → +5. What is the final value?",
                "answer": "49",
                "startValue": 9,
                "steps": [
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 16
                    },
                    {
                        "op": "-",
                        "operand": 11,
                        "result": 5
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 11
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 44
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 49
                    }
                ],
                "finalValue": 49,
                "pathDescription": "Step 1: +7 = 16; Step 2: -11 = 5; Step 3: +6 = 11; Step 4: ×4 = 44; Step 5: +5 = 49"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 6. Follow the path: -3 → +9 → ×2 → -14 → -4. What is the final value?",
                "answer": "6",
                "startValue": 6,
                "steps": [
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 3
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 12
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 24
                    },
                    {
                        "op": "-",
                        "operand": 14,
                        "result": 10
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 6
                    }
                ],
                "finalValue": 6,
                "pathDescription": "Step 1: -3 = 3; Step 2: +9 = 12; Step 3: ×2 = 24; Step 4: -14 = 10; Step 5: -4 = 6"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 8. Follow the path: ×2 → -15 → +4 → +3 → ×2. What is the final value?",
                "answer": "16",
                "startValue": 8,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 16
                    },
                    {
                        "op": "-",
                        "operand": 15,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 5
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 8
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 16
                    }
                ],
                "finalValue": 16,
                "pathDescription": "Step 1: ×2 = 16; Step 2: -15 = 1; Step 3: +4 = 5; Step 4: +3 = 8; Step 5: ×2 = 16"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 10. Follow the path: ×4 → +6 → -45 → -1 → +6. What is the final value?",
                "answer": "6",
                "startValue": 10,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 40
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 46
                    },
                    {
                        "op": "-",
                        "operand": 45,
                        "result": 1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 6
                    }
                ],
                "finalValue": 6,
                "pathDescription": "Step 1: ×4 = 40; Step 2: +6 = 46; Step 3: -45 = 1; Step 4: -1 = 0; Step 5: +6 = 6"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 5. Follow the path: -3 → ×2 → +5 → ×2 → ×2. What is the final value?",
                "answer": "36",
                "startValue": 5,
                "steps": [
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 2
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 4
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 9
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 18
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 36
                    }
                ],
                "finalValue": 36,
                "pathDescription": "Step 1: -3 = 2; Step 2: ×2 = 4; Step 3: +5 = 9; Step 4: ×2 = 18; Step 5: ×2 = 36"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}