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