B Set 97 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": "easy",
        "config": {
            "difficulty": "easy",
            "maxNumber": 10
        },
        "problems": [
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 6. Follow the path: +5 → ×3 → +8. What is the final value?",
                "answer": "41",
                "startValue": 6,
                "steps": [
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 11
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 33
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 41
                    }
                ],
                "finalValue": 41,
                "pathDescription": "Step 1: +5 = 11; Step 2: ×3 = 33; Step 3: +8 = 41"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 6. Follow the path: ×4 → -14 → -8. What is the final value?",
                "answer": "2",
                "startValue": 6,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 24
                    },
                    {
                        "op": "-",
                        "operand": 14,
                        "result": 10
                    },
                    {
                        "op": "-",
                        "operand": 8,
                        "result": 2
                    }
                ],
                "finalValue": 2,
                "pathDescription": "Step 1: ×4 = 24; Step 2: -14 = 10; Step 3: -8 = 2"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 6. Follow the path: ×4 → ×3 → -17. What is the final value?",
                "answer": "55",
                "startValue": 6,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 24
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 72
                    },
                    {
                        "op": "-",
                        "operand": 17,
                        "result": 55
                    }
                ],
                "finalValue": 55,
                "pathDescription": "Step 1: ×4 = 24; Step 2: ×3 = 72; Step 3: -17 = 55"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 10. Follow the path: ×2 → +4 → +8. What is the final value?",
                "answer": "32",
                "startValue": 10,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 20
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 24
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 32
                    }
                ],
                "finalValue": 32,
                "pathDescription": "Step 1: ×2 = 20; Step 2: +4 = 24; Step 3: +8 = 32"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 2. Follow the path: -1 → +4 → +9. What is the final value?",
                "answer": "14",
                "startValue": 2,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 5
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 14
                    }
                ],
                "finalValue": 14,
                "pathDescription": "Step 1: -1 = 1; Step 2: +4 = 5; Step 3: +9 = 14"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 4. Follow the path: +10 → +2 → +7. What is the final value?",
                "answer": "23",
                "startValue": 4,
                "steps": [
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 14
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 16
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 23
                    }
                ],
                "finalValue": 23,
                "pathDescription": "Step 1: +10 = 14; Step 2: +2 = 16; Step 3: +7 = 23"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 4. Follow the path: ×4 → -5 → ×2. What is the final value?",
                "answer": "22",
                "startValue": 4,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 16
                    },
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 11
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 22
                    }
                ],
                "finalValue": 22,
                "pathDescription": "Step 1: ×4 = 16; Step 2: -5 = 11; Step 3: ×2 = 22"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 5. Follow the path: ×4 → ×3 → ×3. What is the final value?",
                "answer": "180",
                "startValue": 5,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 20
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 60
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 180
                    }
                ],
                "finalValue": 180,
                "pathDescription": "Step 1: ×4 = 20; Step 2: ×3 = 60; Step 3: ×3 = 180"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}