B Set 71 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 1. Follow the path: +5 → +10 → -14 → ×3 → ×2. What is the final value?",
                "answer": "12",
                "startValue": 1,
                "steps": [
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 6
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 16
                    },
                    {
                        "op": "-",
                        "operand": 14,
                        "result": 2
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 6
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 12
                    }
                ],
                "finalValue": 12,
                "pathDescription": "Step 1: +5 = 6; Step 2: +10 = 16; Step 3: -14 = 2; Step 4: ×3 = 6; Step 5: ×2 = 12"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 5. Follow the path: +3 → -5 → ×2 → -5 → +8. What is the final value?",
                "answer": "9",
                "startValue": 5,
                "steps": [
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 8
                    },
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 3
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 6
                    },
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 9
                    }
                ],
                "finalValue": 9,
                "pathDescription": "Step 1: +3 = 8; Step 2: -5 = 3; Step 3: ×2 = 6; Step 4: -5 = 1; Step 5: +8 = 9"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 9. Follow the path: ×3 → +4 → -19 → -1 → -1. What is the final value?",
                "answer": "10",
                "startValue": 9,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 27
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 31
                    },
                    {
                        "op": "-",
                        "operand": 19,
                        "result": 12
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 11
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 10
                    }
                ],
                "finalValue": 10,
                "pathDescription": "Step 1: ×3 = 27; Step 2: +4 = 31; Step 3: -19 = 12; Step 4: -1 = 11; Step 5: -1 = 10"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 6. Follow the path: ×2 → +9 → ×4 → +3 → ×2. What is the final value?",
                "answer": "174",
                "startValue": 6,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 12
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 21
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 84
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 87
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 174
                    }
                ],
                "finalValue": 174,
                "pathDescription": "Step 1: ×2 = 12; Step 2: +9 = 21; Step 3: ×4 = 84; Step 4: +3 = 87; Step 5: ×2 = 174"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 8. Follow the path: +6 → -10 → +2 → -1 → -3. What is the final value?",
                "answer": "2",
                "startValue": 8,
                "steps": [
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 14
                    },
                    {
                        "op": "-",
                        "operand": 10,
                        "result": 4
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 6
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 5
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 2
                    }
                ],
                "finalValue": 2,
                "pathDescription": "Step 1: +6 = 14; Step 2: -10 = 4; Step 3: +2 = 6; Step 4: -1 = 5; Step 5: -3 = 2"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 6. Follow the path: -4 → ×2 → -3 → ×3 → +6. What is the final value?",
                "answer": "9",
                "startValue": 6,
                "steps": [
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 2
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 4
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 3
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 9
                    }
                ],
                "finalValue": 9,
                "pathDescription": "Step 1: -4 = 2; Step 2: ×2 = 4; Step 3: -3 = 1; Step 4: ×3 = 3; Step 5: +6 = 9"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 4. Follow the path: ×3 → ×4 → -26 → -1 → -19. What is the final value?",
                "answer": "2",
                "startValue": 4,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 12
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 48
                    },
                    {
                        "op": "-",
                        "operand": 26,
                        "result": 22
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 21
                    },
                    {
                        "op": "-",
                        "operand": 19,
                        "result": 2
                    }
                ],
                "finalValue": 2,
                "pathDescription": "Step 1: ×3 = 12; Step 2: ×4 = 48; Step 3: -26 = 22; Step 4: -1 = 21; Step 5: -19 = 2"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 4. Follow the path: -3 → -1 → +9 → ×3 → ×2. What is the final value?",
                "answer": "54",
                "startValue": 4,
                "steps": [
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 9
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 27
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 54
                    }
                ],
                "finalValue": 54,
                "pathDescription": "Step 1: -3 = 1; Step 2: -1 = 0; Step 3: +9 = 9; Step 4: ×3 = 27; Step 5: ×2 = 54"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}