B Set 81 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 6. Follow the path: ×2 → -4 → ×4 → -1 → +3. What is the final value?",
                "answer": "34",
                "startValue": 6,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 12
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 8
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 32
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 31
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 34
                    }
                ],
                "finalValue": 34,
                "pathDescription": "Step 1: ×2 = 12; Step 2: -4 = 8; Step 3: ×4 = 32; Step 4: -1 = 31; Step 5: +3 = 34"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 6. Follow the path: ×3 → -10 → ×3 → ×3 → ×2. What is the final value?",
                "answer": "144",
                "startValue": 6,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 18
                    },
                    {
                        "op": "-",
                        "operand": 10,
                        "result": 8
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 24
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 72
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 144
                    }
                ],
                "finalValue": 144,
                "pathDescription": "Step 1: ×3 = 18; Step 2: -10 = 8; Step 3: ×3 = 24; Step 4: ×3 = 72; Step 5: ×2 = 144"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 6. Follow the path: ×2 → ×2 → +7 → -13 → +1. What is the final value?",
                "answer": "19",
                "startValue": 6,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 12
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 24
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 31
                    },
                    {
                        "op": "-",
                        "operand": 13,
                        "result": 18
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 19
                    }
                ],
                "finalValue": 19,
                "pathDescription": "Step 1: ×2 = 12; Step 2: ×2 = 24; Step 3: +7 = 31; Step 4: -13 = 18; Step 5: +1 = 19"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 1. Follow the path: -1 → -1 → ×3 → ×3 → ×3. What is the final value?",
                "answer": "-27",
                "startValue": 1,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": -1
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": -3
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": -9
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": -27
                    }
                ],
                "finalValue": -27,
                "pathDescription": "Step 1: -1 = 0; Step 2: -1 = -1; Step 3: ×3 = -3; Step 4: ×3 = -9; Step 5: ×3 = -27"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 1. Follow the path: +10 → +4 → ×4 → +5 → +9. What is the final value?",
                "answer": "74",
                "startValue": 1,
                "steps": [
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 11
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 15
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 60
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 65
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 74
                    }
                ],
                "finalValue": 74,
                "pathDescription": "Step 1: +10 = 11; Step 2: +4 = 15; Step 3: ×4 = 60; Step 4: +5 = 65; Step 5: +9 = 74"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 8. Follow the path: -4 → -3 → +7 → -3 → +4. What is the final value?",
                "answer": "9",
                "startValue": 8,
                "steps": [
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 4
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 8
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 5
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 9
                    }
                ],
                "finalValue": 9,
                "pathDescription": "Step 1: -4 = 4; Step 2: -3 = 1; Step 3: +7 = 8; Step 4: -3 = 5; Step 5: +4 = 9"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 9. Follow the path: -8 → +8 → -7 → +9 → -4. What is the final value?",
                "answer": "7",
                "startValue": 9,
                "steps": [
                    {
                        "op": "-",
                        "operand": 8,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 9
                    },
                    {
                        "op": "-",
                        "operand": 7,
                        "result": 2
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 11
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 7
                    }
                ],
                "finalValue": 7,
                "pathDescription": "Step 1: -8 = 1; Step 2: +8 = 9; Step 3: -7 = 2; Step 4: +9 = 11; Step 5: -4 = 7"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 7. Follow the path: -6 → ×2 → +7 → ×2 → +2. What is the final value?",
                "answer": "20",
                "startValue": 7,
                "steps": [
                    {
                        "op": "-",
                        "operand": 6,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 2
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 9
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 18
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 20
                    }
                ],
                "finalValue": 20,
                "pathDescription": "Step 1: -6 = 1; Step 2: ×2 = 2; Step 3: +7 = 9; Step 4: ×2 = 18; Step 5: +2 = 20"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}