B Set 74 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": "medium",
        "config": {
            "difficulty": "medium",
            "maxNumber": 10
        },
        "problems": [
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 1. Follow the path: ×2 → ×2 → ×2 → ×3. What is the final value?",
                "answer": "24",
                "startValue": 1,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 2
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 4
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 8
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 24
                    }
                ],
                "finalValue": 24,
                "pathDescription": "Step 1: ×2 = 2; Step 2: ×2 = 4; Step 3: ×2 = 8; Step 4: ×3 = 24"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 5. Follow the path: ×2 → +5 → +8 → ×4. What is the final value?",
                "answer": "92",
                "startValue": 5,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 10
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 15
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 23
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 92
                    }
                ],
                "finalValue": 92,
                "pathDescription": "Step 1: ×2 = 10; Step 2: +5 = 15; Step 3: +8 = 23; Step 4: ×4 = 92"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 9. Follow the path: +7 → -13 → ×2 → -2. What is the final value?",
                "answer": "4",
                "startValue": 9,
                "steps": [
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 16
                    },
                    {
                        "op": "-",
                        "operand": 13,
                        "result": 3
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 6
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 4
                    }
                ],
                "finalValue": 4,
                "pathDescription": "Step 1: +7 = 16; Step 2: -13 = 3; Step 3: ×2 = 6; Step 4: -2 = 4"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 7. Follow the path: ×2 → -13 → ×3 → -2. What is the final value?",
                "answer": "1",
                "startValue": 7,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 14
                    },
                    {
                        "op": "-",
                        "operand": 13,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 3
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 1
                    }
                ],
                "finalValue": 1,
                "pathDescription": "Step 1: ×2 = 14; Step 2: -13 = 1; Step 3: ×3 = 3; Step 4: -2 = 1"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 7. Follow the path: ×3 → -14 → ×4 → +8. What is the final value?",
                "answer": "36",
                "startValue": 7,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 21
                    },
                    {
                        "op": "-",
                        "operand": 14,
                        "result": 7
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 28
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 36
                    }
                ],
                "finalValue": 36,
                "pathDescription": "Step 1: ×3 = 21; Step 2: -14 = 7; Step 3: ×4 = 28; Step 4: +8 = 36"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 7. Follow the path: ×4 → -24 → -2 → ×2. What is the final value?",
                "answer": "4",
                "startValue": 7,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 28
                    },
                    {
                        "op": "-",
                        "operand": 24,
                        "result": 4
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 2
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 4
                    }
                ],
                "finalValue": 4,
                "pathDescription": "Step 1: ×4 = 28; Step 2: -24 = 4; Step 3: -2 = 2; Step 4: ×2 = 4"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 7. Follow the path: +1 → +7 → -5 → -1. What is the final value?",
                "answer": "9",
                "startValue": 7,
                "steps": [
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 8
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 15
                    },
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 10
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 9
                    }
                ],
                "finalValue": 9,
                "pathDescription": "Step 1: +1 = 8; Step 2: +7 = 15; Step 3: -5 = 10; Step 4: -1 = 9"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 5. Follow the path: +7 → ×3 → -13 → ×2. What is the final value?",
                "answer": "46",
                "startValue": 5,
                "steps": [
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 12
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 36
                    },
                    {
                        "op": "-",
                        "operand": 13,
                        "result": 23
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 46
                    }
                ],
                "finalValue": 46,
                "pathDescription": "Step 1: +7 = 12; Step 2: ×3 = 36; Step 3: -13 = 23; Step 4: ×2 = 46"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}