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