B Set 74 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 7. Follow the path: +9 → ×4 → +10. What is the final value?",
                "answer": "74",
                "startValue": 7,
                "steps": [
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 16
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 64
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 74
                    }
                ],
                "finalValue": 74,
                "pathDescription": "Step 1: +9 = 16; Step 2: ×4 = 64; Step 3: +10 = 74"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 10. Follow the path: +7 → +10 → +10. What is the final value?",
                "answer": "37",
                "startValue": 10,
                "steps": [
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 17
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 27
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 37
                    }
                ],
                "finalValue": 37,
                "pathDescription": "Step 1: +7 = 17; Step 2: +10 = 27; Step 3: +10 = 37"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 10. Follow the path: ×3 → ×4 → ×2. What is the final value?",
                "answer": "240",
                "startValue": 10,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 30
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 120
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 240
                    }
                ],
                "finalValue": 240,
                "pathDescription": "Step 1: ×3 = 30; Step 2: ×4 = 120; Step 3: ×2 = 240"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 6. Follow the path: -2 → -1 → -1. What is the final value?",
                "answer": "2",
                "startValue": 6,
                "steps": [
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 4
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 3
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 2
                    }
                ],
                "finalValue": 2,
                "pathDescription": "Step 1: -2 = 4; Step 2: -1 = 3; Step 3: -1 = 2"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 3. Follow the path: +8 → -10 → ×3. What is the final value?",
                "answer": "3",
                "startValue": 3,
                "steps": [
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 11
                    },
                    {
                        "op": "-",
                        "operand": 10,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 3
                    }
                ],
                "finalValue": 3,
                "pathDescription": "Step 1: +8 = 11; Step 2: -10 = 1; Step 3: ×3 = 3"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 8. Follow the path: -3 → +2 → +1. What is the final value?",
                "answer": "8",
                "startValue": 8,
                "steps": [
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 5
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 7
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 8
                    }
                ],
                "finalValue": 8,
                "pathDescription": "Step 1: -3 = 5; Step 2: +2 = 7; Step 3: +1 = 8"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 10. Follow the path: ×3 → -2 → ×2. What is the final value?",
                "answer": "56",
                "startValue": 10,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 30
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 28
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 56
                    }
                ],
                "finalValue": 56,
                "pathDescription": "Step 1: ×3 = 30; Step 2: -2 = 28; Step 3: ×2 = 56"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 8. Follow the path: ×4 → +2 → +7. What is the final value?",
                "answer": "41",
                "startValue": 8,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 32
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 34
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 41
                    }
                ],
                "finalValue": 41,
                "pathDescription": "Step 1: ×4 = 32; Step 2: +2 = 34; Step 3: +7 = 41"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}