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