B Set 41 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 → +9 → -1 → -8 → +9. What is the final value?",
                "answer": "16",
                "startValue": 4,
                "steps": [
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 7
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 16
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 15
                    },
                    {
                        "op": "-",
                        "operand": 8,
                        "result": 7
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 16
                    }
                ],
                "finalValue": 16,
                "pathDescription": "Step 1: +3 = 7; Step 2: +9 = 16; Step 3: -1 = 15; Step 4: -8 = 7; Step 5: +9 = 16"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 2. Follow the path: -1 → ×3 → ×3 → +2 → +8. What is the final value?",
                "answer": "19",
                "startValue": 2,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 3
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 9
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 11
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 19
                    }
                ],
                "finalValue": 19,
                "pathDescription": "Step 1: -1 = 1; Step 2: ×3 = 3; Step 3: ×3 = 9; Step 4: +2 = 11; Step 5: +8 = 19"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 10. Follow the path: ×3 → ×3 → -74 → ×2 → -4. What is the final value?",
                "answer": "28",
                "startValue": 10,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 30
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 90
                    },
                    {
                        "op": "-",
                        "operand": 74,
                        "result": 16
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 32
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 28
                    }
                ],
                "finalValue": 28,
                "pathDescription": "Step 1: ×3 = 30; Step 2: ×3 = 90; Step 3: -74 = 16; Step 4: ×2 = 32; Step 5: -4 = 28"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 9. Follow the path: +9 → -11 → +3 → ×4 → ×4. What is the final value?",
                "answer": "160",
                "startValue": 9,
                "steps": [
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 18
                    },
                    {
                        "op": "-",
                        "operand": 11,
                        "result": 7
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 10
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 40
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 160
                    }
                ],
                "finalValue": 160,
                "pathDescription": "Step 1: +9 = 18; Step 2: -11 = 7; Step 3: +3 = 10; Step 4: ×4 = 40; Step 5: ×4 = 160"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 3. Follow the path: +3 → -4 → +10 → -7 → -1. What is the final value?",
                "answer": "4",
                "startValue": 3,
                "steps": [
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 6
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 2
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 12
                    },
                    {
                        "op": "-",
                        "operand": 7,
                        "result": 5
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 4
                    }
                ],
                "finalValue": 4,
                "pathDescription": "Step 1: +3 = 6; Step 2: -4 = 2; Step 3: +10 = 12; Step 4: -7 = 5; Step 5: -1 = 4"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 10. Follow the path: ×2 → -12 → -3 → +7 → ×2. What is the final value?",
                "answer": "24",
                "startValue": 10,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 20
                    },
                    {
                        "op": "-",
                        "operand": 12,
                        "result": 8
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 5
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 12
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 24
                    }
                ],
                "finalValue": 24,
                "pathDescription": "Step 1: ×2 = 20; Step 2: -12 = 8; Step 3: -3 = 5; Step 4: +7 = 12; Step 5: ×2 = 24"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 9. Follow the path: +8 → -11 → ×2 → ×4 → +2. What is the final value?",
                "answer": "50",
                "startValue": 9,
                "steps": [
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 17
                    },
                    {
                        "op": "-",
                        "operand": 11,
                        "result": 6
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 12
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 48
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 50
                    }
                ],
                "finalValue": 50,
                "pathDescription": "Step 1: +8 = 17; Step 2: -11 = 6; Step 3: ×2 = 12; Step 4: ×4 = 48; Step 5: +2 = 50"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 6. Follow the path: +3 → -2 → +10 → -3 → +8. What is the final value?",
                "answer": "22",
                "startValue": 6,
                "steps": [
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 9
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 7
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 17
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 14
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 22
                    }
                ],
                "finalValue": 22,
                "pathDescription": "Step 1: +3 = 9; Step 2: -2 = 7; Step 3: +10 = 17; Step 4: -3 = 14; Step 5: +8 = 22"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}