B Set 42 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: -1 → ×4 → ×4 → +4 → +10. What is the final value?",
                "answer": "30",
                "startValue": 2,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 4
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 16
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 20
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 30
                    }
                ],
                "finalValue": 30,
                "pathDescription": "Step 1: -1 = 1; Step 2: ×4 = 4; Step 3: ×4 = 16; Step 4: +4 = 20; Step 5: +10 = 30"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 8. Follow the path: ×2 → ×4 → ×2 → +4 → -92. What is the final value?",
                "answer": "40",
                "startValue": 8,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 16
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 64
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 128
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 132
                    },
                    {
                        "op": "-",
                        "operand": 92,
                        "result": 40
                    }
                ],
                "finalValue": 40,
                "pathDescription": "Step 1: ×2 = 16; Step 2: ×4 = 64; Step 3: ×2 = 128; Step 4: +4 = 132; Step 5: -92 = 40"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 2. Follow the path: ×2 → ×2 → -2 → ×3 → +6. What is the final value?",
                "answer": "24",
                "startValue": 2,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 4
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 8
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 6
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 18
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 24
                    }
                ],
                "finalValue": 24,
                "pathDescription": "Step 1: ×2 = 4; Step 2: ×2 = 8; Step 3: -2 = 6; Step 4: ×3 = 18; Step 5: +6 = 24"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 4. Follow the path: ×3 → +7 → -14 → -4 → ×2. What is the final value?",
                "answer": "2",
                "startValue": 4,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 12
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 19
                    },
                    {
                        "op": "-",
                        "operand": 14,
                        "result": 5
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 2
                    }
                ],
                "finalValue": 2,
                "pathDescription": "Step 1: ×3 = 12; Step 2: +7 = 19; Step 3: -14 = 5; Step 4: -4 = 1; Step 5: ×2 = 2"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 5. Follow the path: +6 → ×2 → +8 → ×2 → -24. What is the final value?",
                "answer": "36",
                "startValue": 5,
                "steps": [
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 11
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 22
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 30
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 60
                    },
                    {
                        "op": "-",
                        "operand": 24,
                        "result": 36
                    }
                ],
                "finalValue": 36,
                "pathDescription": "Step 1: +6 = 11; Step 2: ×2 = 22; Step 3: +8 = 30; Step 4: ×2 = 60; Step 5: -24 = 36"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 9. Follow the path: ×4 → +6 → ×2 → ×3 → -155. What is the final value?",
                "answer": "97",
                "startValue": 9,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 36
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 42
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 84
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 252
                    },
                    {
                        "op": "-",
                        "operand": 155,
                        "result": 97
                    }
                ],
                "finalValue": 97,
                "pathDescription": "Step 1: ×4 = 36; Step 2: +6 = 42; Step 3: ×2 = 84; Step 4: ×3 = 252; Step 5: -155 = 97"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 9. Follow the path: -1 → +9 → -9 → +3 → +2. What is the final value?",
                "answer": "13",
                "startValue": 9,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 8
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 17
                    },
                    {
                        "op": "-",
                        "operand": 9,
                        "result": 8
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 11
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 13
                    }
                ],
                "finalValue": 13,
                "pathDescription": "Step 1: -1 = 8; Step 2: +9 = 17; Step 3: -9 = 8; Step 4: +3 = 11; Step 5: +2 = 13"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 8. Follow the path: -6 → ×2 → -1 → -1 → -1. What is the final value?",
                "answer": "1",
                "startValue": 8,
                "steps": [
                    {
                        "op": "-",
                        "operand": 6,
                        "result": 2
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 4
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 3
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 2
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 1
                    }
                ],
                "finalValue": 1,
                "pathDescription": "Step 1: -6 = 2; Step 2: ×2 = 4; Step 3: -1 = 3; Step 4: -1 = 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"
}