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