B Set 79 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: +3 → -4 → ×4 → +9 → +6. What is the final value?",
                "answer": "19",
                "startValue": 2,
                "steps": [
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 5
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 4
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 13
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 19
                    }
                ],
                "finalValue": 19,
                "pathDescription": "Step 1: +3 = 5; Step 2: -4 = 1; Step 3: ×4 = 4; Step 4: +9 = 13; Step 5: +6 = 19"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 3. Follow the path: +1 → -3 → ×4 → +4 → -4. What is the final value?",
                "answer": "4",
                "startValue": 3,
                "steps": [
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 4
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 4
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 8
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 4
                    }
                ],
                "finalValue": 4,
                "pathDescription": "Step 1: +1 = 4; Step 2: -3 = 1; Step 3: ×4 = 4; Step 4: +4 = 8; Step 5: -4 = 4"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 3. Follow the path: +7 → -3 → ×2 → ×3 → -12. What is the final value?",
                "answer": "30",
                "startValue": 3,
                "steps": [
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 10
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 7
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 14
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 42
                    },
                    {
                        "op": "-",
                        "operand": 12,
                        "result": 30
                    }
                ],
                "finalValue": 30,
                "pathDescription": "Step 1: +7 = 10; Step 2: -3 = 7; Step 3: ×2 = 14; Step 4: ×3 = 42; Step 5: -12 = 30"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 7. Follow the path: +10 → -5 → +3 → ×2 → +8. What is the final value?",
                "answer": "38",
                "startValue": 7,
                "steps": [
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 17
                    },
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 12
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 15
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 30
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 38
                    }
                ],
                "finalValue": 38,
                "pathDescription": "Step 1: +10 = 17; Step 2: -5 = 12; Step 3: +3 = 15; Step 4: ×2 = 30; Step 5: +8 = 38"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 9. Follow the path: ×4 → +4 → -33 → +8 → +1. What is the final value?",
                "answer": "16",
                "startValue": 9,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 36
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 40
                    },
                    {
                        "op": "-",
                        "operand": 33,
                        "result": 7
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 15
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 16
                    }
                ],
                "finalValue": 16,
                "pathDescription": "Step 1: ×4 = 36; Step 2: +4 = 40; Step 3: -33 = 7; Step 4: +8 = 15; Step 5: +1 = 16"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 2. Follow the path: +2 → +9 → ×3 → ×2 → ×4. What is the final value?",
                "answer": "312",
                "startValue": 2,
                "steps": [
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 4
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 13
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 39
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 78
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 312
                    }
                ],
                "finalValue": 312,
                "pathDescription": "Step 1: +2 = 4; Step 2: +9 = 13; Step 3: ×3 = 39; Step 4: ×2 = 78; Step 5: ×4 = 312"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 7. Follow the path: ×2 → -7 → -2 → -3 → +5. What is the final value?",
                "answer": "7",
                "startValue": 7,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 14
                    },
                    {
                        "op": "-",
                        "operand": 7,
                        "result": 7
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 5
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 2
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 7
                    }
                ],
                "finalValue": 7,
                "pathDescription": "Step 1: ×2 = 14; Step 2: -7 = 7; Step 3: -2 = 5; Step 4: -3 = 2; Step 5: +5 = 7"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 4. Follow the path: ×4 → -2 → ×3 → -16 → ×3. What is the final value?",
                "answer": "78",
                "startValue": 4,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 16
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 14
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 42
                    },
                    {
                        "op": "-",
                        "operand": 16,
                        "result": 26
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 78
                    }
                ],
                "finalValue": 78,
                "pathDescription": "Step 1: ×4 = 16; Step 2: -2 = 14; Step 3: ×3 = 42; Step 4: -16 = 26; Step 5: ×3 = 78"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}