B Set 38 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": "medium",
        "config": {
            "difficulty": "medium",
            "maxNumber": 10
        },
        "problems": [
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 9. Follow the path: +10 → +8 → ×4 → +2. What is the final value?",
                "answer": "110",
                "startValue": 9,
                "steps": [
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 19
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 27
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 108
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 110
                    }
                ],
                "finalValue": 110,
                "pathDescription": "Step 1: +10 = 19; Step 2: +8 = 27; Step 3: ×4 = 108; Step 4: +2 = 110"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 1. Follow the path: ×3 → ×4 → ×4 → ×2. What is the final value?",
                "answer": "96",
                "startValue": 1,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 3
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 12
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 48
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 96
                    }
                ],
                "finalValue": 96,
                "pathDescription": "Step 1: ×3 = 3; Step 2: ×4 = 12; Step 3: ×4 = 48; Step 4: ×2 = 96"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 2. Follow the path: ×3 → -5 → -1 → ×2. What is the final value?",
                "answer": "0",
                "startValue": 2,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 6
                    },
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 0
                    }
                ],
                "finalValue": 0,
                "pathDescription": "Step 1: ×3 = 6; Step 2: -5 = 1; Step 3: -1 = 0; Step 4: ×2 = 0"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 4. Follow the path: ×2 → +5 → -1 → ×4. What is the final value?",
                "answer": "48",
                "startValue": 4,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 8
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 13
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 12
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 48
                    }
                ],
                "finalValue": 48,
                "pathDescription": "Step 1: ×2 = 8; Step 2: +5 = 13; Step 3: -1 = 12; Step 4: ×4 = 48"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 5. Follow the path: -2 → +8 → -7 → ×3. What is the final value?",
                "answer": "12",
                "startValue": 5,
                "steps": [
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 3
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 11
                    },
                    {
                        "op": "-",
                        "operand": 7,
                        "result": 4
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 12
                    }
                ],
                "finalValue": 12,
                "pathDescription": "Step 1: -2 = 3; Step 2: +8 = 11; Step 3: -7 = 4; Step 4: ×3 = 12"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 7. Follow the path: -4 → -2 → -1 → +2. What is the final value?",
                "answer": "2",
                "startValue": 7,
                "steps": [
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 3
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 2
                    }
                ],
                "finalValue": 2,
                "pathDescription": "Step 1: -4 = 3; Step 2: -2 = 1; Step 3: -1 = 0; Step 4: +2 = 2"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 1. Follow the path: ×2 → +7 → -5 → +6. What is the final value?",
                "answer": "10",
                "startValue": 1,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 2
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 9
                    },
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 4
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 10
                    }
                ],
                "finalValue": 10,
                "pathDescription": "Step 1: ×2 = 2; Step 2: +7 = 9; Step 3: -5 = 4; Step 4: +6 = 10"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 3. Follow the path: +5 → +6 → -9 → ×3. What is the final value?",
                "answer": "15",
                "startValue": 3,
                "steps": [
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 8
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 14
                    },
                    {
                        "op": "-",
                        "operand": 9,
                        "result": 5
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 15
                    }
                ],
                "finalValue": 15,
                "pathDescription": "Step 1: +5 = 8; Step 2: +6 = 14; Step 3: -9 = 5; Step 4: ×3 = 15"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}