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