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