B Set 94 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 1. Follow the path: +1 → +3 → +7 → -8 → +3. What is the final value?",
                "answer": "7",
                "startValue": 1,
                "steps": [
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 2
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 5
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 12
                    },
                    {
                        "op": "-",
                        "operand": 8,
                        "result": 4
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 7
                    }
                ],
                "finalValue": 7,
                "pathDescription": "Step 1: +1 = 2; Step 2: +3 = 5; Step 3: +7 = 12; Step 4: -8 = 4; Step 5: +3 = 7"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 7. Follow the path: ×2 → ×4 → ×3 → +4 → ×3. What is the final value?",
                "answer": "516",
                "startValue": 7,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 14
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 56
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 168
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 172
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 516
                    }
                ],
                "finalValue": 516,
                "pathDescription": "Step 1: ×2 = 14; Step 2: ×4 = 56; Step 3: ×3 = 168; Step 4: +4 = 172; Step 5: ×3 = 516"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 4. Follow the path: +5 → +10 → ×2 → +5 → +7. What is the final value?",
                "answer": "50",
                "startValue": 4,
                "steps": [
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 9
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 19
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 38
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 43
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 50
                    }
                ],
                "finalValue": 50,
                "pathDescription": "Step 1: +5 = 9; Step 2: +10 = 19; Step 3: ×2 = 38; Step 4: +5 = 43; Step 5: +7 = 50"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 9. Follow the path: -4 → ×4 → -11 → +3 → -9. What is the final value?",
                "answer": "3",
                "startValue": 9,
                "steps": [
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 5
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 20
                    },
                    {
                        "op": "-",
                        "operand": 11,
                        "result": 9
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 12
                    },
                    {
                        "op": "-",
                        "operand": 9,
                        "result": 3
                    }
                ],
                "finalValue": 3,
                "pathDescription": "Step 1: -4 = 5; Step 2: ×4 = 20; Step 3: -11 = 9; Step 4: +3 = 12; Step 5: -9 = 3"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 5. Follow the path: ×3 → -7 → ×3 → ×4 → +5. What is the final value?",
                "answer": "101",
                "startValue": 5,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 15
                    },
                    {
                        "op": "-",
                        "operand": 7,
                        "result": 8
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 24
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 96
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 101
                    }
                ],
                "finalValue": 101,
                "pathDescription": "Step 1: ×3 = 15; Step 2: -7 = 8; Step 3: ×3 = 24; Step 4: ×4 = 96; Step 5: +5 = 101"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 3. Follow the path: +4 → -6 → +1 → ×2 → ×4. What is the final value?",
                "answer": "16",
                "startValue": 3,
                "steps": [
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 7
                    },
                    {
                        "op": "-",
                        "operand": 6,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 2
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 4
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 16
                    }
                ],
                "finalValue": 16,
                "pathDescription": "Step 1: +4 = 7; Step 2: -6 = 1; Step 3: +1 = 2; Step 4: ×2 = 4; Step 5: ×4 = 16"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 7. Follow the path: -5 → ×2 → ×4 → -6 → +7. What is the final value?",
                "answer": "17",
                "startValue": 7,
                "steps": [
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 2
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 4
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 16
                    },
                    {
                        "op": "-",
                        "operand": 6,
                        "result": 10
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 17
                    }
                ],
                "finalValue": 17,
                "pathDescription": "Step 1: -5 = 2; Step 2: ×2 = 4; Step 3: ×4 = 16; Step 4: -6 = 10; Step 5: +7 = 17"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 4. Follow the path: +9 → +6 → -9 → +4 → +9. What is the final value?",
                "answer": "23",
                "startValue": 4,
                "steps": [
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 13
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 19
                    },
                    {
                        "op": "-",
                        "operand": 9,
                        "result": 10
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 14
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 23
                    }
                ],
                "finalValue": 23,
                "pathDescription": "Step 1: +9 = 13; Step 2: +6 = 19; Step 3: -9 = 10; Step 4: +4 = 14; Step 5: +9 = 23"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}