B Set 95 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 3. Follow the path: -1 → +2 → -3 → -1 → ×3. What is the final value?",
                "answer": "0",
                "startValue": 3,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 2
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 4
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 0
                    }
                ],
                "finalValue": 0,
                "pathDescription": "Step 1: -1 = 2; Step 2: +2 = 4; Step 3: -3 = 1; Step 4: -1 = 0; Step 5: ×3 = 0"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 3. Follow the path: ×4 → ×4 → ×4 → +5 → -106. What is the final value?",
                "answer": "91",
                "startValue": 3,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 12
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 48
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 192
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 197
                    },
                    {
                        "op": "-",
                        "operand": 106,
                        "result": 91
                    }
                ],
                "finalValue": 91,
                "pathDescription": "Step 1: ×4 = 12; Step 2: ×4 = 48; Step 3: ×4 = 192; Step 4: +5 = 197; Step 5: -106 = 91"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 4. Follow the path: -2 → +6 → ×4 → ×4 → +3. What is the final value?",
                "answer": "131",
                "startValue": 4,
                "steps": [
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 2
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 8
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 32
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 128
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 131
                    }
                ],
                "finalValue": 131,
                "pathDescription": "Step 1: -2 = 2; Step 2: +6 = 8; Step 3: ×4 = 32; Step 4: ×4 = 128; Step 5: +3 = 131"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 7. Follow the path: ×2 → ×2 → -15 → ×2 → +1. What is the final value?",
                "answer": "27",
                "startValue": 7,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 14
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 28
                    },
                    {
                        "op": "-",
                        "operand": 15,
                        "result": 13
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 26
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 27
                    }
                ],
                "finalValue": 27,
                "pathDescription": "Step 1: ×2 = 14; Step 2: ×2 = 28; Step 3: -15 = 13; Step 4: ×2 = 26; Step 5: +1 = 27"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 7. Follow the path: ×2 → -10 → ×3 → +3 → -5. What is the final value?",
                "answer": "10",
                "startValue": 7,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 14
                    },
                    {
                        "op": "-",
                        "operand": 10,
                        "result": 4
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 12
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 15
                    },
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 10
                    }
                ],
                "finalValue": 10,
                "pathDescription": "Step 1: ×2 = 14; Step 2: -10 = 4; Step 3: ×3 = 12; Step 4: +3 = 15; Step 5: -5 = 10"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 5. Follow the path: ×4 → -11 → +4 → ×2 → -16. What is the final value?",
                "answer": "10",
                "startValue": 5,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 20
                    },
                    {
                        "op": "-",
                        "operand": 11,
                        "result": 9
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 13
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 26
                    },
                    {
                        "op": "-",
                        "operand": 16,
                        "result": 10
                    }
                ],
                "finalValue": 10,
                "pathDescription": "Step 1: ×4 = 20; Step 2: -11 = 9; Step 3: +4 = 13; Step 4: ×2 = 26; Step 5: -16 = 10"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 6. Follow the path: +8 → -8 → ×2 → ×3 → ×3. What is the final value?",
                "answer": "108",
                "startValue": 6,
                "steps": [
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 14
                    },
                    {
                        "op": "-",
                        "operand": 8,
                        "result": 6
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 12
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 36
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 108
                    }
                ],
                "finalValue": 108,
                "pathDescription": "Step 1: +8 = 14; Step 2: -8 = 6; Step 3: ×2 = 12; Step 4: ×3 = 36; Step 5: ×3 = 108"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 8. Follow the path: ×3 → -18 → +5 → +9 → +3. What is the final value?",
                "answer": "23",
                "startValue": 8,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 24
                    },
                    {
                        "op": "-",
                        "operand": 18,
                        "result": 6
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 11
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 20
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 23
                    }
                ],
                "finalValue": 23,
                "pathDescription": "Step 1: ×3 = 24; Step 2: -18 = 6; Step 3: +5 = 11; Step 4: +9 = 20; Step 5: +3 = 23"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}