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": "medium",
        "config": {
            "difficulty": "medium",
            "maxNumber": 10
        },
        "problems": [
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 5. Follow the path: +7 → +6 → ×3 → +1. What is the final value?",
                "answer": "55",
                "startValue": 5,
                "steps": [
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 12
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 18
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 54
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 55
                    }
                ],
                "finalValue": 55,
                "pathDescription": "Step 1: +7 = 12; Step 2: +6 = 18; Step 3: ×3 = 54; Step 4: +1 = 55"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 6. Follow the path: -2 → -2 → +7 → -7. What is the final value?",
                "answer": "2",
                "startValue": 6,
                "steps": [
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 4
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 2
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 9
                    },
                    {
                        "op": "-",
                        "operand": 7,
                        "result": 2
                    }
                ],
                "finalValue": 2,
                "pathDescription": "Step 1: -2 = 4; Step 2: -2 = 2; Step 3: +7 = 9; Step 4: -7 = 2"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 10. Follow the path: ×4 → -14 → +5 → +3. What is the final value?",
                "answer": "34",
                "startValue": 10,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 40
                    },
                    {
                        "op": "-",
                        "operand": 14,
                        "result": 26
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 31
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 34
                    }
                ],
                "finalValue": 34,
                "pathDescription": "Step 1: ×4 = 40; Step 2: -14 = 26; Step 3: +5 = 31; Step 4: +3 = 34"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 8. Follow the path: +10 → +3 → -16 → -1. What is the final value?",
                "answer": "4",
                "startValue": 8,
                "steps": [
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 18
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 21
                    },
                    {
                        "op": "-",
                        "operand": 16,
                        "result": 5
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 4
                    }
                ],
                "finalValue": 4,
                "pathDescription": "Step 1: +10 = 18; Step 2: +3 = 21; Step 3: -16 = 5; Step 4: -1 = 4"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 2. Follow the path: +8 → -2 → +7 → ×2. What is the final value?",
                "answer": "30",
                "startValue": 2,
                "steps": [
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 10
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 8
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 15
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 30
                    }
                ],
                "finalValue": 30,
                "pathDescription": "Step 1: +8 = 10; Step 2: -2 = 8; Step 3: +7 = 15; Step 4: ×2 = 30"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 3. Follow the path: +6 → ×2 → -16 → +8. What is the final value?",
                "answer": "10",
                "startValue": 3,
                "steps": [
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 9
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 18
                    },
                    {
                        "op": "-",
                        "operand": 16,
                        "result": 2
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 10
                    }
                ],
                "finalValue": 10,
                "pathDescription": "Step 1: +6 = 9; Step 2: ×2 = 18; Step 3: -16 = 2; Step 4: +8 = 10"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 8. Follow the path: -5 → ×4 → ×3 → +7. What is the final value?",
                "answer": "43",
                "startValue": 8,
                "steps": [
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 3
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 12
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 36
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 43
                    }
                ],
                "finalValue": 43,
                "pathDescription": "Step 1: -5 = 3; Step 2: ×4 = 12; Step 3: ×3 = 36; Step 4: +7 = 43"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 5. Follow the path: -2 → +9 → +3 → +4. What is the final value?",
                "answer": "19",
                "startValue": 5,
                "steps": [
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 3
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 12
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 15
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 19
                    }
                ],
                "finalValue": 19,
                "pathDescription": "Step 1: -2 = 3; Step 2: +9 = 12; Step 3: +3 = 15; Step 4: +4 = 19"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}