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