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 6. Follow the path: -2 → ×2 → -6 → +2 → ×2. What is the final value?",
                "answer": "8",
                "startValue": 6,
                "steps": [
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 4
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 8
                    },
                    {
                        "op": "-",
                        "operand": 6,
                        "result": 2
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 4
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 8
                    }
                ],
                "finalValue": 8,
                "pathDescription": "Step 1: -2 = 4; Step 2: ×2 = 8; Step 3: -6 = 2; Step 4: +2 = 4; Step 5: ×2 = 8"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 3. Follow the path: +1 → +10 → ×4 → ×2 → -47. What is the final value?",
                "answer": "65",
                "startValue": 3,
                "steps": [
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 4
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 14
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 56
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 112
                    },
                    {
                        "op": "-",
                        "operand": 47,
                        "result": 65
                    }
                ],
                "finalValue": 65,
                "pathDescription": "Step 1: +1 = 4; Step 2: +10 = 14; Step 3: ×4 = 56; Step 4: ×2 = 112; Step 5: -47 = 65"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 3. Follow the path: +9 → +2 → -7 → -6 → +10. What is the final value?",
                "answer": "11",
                "startValue": 3,
                "steps": [
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 12
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 14
                    },
                    {
                        "op": "-",
                        "operand": 7,
                        "result": 7
                    },
                    {
                        "op": "-",
                        "operand": 6,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 11
                    }
                ],
                "finalValue": 11,
                "pathDescription": "Step 1: +9 = 12; Step 2: +2 = 14; Step 3: -7 = 7; Step 4: -6 = 1; Step 5: +10 = 11"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 6. Follow the path: -3 → -1 → -1 → +5 → -4. What is the final value?",
                "answer": "2",
                "startValue": 6,
                "steps": [
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 3
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 2
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 6
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 2
                    }
                ],
                "finalValue": 2,
                "pathDescription": "Step 1: -3 = 3; Step 2: -1 = 2; Step 3: -1 = 1; Step 4: +5 = 6; Step 5: -4 = 2"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 8. Follow the path: +2 → -3 → ×3 → +8 → ×3. What is the final value?",
                "answer": "87",
                "startValue": 8,
                "steps": [
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 10
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 7
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 21
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 29
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 87
                    }
                ],
                "finalValue": 87,
                "pathDescription": "Step 1: +2 = 10; Step 2: -3 = 7; Step 3: ×3 = 21; Step 4: +8 = 29; Step 5: ×3 = 87"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 8. Follow the path: +4 → +6 → +8 → -25 → ×3. What is the final value?",
                "answer": "3",
                "startValue": 8,
                "steps": [
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 12
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 18
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 26
                    },
                    {
                        "op": "-",
                        "operand": 25,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 3
                    }
                ],
                "finalValue": 3,
                "pathDescription": "Step 1: +4 = 12; Step 2: +6 = 18; Step 3: +8 = 26; Step 4: -25 = 1; Step 5: ×3 = 3"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 9. Follow the path: -5 → +7 → ×3 → ×2 → -53. What is the final value?",
                "answer": "13",
                "startValue": 9,
                "steps": [
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 4
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 11
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 33
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 66
                    },
                    {
                        "op": "-",
                        "operand": 53,
                        "result": 13
                    }
                ],
                "finalValue": 13,
                "pathDescription": "Step 1: -5 = 4; Step 2: +7 = 11; Step 3: ×3 = 33; Step 4: ×2 = 66; Step 5: -53 = 13"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 4. Follow the path: ×3 → -9 → ×3 → -2 → +5. What is the final value?",
                "answer": "12",
                "startValue": 4,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 12
                    },
                    {
                        "op": "-",
                        "operand": 9,
                        "result": 3
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 9
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 7
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 12
                    }
                ],
                "finalValue": 12,
                "pathDescription": "Step 1: ×3 = 12; Step 2: -9 = 3; Step 3: ×3 = 9; Step 4: -2 = 7; Step 5: +5 = 12"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}