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