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