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