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