B Set 68 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: ×3 → ×4 → +1 → +4 → +4. What is the final value?",
                "answer": "93",
                "startValue": 7,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 21
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 84
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 85
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 89
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 93
                    }
                ],
                "finalValue": 93,
                "pathDescription": "Step 1: ×3 = 21; Step 2: ×4 = 84; Step 3: +1 = 85; Step 4: +4 = 89; Step 5: +4 = 93"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 6. Follow the path: ×4 → +7 → -21 → +4 → +8. What is the final value?",
                "answer": "22",
                "startValue": 6,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 24
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 31
                    },
                    {
                        "op": "-",
                        "operand": 21,
                        "result": 10
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 14
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 22
                    }
                ],
                "finalValue": 22,
                "pathDescription": "Step 1: ×4 = 24; Step 2: +7 = 31; Step 3: -21 = 10; Step 4: +4 = 14; Step 5: +8 = 22"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 5. Follow the path: +9 → ×4 → +3 → -15 → -28. What is the final value?",
                "answer": "16",
                "startValue": 5,
                "steps": [
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 14
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 56
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 59
                    },
                    {
                        "op": "-",
                        "operand": 15,
                        "result": 44
                    },
                    {
                        "op": "-",
                        "operand": 28,
                        "result": 16
                    }
                ],
                "finalValue": 16,
                "pathDescription": "Step 1: +9 = 14; Step 2: ×4 = 56; Step 3: +3 = 59; Step 4: -15 = 44; Step 5: -28 = 16"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 8. Follow the path: ×2 → ×4 → +3 → ×3 → ×4. What is the final value?",
                "answer": "804",
                "startValue": 8,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 16
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 64
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 67
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 201
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 804
                    }
                ],
                "finalValue": 804,
                "pathDescription": "Step 1: ×2 = 16; Step 2: ×4 = 64; Step 3: +3 = 67; Step 4: ×3 = 201; Step 5: ×4 = 804"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 3. Follow the path: ×3 → ×2 → +10 → -18 → -4. What is the final value?",
                "answer": "6",
                "startValue": 3,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 9
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 18
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 28
                    },
                    {
                        "op": "-",
                        "operand": 18,
                        "result": 10
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 6
                    }
                ],
                "finalValue": 6,
                "pathDescription": "Step 1: ×3 = 9; Step 2: ×2 = 18; Step 3: +10 = 28; Step 4: -18 = 10; Step 5: -4 = 6"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 2. Follow the path: +4 → +6 → +8 → +4 → -10. What is the final value?",
                "answer": "14",
                "startValue": 2,
                "steps": [
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 6
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 12
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 20
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 24
                    },
                    {
                        "op": "-",
                        "operand": 10,
                        "result": 14
                    }
                ],
                "finalValue": 14,
                "pathDescription": "Step 1: +4 = 6; Step 2: +6 = 12; Step 3: +8 = 20; Step 4: +4 = 24; Step 5: -10 = 14"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 9. Follow the path: -8 → -1 → +3 → ×2 → -3. What is the final value?",
                "answer": "3",
                "startValue": 9,
                "steps": [
                    {
                        "op": "-",
                        "operand": 8,
                        "result": 1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 3
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 6
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 3
                    }
                ],
                "finalValue": 3,
                "pathDescription": "Step 1: -8 = 1; Step 2: -1 = 0; Step 3: +3 = 3; Step 4: ×2 = 6; Step 5: -3 = 3"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 7. Follow the path: +6 → ×4 → -15 → -1 → +5. What is the final value?",
                "answer": "41",
                "startValue": 7,
                "steps": [
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 13
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 52
                    },
                    {
                        "op": "-",
                        "operand": 15,
                        "result": 37
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 36
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 41
                    }
                ],
                "finalValue": 41,
                "pathDescription": "Step 1: +6 = 13; Step 2: ×4 = 52; Step 3: -15 = 37; Step 4: -1 = 36; Step 5: +5 = 41"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}