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