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