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