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