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