B Set 66 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 7. Follow the path: -6 → ×2 → +10 → +8 → -13. What is the final value?",
                "answer": "7",
                "startValue": 7,
                "steps": [
                    {
                        "op": "-",
                        "operand": 6,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 2
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 12
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 20
                    },
                    {
                        "op": "-",
                        "operand": 13,
                        "result": 7
                    }
                ],
                "finalValue": 7,
                "pathDescription": "Step 1: -6 = 1; Step 2: ×2 = 2; Step 3: +10 = 12; Step 4: +8 = 20; Step 5: -13 = 7"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 7. Follow the path: ×3 → +9 → +4 → +10 → ×2. What is the final value?",
                "answer": "88",
                "startValue": 7,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 21
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 30
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 34
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 44
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 88
                    }
                ],
                "finalValue": 88,
                "pathDescription": "Step 1: ×3 = 21; Step 2: +9 = 30; Step 3: +4 = 34; Step 4: +10 = 44; Step 5: ×2 = 88"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 7. Follow the path: ×2 → -9 → -4 → +5 → -2. What is the final value?",
                "answer": "4",
                "startValue": 7,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 14
                    },
                    {
                        "op": "-",
                        "operand": 9,
                        "result": 5
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 6
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 4
                    }
                ],
                "finalValue": 4,
                "pathDescription": "Step 1: ×2 = 14; Step 2: -9 = 5; Step 3: -4 = 1; Step 4: +5 = 6; Step 5: -2 = 4"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 3. Follow the path: +4 → ×3 → -10 → ×2 → ×3. What is the final value?",
                "answer": "66",
                "startValue": 3,
                "steps": [
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 7
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 21
                    },
                    {
                        "op": "-",
                        "operand": 10,
                        "result": 11
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 22
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 66
                    }
                ],
                "finalValue": 66,
                "pathDescription": "Step 1: +4 = 7; Step 2: ×3 = 21; Step 3: -10 = 11; Step 4: ×2 = 22; Step 5: ×3 = 66"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 5. Follow the path: +6 → ×2 → -18 → +1 → -2. What is the final value?",
                "answer": "3",
                "startValue": 5,
                "steps": [
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 11
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 22
                    },
                    {
                        "op": "-",
                        "operand": 18,
                        "result": 4
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 5
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 3
                    }
                ],
                "finalValue": 3,
                "pathDescription": "Step 1: +6 = 11; Step 2: ×2 = 22; Step 3: -18 = 4; Step 4: +1 = 5; Step 5: -2 = 3"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 3. Follow the path: -2 → -1 → ×4 → +6 → +1. What is the final value?",
                "answer": "7",
                "startValue": 3,
                "steps": [
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 0
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 6
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 7
                    }
                ],
                "finalValue": 7,
                "pathDescription": "Step 1: -2 = 1; Step 2: -1 = 0; Step 3: ×4 = 0; Step 4: +6 = 6; Step 5: +1 = 7"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 7. Follow the path: ×4 → ×3 → ×3 → -77 → +8. What is the final value?",
                "answer": "183",
                "startValue": 7,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 28
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 84
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 252
                    },
                    {
                        "op": "-",
                        "operand": 77,
                        "result": 175
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 183
                    }
                ],
                "finalValue": 183,
                "pathDescription": "Step 1: ×4 = 28; Step 2: ×3 = 84; Step 3: ×3 = 252; Step 4: -77 = 175; Step 5: +8 = 183"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 10. Follow the path: ×3 → -5 → ×3 → ×3 → +4. What is the final value?",
                "answer": "229",
                "startValue": 10,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 30
                    },
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 25
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 75
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 225
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 229
                    }
                ],
                "finalValue": 229,
                "pathDescription": "Step 1: ×3 = 30; Step 2: -5 = 25; Step 3: ×3 = 75; Step 4: ×3 = 225; Step 5: +4 = 229"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}