B Set 66 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 10. Follow the path: +10 → ×4 → ×2. What is the final value?",
                "answer": "160",
                "startValue": 10,
                "steps": [
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 20
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 80
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 160
                    }
                ],
                "finalValue": 160,
                "pathDescription": "Step 1: +10 = 20; Step 2: ×4 = 80; Step 3: ×2 = 160"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 6. Follow the path: -4 → -1 → +9. What is the final value?",
                "answer": "10",
                "startValue": 6,
                "steps": [
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 2
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 10
                    }
                ],
                "finalValue": 10,
                "pathDescription": "Step 1: -4 = 2; Step 2: -1 = 1; Step 3: +9 = 10"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 3. Follow the path: ×2 → ×4 → ×2. What is the final value?",
                "answer": "48",
                "startValue": 3,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 6
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 24
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 48
                    }
                ],
                "finalValue": 48,
                "pathDescription": "Step 1: ×2 = 6; Step 2: ×4 = 24; Step 3: ×2 = 48"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 3. Follow the path: -1 → ×2 → ×3. What is the final value?",
                "answer": "12",
                "startValue": 3,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 2
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 4
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 12
                    }
                ],
                "finalValue": 12,
                "pathDescription": "Step 1: -1 = 2; Step 2: ×2 = 4; Step 3: ×3 = 12"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 8. Follow the path: +8 → ×3 → +8. What is the final value?",
                "answer": "56",
                "startValue": 8,
                "steps": [
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 16
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 48
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 56
                    }
                ],
                "finalValue": 56,
                "pathDescription": "Step 1: +8 = 16; Step 2: ×3 = 48; Step 3: +8 = 56"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 10. Follow the path: -6 → +2 → -2. What is the final value?",
                "answer": "4",
                "startValue": 10,
                "steps": [
                    {
                        "op": "-",
                        "operand": 6,
                        "result": 4
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 6
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 4
                    }
                ],
                "finalValue": 4,
                "pathDescription": "Step 1: -6 = 4; Step 2: +2 = 6; Step 3: -2 = 4"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 1. Follow the path: -1 → +9 → +4. What is the final value?",
                "answer": "13",
                "startValue": 1,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 9
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 13
                    }
                ],
                "finalValue": 13,
                "pathDescription": "Step 1: -1 = 0; Step 2: +9 = 9; Step 3: +4 = 13"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 9. Follow the path: +2 → +7 → -3. What is the final value?",
                "answer": "15",
                "startValue": 9,
                "steps": [
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 11
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 18
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 15
                    }
                ],
                "finalValue": 15,
                "pathDescription": "Step 1: +2 = 11; Step 2: +7 = 18; Step 3: -3 = 15"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}