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