B Set 68 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 2. Follow the path: -1 → ×2 → ×2 → ×4 → -15. What is the final value?",
                "answer": "1",
                "startValue": 2,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 2
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 4
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 16
                    },
                    {
                        "op": "-",
                        "operand": 15,
                        "result": 1
                    }
                ],
                "finalValue": 1,
                "pathDescription": "Step 1: -1 = 1; Step 2: ×2 = 2; Step 3: ×2 = 4; Step 4: ×4 = 16; Step 5: -15 = 1"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 1. Follow the path: ×2 → ×2 → ×2 → -4 → ×3. What is the final value?",
                "answer": "12",
                "startValue": 1,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 2
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 4
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 8
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 4
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 12
                    }
                ],
                "finalValue": 12,
                "pathDescription": "Step 1: ×2 = 2; Step 2: ×2 = 4; Step 3: ×2 = 8; Step 4: -4 = 4; Step 5: ×3 = 12"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 5. Follow the path: -2 → +6 → -3 → -2 → +2. What is the final value?",
                "answer": "6",
                "startValue": 5,
                "steps": [
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 3
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 9
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 6
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 4
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 6
                    }
                ],
                "finalValue": 6,
                "pathDescription": "Step 1: -2 = 3; Step 2: +6 = 9; Step 3: -3 = 6; Step 4: -2 = 4; Step 5: +2 = 6"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 8. Follow the path: -3 → +4 → ×2 → -14 → +9. What is the final value?",
                "answer": "13",
                "startValue": 8,
                "steps": [
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 5
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 9
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 18
                    },
                    {
                        "op": "-",
                        "operand": 14,
                        "result": 4
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 13
                    }
                ],
                "finalValue": 13,
                "pathDescription": "Step 1: -3 = 5; Step 2: +4 = 9; Step 3: ×2 = 18; Step 4: -14 = 4; Step 5: +9 = 13"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 4. Follow the path: -1 → ×4 → ×3 → -22 → -4. What is the final value?",
                "answer": "10",
                "startValue": 4,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 3
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 12
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 36
                    },
                    {
                        "op": "-",
                        "operand": 22,
                        "result": 14
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 10
                    }
                ],
                "finalValue": 10,
                "pathDescription": "Step 1: -1 = 3; Step 2: ×4 = 12; Step 3: ×3 = 36; Step 4: -22 = 14; Step 5: -4 = 10"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 9. Follow the path: ×2 → +4 → ×2 → ×2 → ×4. What is the final value?",
                "answer": "352",
                "startValue": 9,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 18
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 22
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 44
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 88
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 352
                    }
                ],
                "finalValue": 352,
                "pathDescription": "Step 1: ×2 = 18; Step 2: +4 = 22; Step 3: ×2 = 44; Step 4: ×2 = 88; Step 5: ×4 = 352"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 8. Follow the path: ×2 → +8 → ×4 → -87 → ×3. What is the final value?",
                "answer": "27",
                "startValue": 8,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 16
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 24
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 96
                    },
                    {
                        "op": "-",
                        "operand": 87,
                        "result": 9
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 27
                    }
                ],
                "finalValue": 27,
                "pathDescription": "Step 1: ×2 = 16; Step 2: +8 = 24; Step 3: ×4 = 96; Step 4: -87 = 9; Step 5: ×3 = 27"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 3. Follow the path: +1 → -1 → -2 → +2 → -1. What is the final value?",
                "answer": "2",
                "startValue": 3,
                "steps": [
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 4
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 3
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 3
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 2
                    }
                ],
                "finalValue": 2,
                "pathDescription": "Step 1: +1 = 4; Step 2: -1 = 3; Step 3: -2 = 1; Step 4: +2 = 3; Step 5: -1 = 2"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}