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