B Set 15 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 10. Follow the path: ×2 → -3 → ×4 → ×3 → ×3. What is the final value?",
                "answer": "612",
                "startValue": 10,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 20
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 17
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 68
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 204
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 612
                    }
                ],
                "finalValue": 612,
                "pathDescription": "Step 1: ×2 = 20; Step 2: -3 = 17; Step 3: ×4 = 68; Step 4: ×3 = 204; Step 5: ×3 = 612"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 8. Follow the path: +3 → ×4 → +7 → -9 → -5. What is the final value?",
                "answer": "37",
                "startValue": 8,
                "steps": [
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 11
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 44
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 51
                    },
                    {
                        "op": "-",
                        "operand": 9,
                        "result": 42
                    },
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 37
                    }
                ],
                "finalValue": 37,
                "pathDescription": "Step 1: +3 = 11; Step 2: ×4 = 44; Step 3: +7 = 51; Step 4: -9 = 42; Step 5: -5 = 37"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 2. Follow the path: ×4 → +4 → +9 → -17 → -2. What is the final value?",
                "answer": "2",
                "startValue": 2,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 8
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 12
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 21
                    },
                    {
                        "op": "-",
                        "operand": 17,
                        "result": 4
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 2
                    }
                ],
                "finalValue": 2,
                "pathDescription": "Step 1: ×4 = 8; Step 2: +4 = 12; Step 3: +9 = 21; Step 4: -17 = 4; Step 5: -2 = 2"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 6. Follow the path: -1 → ×2 → ×3 → ×4 → ×3. What is the final value?",
                "answer": "360",
                "startValue": 6,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 5
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 10
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 30
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 120
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 360
                    }
                ],
                "finalValue": 360,
                "pathDescription": "Step 1: -1 = 5; Step 2: ×2 = 10; Step 3: ×3 = 30; Step 4: ×4 = 120; Step 5: ×3 = 360"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 3. Follow the path: +2 → +9 → ×3 → +5 → +10. What is the final value?",
                "answer": "57",
                "startValue": 3,
                "steps": [
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 5
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 14
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 42
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 47
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 57
                    }
                ],
                "finalValue": 57,
                "pathDescription": "Step 1: +2 = 5; Step 2: +9 = 14; Step 3: ×3 = 42; Step 4: +5 = 47; Step 5: +10 = 57"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 7. Follow the path: +5 → +4 → -13 → -2 → -1. What is the final value?",
                "answer": "0",
                "startValue": 7,
                "steps": [
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 12
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 16
                    },
                    {
                        "op": "-",
                        "operand": 13,
                        "result": 3
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    }
                ],
                "finalValue": 0,
                "pathDescription": "Step 1: +5 = 12; Step 2: +4 = 16; Step 3: -13 = 3; Step 4: -2 = 1; Step 5: -1 = 0"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 1. Follow the path: ×3 → -2 → ×2 → ×4 → -3. What is the final value?",
                "answer": "5",
                "startValue": 1,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 3
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 2
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 8
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 5
                    }
                ],
                "finalValue": 5,
                "pathDescription": "Step 1: ×3 = 3; Step 2: -2 = 1; Step 3: ×2 = 2; Step 4: ×4 = 8; Step 5: -3 = 5"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 3. Follow the path: -2 → -1 → +5 → +1 → +2. What is the final value?",
                "answer": "8",
                "startValue": 3,
                "steps": [
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 5
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 6
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 8
                    }
                ],
                "finalValue": 8,
                "pathDescription": "Step 1: -2 = 1; Step 2: -1 = 0; Step 3: +5 = 5; Step 4: +1 = 6; Step 5: +2 = 8"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}