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