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