B Set 79 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: +9 → +6 → +10 → ×3 → -2. What is the final value?",
                "answer": "85",
                "startValue": 4,
                "steps": [
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 13
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 19
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 29
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 87
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 85
                    }
                ],
                "finalValue": 85,
                "pathDescription": "Step 1: +9 = 13; Step 2: +6 = 19; Step 3: +10 = 29; Step 4: ×3 = 87; Step 5: -2 = 85"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 6. Follow the path: +5 → ×4 → ×4 → +5 → -78. What is the final value?",
                "answer": "103",
                "startValue": 6,
                "steps": [
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 11
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 44
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 176
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 181
                    },
                    {
                        "op": "-",
                        "operand": 78,
                        "result": 103
                    }
                ],
                "finalValue": 103,
                "pathDescription": "Step 1: +5 = 11; Step 2: ×4 = 44; Step 3: ×4 = 176; Step 4: +5 = 181; Step 5: -78 = 103"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 4. Follow the path: -3 → +1 → ×4 → ×4 → +9. What is the final value?",
                "answer": "41",
                "startValue": 4,
                "steps": [
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 2
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 8
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 32
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 41
                    }
                ],
                "finalValue": 41,
                "pathDescription": "Step 1: -3 = 1; Step 2: +1 = 2; Step 3: ×4 = 8; Step 4: ×4 = 32; Step 5: +9 = 41"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 2. Follow the path: +6 → ×3 → +9 → -21 → +10. What is the final value?",
                "answer": "22",
                "startValue": 2,
                "steps": [
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 8
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 24
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 33
                    },
                    {
                        "op": "-",
                        "operand": 21,
                        "result": 12
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 22
                    }
                ],
                "finalValue": 22,
                "pathDescription": "Step 1: +6 = 8; Step 2: ×3 = 24; Step 3: +9 = 33; Step 4: -21 = 12; Step 5: +10 = 22"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 1. Follow the path: -1 → ×2 → -1 → +3 → ×4. What is the final value?",
                "answer": "8",
                "startValue": 1,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 0
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": -1
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 2
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 8
                    }
                ],
                "finalValue": 8,
                "pathDescription": "Step 1: -1 = 0; Step 2: ×2 = 0; Step 3: -1 = -1; Step 4: +3 = 2; Step 5: ×4 = 8"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 8. Follow the path: +7 → ×3 → -1 → ×4 → -171. What is the final value?",
                "answer": "5",
                "startValue": 8,
                "steps": [
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 15
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 45
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 44
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 176
                    },
                    {
                        "op": "-",
                        "operand": 171,
                        "result": 5
                    }
                ],
                "finalValue": 5,
                "pathDescription": "Step 1: +7 = 15; Step 2: ×3 = 45; Step 3: -1 = 44; Step 4: ×4 = 176; Step 5: -171 = 5"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 4. Follow the path: +7 → +2 → ×4 → ×3 → ×4. What is the final value?",
                "answer": "624",
                "startValue": 4,
                "steps": [
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 11
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 13
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 52
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 156
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 624
                    }
                ],
                "finalValue": 624,
                "pathDescription": "Step 1: +7 = 11; Step 2: +2 = 13; Step 3: ×4 = 52; Step 4: ×3 = 156; Step 5: ×4 = 624"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 10. Follow the path: -7 → ×3 → +10 → ×3 → ×3. What is the final value?",
                "answer": "171",
                "startValue": 10,
                "steps": [
                    {
                        "op": "-",
                        "operand": 7,
                        "result": 3
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 9
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 19
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 57
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 171
                    }
                ],
                "finalValue": 171,
                "pathDescription": "Step 1: -7 = 3; Step 2: ×3 = 9; Step 3: +10 = 19; Step 4: ×3 = 57; Step 5: ×3 = 171"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}