B Set 60 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": "hard",
        "config": {
            "difficulty": "hard",
            "maxNumber": 10
        },
        "problems": [
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 2. Follow the path: -1 → +5 → -1 → +8 → -5. What is the final value?",
                "answer": "8",
                "startValue": 2,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 6
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 5
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 13
                    },
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 8
                    }
                ],
                "finalValue": 8,
                "pathDescription": "Step 1: -1 = 1; Step 2: +5 = 6; Step 3: -1 = 5; Step 4: +8 = 13; Step 5: -5 = 8"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 3. Follow the path: -2 → -1 → -1 → ×3 → -1. What is the final value?",
                "answer": "-4",
                "startValue": 3,
                "steps": [
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": -1
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": -3
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": -4
                    }
                ],
                "finalValue": -4,
                "pathDescription": "Step 1: -2 = 1; Step 2: -1 = 0; Step 3: -1 = -1; Step 4: ×3 = -3; Step 5: -1 = -4"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 2. Follow the path: +3 → -3 → -1 → +5 → -1. What is the final value?",
                "answer": "5",
                "startValue": 2,
                "steps": [
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 5
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 2
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 6
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 5
                    }
                ],
                "finalValue": 5,
                "pathDescription": "Step 1: +3 = 5; Step 2: -3 = 2; Step 3: -1 = 1; Step 4: +5 = 6; Step 5: -1 = 5"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 1. Follow the path: ×3 → +9 → ×4 → -29 → +10. What is the final value?",
                "answer": "29",
                "startValue": 1,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 3
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 12
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 48
                    },
                    {
                        "op": "-",
                        "operand": 29,
                        "result": 19
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 29
                    }
                ],
                "finalValue": 29,
                "pathDescription": "Step 1: ×3 = 3; Step 2: +9 = 12; Step 3: ×4 = 48; Step 4: -29 = 19; Step 5: +10 = 29"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 8. Follow the path: +5 → ×3 → ×4 → -121 → ×2. What is the final value?",
                "answer": "70",
                "startValue": 8,
                "steps": [
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 13
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 39
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 156
                    },
                    {
                        "op": "-",
                        "operand": 121,
                        "result": 35
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 70
                    }
                ],
                "finalValue": 70,
                "pathDescription": "Step 1: +5 = 13; Step 2: ×3 = 39; Step 3: ×4 = 156; Step 4: -121 = 35; Step 5: ×2 = 70"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 9. Follow the path: ×3 → ×4 → -9 → -4 → -65. What is the final value?",
                "answer": "30",
                "startValue": 9,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 27
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 108
                    },
                    {
                        "op": "-",
                        "operand": 9,
                        "result": 99
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 95
                    },
                    {
                        "op": "-",
                        "operand": 65,
                        "result": 30
                    }
                ],
                "finalValue": 30,
                "pathDescription": "Step 1: ×3 = 27; Step 2: ×4 = 108; Step 3: -9 = 99; Step 4: -4 = 95; Step 5: -65 = 30"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 10. Follow the path: +8 → ×2 → -22 → +6 → -17. What is the final value?",
                "answer": "3",
                "startValue": 10,
                "steps": [
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 18
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 36
                    },
                    {
                        "op": "-",
                        "operand": 22,
                        "result": 14
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 20
                    },
                    {
                        "op": "-",
                        "operand": 17,
                        "result": 3
                    }
                ],
                "finalValue": 3,
                "pathDescription": "Step 1: +8 = 18; Step 2: ×2 = 36; Step 3: -22 = 14; Step 4: +6 = 20; Step 5: -17 = 3"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 9. Follow the path: +10 → ×3 → -37 → +2 → ×3. What is the final value?",
                "answer": "66",
                "startValue": 9,
                "steps": [
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 19
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 57
                    },
                    {
                        "op": "-",
                        "operand": 37,
                        "result": 20
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 22
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 66
                    }
                ],
                "finalValue": 66,
                "pathDescription": "Step 1: +10 = 19; Step 2: ×3 = 57; Step 3: -37 = 20; Step 4: +2 = 22; Step 5: ×3 = 66"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}