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