B Set 63 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 4. Follow the path: +8 → ×4 → ×3 → +1 → ×4. What is the final value?",
                "answer": "580",
                "startValue": 4,
                "steps": [
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 12
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 48
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 144
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 145
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 580
                    }
                ],
                "finalValue": 580,
                "pathDescription": "Step 1: +8 = 12; Step 2: ×4 = 48; Step 3: ×3 = 144; Step 4: +1 = 145; Step 5: ×4 = 580"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 8. Follow the path: +3 → ×3 → +3 → +7 → -22. What is the final value?",
                "answer": "21",
                "startValue": 8,
                "steps": [
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 11
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 33
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 36
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 43
                    },
                    {
                        "op": "-",
                        "operand": 22,
                        "result": 21
                    }
                ],
                "finalValue": 21,
                "pathDescription": "Step 1: +3 = 11; Step 2: ×3 = 33; Step 3: +3 = 36; Step 4: +7 = 43; Step 5: -22 = 21"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 7. Follow the path: ×3 → ×4 → +3 → ×4 → ×3. What is the final value?",
                "answer": "1044",
                "startValue": 7,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 21
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 84
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 87
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 348
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 1044
                    }
                ],
                "finalValue": 1044,
                "pathDescription": "Step 1: ×3 = 21; Step 2: ×4 = 84; Step 3: +3 = 87; Step 4: ×4 = 348; Step 5: ×3 = 1044"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 5. Follow the path: -3 → ×4 → -4 → +3 → ×4. What is the final value?",
                "answer": "28",
                "startValue": 5,
                "steps": [
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 2
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 8
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 4
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 7
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 28
                    }
                ],
                "finalValue": 28,
                "pathDescription": "Step 1: -3 = 2; Step 2: ×4 = 8; Step 3: -4 = 4; Step 4: +3 = 7; Step 5: ×4 = 28"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 9. Follow the path: ×4 → -14 → -2 → ×2 → +1. What is the final value?",
                "answer": "41",
                "startValue": 9,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 36
                    },
                    {
                        "op": "-",
                        "operand": 14,
                        "result": 22
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 20
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 40
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 41
                    }
                ],
                "finalValue": 41,
                "pathDescription": "Step 1: ×4 = 36; Step 2: -14 = 22; Step 3: -2 = 20; Step 4: ×2 = 40; Step 5: +1 = 41"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 1. Follow the path: +6 → +10 → -9 → -5 → +4. What is the final value?",
                "answer": "7",
                "startValue": 1,
                "steps": [
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 7
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 17
                    },
                    {
                        "op": "-",
                        "operand": 9,
                        "result": 8
                    },
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 3
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 7
                    }
                ],
                "finalValue": 7,
                "pathDescription": "Step 1: +6 = 7; Step 2: +10 = 17; Step 3: -9 = 8; Step 4: -5 = 3; Step 5: +4 = 7"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 9. Follow the path: +4 → ×4 → -23 → +6 → -10. What is the final value?",
                "answer": "25",
                "startValue": 9,
                "steps": [
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 13
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 52
                    },
                    {
                        "op": "-",
                        "operand": 23,
                        "result": 29
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 35
                    },
                    {
                        "op": "-",
                        "operand": 10,
                        "result": 25
                    }
                ],
                "finalValue": 25,
                "pathDescription": "Step 1: +4 = 13; Step 2: ×4 = 52; Step 3: -23 = 29; Step 4: +6 = 35; Step 5: -10 = 25"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 2. Follow the path: -1 → -1 → ×3 → -1 → -1. What is the final value?",
                "answer": "-2",
                "startValue": 2,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 0
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": -1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": -2
                    }
                ],
                "finalValue": -2,
                "pathDescription": "Step 1: -1 = 1; Step 2: -1 = 0; Step 3: ×3 = 0; Step 4: -1 = -1; Step 5: -1 = -2"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}