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