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": "hard",
        "config": {
            "difficulty": "hard",
            "maxNumber": 10
        },
        "problems": [
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 4. Follow the path: ×2 → +10 → ×3 → -53 → +1. What is the final value?",
                "answer": "2",
                "startValue": 4,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 8
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 18
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 54
                    },
                    {
                        "op": "-",
                        "operand": 53,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 2
                    }
                ],
                "finalValue": 2,
                "pathDescription": "Step 1: ×2 = 8; Step 2: +10 = 18; Step 3: ×3 = 54; Step 4: -53 = 1; Step 5: +1 = 2"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 9. Follow the path: -7 → +7 → -1 → ×3 → ×3. What is the final value?",
                "answer": "72",
                "startValue": 9,
                "steps": [
                    {
                        "op": "-",
                        "operand": 7,
                        "result": 2
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 9
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 8
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 24
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 72
                    }
                ],
                "finalValue": 72,
                "pathDescription": "Step 1: -7 = 2; Step 2: +7 = 9; Step 3: -1 = 8; Step 4: ×3 = 24; Step 5: ×3 = 72"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 6. Follow the path: -3 → -2 → ×3 → ×4 → ×2. What is the final value?",
                "answer": "24",
                "startValue": 6,
                "steps": [
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 3
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 3
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 12
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 24
                    }
                ],
                "finalValue": 24,
                "pathDescription": "Step 1: -3 = 3; Step 2: -2 = 1; Step 3: ×3 = 3; Step 4: ×4 = 12; Step 5: ×2 = 24"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 4. Follow the path: +10 → -13 → ×4 → +10 → +8. What is the final value?",
                "answer": "22",
                "startValue": 4,
                "steps": [
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 14
                    },
                    {
                        "op": "-",
                        "operand": 13,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 4
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 14
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 22
                    }
                ],
                "finalValue": 22,
                "pathDescription": "Step 1: +10 = 14; Step 2: -13 = 1; Step 3: ×4 = 4; Step 4: +10 = 14; Step 5: +8 = 22"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 8. Follow the path: ×3 → -13 → ×4 → ×4 → ×3. What is the final value?",
                "answer": "528",
                "startValue": 8,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 24
                    },
                    {
                        "op": "-",
                        "operand": 13,
                        "result": 11
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 44
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 176
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 528
                    }
                ],
                "finalValue": 528,
                "pathDescription": "Step 1: ×3 = 24; Step 2: -13 = 11; Step 3: ×4 = 44; Step 4: ×4 = 176; Step 5: ×3 = 528"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 3. Follow the path: -2 → +10 → -3 → +10 → -15. What is the final value?",
                "answer": "3",
                "startValue": 3,
                "steps": [
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 11
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 8
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 18
                    },
                    {
                        "op": "-",
                        "operand": 15,
                        "result": 3
                    }
                ],
                "finalValue": 3,
                "pathDescription": "Step 1: -2 = 1; Step 2: +10 = 11; Step 3: -3 = 8; Step 4: +10 = 18; Step 5: -15 = 3"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 3. Follow the path: -2 → ×2 → -1 → -1 → ×3. What is the final value?",
                "answer": "0",
                "startValue": 3,
                "steps": [
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 2
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 0
                    }
                ],
                "finalValue": 0,
                "pathDescription": "Step 1: -2 = 1; Step 2: ×2 = 2; Step 3: -1 = 1; Step 4: -1 = 0; Step 5: ×3 = 0"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 10. Follow the path: +8 → ×2 → +2 → ×4 → ×2. What is the final value?",
                "answer": "304",
                "startValue": 10,
                "steps": [
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 18
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 36
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 38
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 152
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 304
                    }
                ],
                "finalValue": 304,
                "pathDescription": "Step 1: +8 = 18; Step 2: ×2 = 36; Step 3: +2 = 38; Step 4: ×4 = 152; Step 5: ×2 = 304"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}