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