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