B Set 54 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 5. Follow the path: +9 → ×2 → +1. What is the final value?",
                "answer": "29",
                "startValue": 5,
                "steps": [
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 14
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 28
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 29
                    }
                ],
                "finalValue": 29,
                "pathDescription": "Step 1: +9 = 14; Step 2: ×2 = 28; Step 3: +1 = 29"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 7. Follow the path: ×3 → ×4 → +10. What is the final value?",
                "answer": "94",
                "startValue": 7,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 21
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 84
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 94
                    }
                ],
                "finalValue": 94,
                "pathDescription": "Step 1: ×3 = 21; Step 2: ×4 = 84; Step 3: +10 = 94"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 9. Follow the path: +3 → -8 → ×3. What is the final value?",
                "answer": "12",
                "startValue": 9,
                "steps": [
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 12
                    },
                    {
                        "op": "-",
                        "operand": 8,
                        "result": 4
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 12
                    }
                ],
                "finalValue": 12,
                "pathDescription": "Step 1: +3 = 12; Step 2: -8 = 4; Step 3: ×3 = 12"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 10. Follow the path: +10 → +6 → ×2. What is the final value?",
                "answer": "52",
                "startValue": 10,
                "steps": [
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 20
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 26
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 52
                    }
                ],
                "finalValue": 52,
                "pathDescription": "Step 1: +10 = 20; Step 2: +6 = 26; Step 3: ×2 = 52"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 6. Follow the path: -1 → ×3 → +3. What is the final value?",
                "answer": "18",
                "startValue": 6,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 5
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 15
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 18
                    }
                ],
                "finalValue": 18,
                "pathDescription": "Step 1: -1 = 5; Step 2: ×3 = 15; Step 3: +3 = 18"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 2. Follow the path: +8 → -3 → +5. What is the final value?",
                "answer": "12",
                "startValue": 2,
                "steps": [
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 10
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 7
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 12
                    }
                ],
                "finalValue": 12,
                "pathDescription": "Step 1: +8 = 10; Step 2: -3 = 7; Step 3: +5 = 12"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 6. Follow the path: +4 → -6 → +4. What is the final value?",
                "answer": "8",
                "startValue": 6,
                "steps": [
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 10
                    },
                    {
                        "op": "-",
                        "operand": 6,
                        "result": 4
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 8
                    }
                ],
                "finalValue": 8,
                "pathDescription": "Step 1: +4 = 10; Step 2: -6 = 4; Step 3: +4 = 8"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 4. Follow the path: -1 → -1 → +6. What is the final value?",
                "answer": "8",
                "startValue": 4,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 3
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 2
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 8
                    }
                ],
                "finalValue": 8,
                "pathDescription": "Step 1: -1 = 3; Step 2: -1 = 2; Step 3: +6 = 8"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}