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