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