B Set 67 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: ×4 → -10 → ×3 → -29 → -1. What is the final value?",
                "answer": "0",
                "startValue": 5,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 20
                    },
                    {
                        "op": "-",
                        "operand": 10,
                        "result": 10
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 30
                    },
                    {
                        "op": "-",
                        "operand": 29,
                        "result": 1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    }
                ],
                "finalValue": 0,
                "pathDescription": "Step 1: ×4 = 20; Step 2: -10 = 10; Step 3: ×3 = 30; Step 4: -29 = 1; Step 5: -1 = 0"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 4. Follow the path: ×4 → +2 → +3 → -8 → -2. What is the final value?",
                "answer": "11",
                "startValue": 4,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 16
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 18
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 21
                    },
                    {
                        "op": "-",
                        "operand": 8,
                        "result": 13
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 11
                    }
                ],
                "finalValue": 11,
                "pathDescription": "Step 1: ×4 = 16; Step 2: +2 = 18; Step 3: +3 = 21; Step 4: -8 = 13; Step 5: -2 = 11"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 1. Follow the path: ×2 → +10 → +3 → ×4 → ×2. What is the final value?",
                "answer": "120",
                "startValue": 1,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 2
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 12
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 15
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 60
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 120
                    }
                ],
                "finalValue": 120,
                "pathDescription": "Step 1: ×2 = 2; Step 2: +10 = 12; Step 3: +3 = 15; Step 4: ×4 = 60; Step 5: ×2 = 120"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 5. Follow the path: ×4 → -16 → +4 → -7 → ×3. What is the final value?",
                "answer": "3",
                "startValue": 5,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 20
                    },
                    {
                        "op": "-",
                        "operand": 16,
                        "result": 4
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 8
                    },
                    {
                        "op": "-",
                        "operand": 7,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 3
                    }
                ],
                "finalValue": 3,
                "pathDescription": "Step 1: ×4 = 20; Step 2: -16 = 4; Step 3: +4 = 8; Step 4: -7 = 1; Step 5: ×3 = 3"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 9. Follow the path: ×3 → ×4 → -42 → ×2 → ×2. What is the final value?",
                "answer": "264",
                "startValue": 9,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 27
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 108
                    },
                    {
                        "op": "-",
                        "operand": 42,
                        "result": 66
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 132
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 264
                    }
                ],
                "finalValue": 264,
                "pathDescription": "Step 1: ×3 = 27; Step 2: ×4 = 108; Step 3: -42 = 66; Step 4: ×2 = 132; Step 5: ×2 = 264"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 10. Follow the path: ×2 → -3 → -6 → -7 → -3. What is the final value?",
                "answer": "1",
                "startValue": 10,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 20
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 17
                    },
                    {
                        "op": "-",
                        "operand": 6,
                        "result": 11
                    },
                    {
                        "op": "-",
                        "operand": 7,
                        "result": 4
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 1
                    }
                ],
                "finalValue": 1,
                "pathDescription": "Step 1: ×2 = 20; Step 2: -3 = 17; Step 3: -6 = 11; Step 4: -7 = 4; Step 5: -3 = 1"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 4. Follow the path: ×4 → +6 → -11 → ×2 → +6. What is the final value?",
                "answer": "28",
                "startValue": 4,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 16
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 22
                    },
                    {
                        "op": "-",
                        "operand": 11,
                        "result": 11
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 22
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 28
                    }
                ],
                "finalValue": 28,
                "pathDescription": "Step 1: ×4 = 16; Step 2: +6 = 22; Step 3: -11 = 11; Step 4: ×2 = 22; Step 5: +6 = 28"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 10. Follow the path: -3 → ×3 → -10 → +2 → ×4. What is the final value?",
                "answer": "52",
                "startValue": 10,
                "steps": [
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 7
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 21
                    },
                    {
                        "op": "-",
                        "operand": 10,
                        "result": 11
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 13
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 52
                    }
                ],
                "finalValue": 52,
                "pathDescription": "Step 1: -3 = 7; Step 2: ×3 = 21; Step 3: -10 = 11; Step 4: +2 = 13; Step 5: ×4 = 52"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}