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