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