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