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