B Set 26 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 6. Follow the path: -3 → -2 → +3 → +2 → ×3. What is the final value?",
                "answer": "18",
                "startValue": 6,
                "steps": [
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 3
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 4
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 6
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 18
                    }
                ],
                "finalValue": 18,
                "pathDescription": "Step 1: -3 = 3; Step 2: -2 = 1; Step 3: +3 = 4; Step 4: +2 = 6; Step 5: ×3 = 18"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 6. Follow the path: +7 → -5 → ×4 → +6 → ×4. What is the final value?",
                "answer": "152",
                "startValue": 6,
                "steps": [
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 13
                    },
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 8
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 32
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 38
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 152
                    }
                ],
                "finalValue": 152,
                "pathDescription": "Step 1: +7 = 13; Step 2: -5 = 8; Step 3: ×4 = 32; Step 4: +6 = 38; Step 5: ×4 = 152"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 10. Follow the path: +9 → +4 → ×3 → -38 → ×4. What is the final value?",
                "answer": "124",
                "startValue": 10,
                "steps": [
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 19
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 23
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 69
                    },
                    {
                        "op": "-",
                        "operand": 38,
                        "result": 31
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 124
                    }
                ],
                "finalValue": 124,
                "pathDescription": "Step 1: +9 = 19; Step 2: +4 = 23; Step 3: ×3 = 69; Step 4: -38 = 31; Step 5: ×4 = 124"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 3. Follow the path: +6 → ×2 → +3 → ×4 → -72. What is the final value?",
                "answer": "12",
                "startValue": 3,
                "steps": [
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 9
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 18
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 21
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 84
                    },
                    {
                        "op": "-",
                        "operand": 72,
                        "result": 12
                    }
                ],
                "finalValue": 12,
                "pathDescription": "Step 1: +6 = 9; Step 2: ×2 = 18; Step 3: +3 = 21; Step 4: ×4 = 84; Step 5: -72 = 12"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 4. Follow the path: +10 → -8 → +9 → +9 → -3. What is the final value?",
                "answer": "21",
                "startValue": 4,
                "steps": [
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 14
                    },
                    {
                        "op": "-",
                        "operand": 8,
                        "result": 6
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 15
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 24
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 21
                    }
                ],
                "finalValue": 21,
                "pathDescription": "Step 1: +10 = 14; Step 2: -8 = 6; Step 3: +9 = 15; Step 4: +9 = 24; Step 5: -3 = 21"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 8. Follow the path: +9 → -11 → +9 → -14 → +7. What is the final value?",
                "answer": "8",
                "startValue": 8,
                "steps": [
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 17
                    },
                    {
                        "op": "-",
                        "operand": 11,
                        "result": 6
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 15
                    },
                    {
                        "op": "-",
                        "operand": 14,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 8
                    }
                ],
                "finalValue": 8,
                "pathDescription": "Step 1: +9 = 17; Step 2: -11 = 6; Step 3: +9 = 15; Step 4: -14 = 1; Step 5: +7 = 8"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 2. Follow the path: -1 → ×3 → -2 → +4 → +5. What is the final value?",
                "answer": "10",
                "startValue": 2,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 3
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 5
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 10
                    }
                ],
                "finalValue": 10,
                "pathDescription": "Step 1: -1 = 1; Step 2: ×3 = 3; Step 3: -2 = 1; Step 4: +4 = 5; Step 5: +5 = 10"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 2. Follow the path: ×2 → -2 → -1 → ×3 → +4. What is the final value?",
                "answer": "7",
                "startValue": 2,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 4
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 2
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 3
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 7
                    }
                ],
                "finalValue": 7,
                "pathDescription": "Step 1: ×2 = 4; Step 2: -2 = 2; Step 3: -1 = 1; Step 4: ×3 = 3; Step 5: +4 = 7"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}