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