B Set 98 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: ×3 → -2 → +3 → +4 → +1. What is the final value?",
                "answer": "9",
                "startValue": 1,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 3
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 4
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 8
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 9
                    }
                ],
                "finalValue": 9,
                "pathDescription": "Step 1: ×3 = 3; Step 2: -2 = 1; Step 3: +3 = 4; Step 4: +4 = 8; Step 5: +1 = 9"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 8. Follow the path: -7 → ×2 → -1 → -1 → ×4. What is the final value?",
                "answer": "0",
                "startValue": 8,
                "steps": [
                    {
                        "op": "-",
                        "operand": 7,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 2
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 0
                    }
                ],
                "finalValue": 0,
                "pathDescription": "Step 1: -7 = 1; Step 2: ×2 = 2; Step 3: -1 = 1; Step 4: -1 = 0; Step 5: ×4 = 0"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 4. Follow the path: -3 → ×4 → ×2 → ×4 → +2. What is the final value?",
                "answer": "34",
                "startValue": 4,
                "steps": [
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 4
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 8
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 32
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 34
                    }
                ],
                "finalValue": 34,
                "pathDescription": "Step 1: -3 = 1; Step 2: ×4 = 4; Step 3: ×2 = 8; Step 4: ×4 = 32; Step 5: +2 = 34"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 9. Follow the path: +2 → ×3 → +4 → ×2 → ×2. What is the final value?",
                "answer": "148",
                "startValue": 9,
                "steps": [
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 11
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 33
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 37
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 74
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 148
                    }
                ],
                "finalValue": 148,
                "pathDescription": "Step 1: +2 = 11; Step 2: ×3 = 33; Step 3: +4 = 37; Step 4: ×2 = 74; Step 5: ×2 = 148"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 10. Follow the path: ×3 → ×2 → ×2 → +2 → -17. What is the final value?",
                "answer": "105",
                "startValue": 10,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 30
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 60
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 120
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 122
                    },
                    {
                        "op": "-",
                        "operand": 17,
                        "result": 105
                    }
                ],
                "finalValue": 105,
                "pathDescription": "Step 1: ×3 = 30; Step 2: ×2 = 60; Step 3: ×2 = 120; Step 4: +2 = 122; Step 5: -17 = 105"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 4. Follow the path: ×3 → -1 → ×2 → -17 → +8. What is the final value?",
                "answer": "13",
                "startValue": 4,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 12
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 11
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 22
                    },
                    {
                        "op": "-",
                        "operand": 17,
                        "result": 5
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 13
                    }
                ],
                "finalValue": 13,
                "pathDescription": "Step 1: ×3 = 12; Step 2: -1 = 11; Step 3: ×2 = 22; Step 4: -17 = 5; Step 5: +8 = 13"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 4. Follow the path: -3 → +5 → -3 → +8 → +3. What is the final value?",
                "answer": "14",
                "startValue": 4,
                "steps": [
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 6
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 3
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 11
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 14
                    }
                ],
                "finalValue": 14,
                "pathDescription": "Step 1: -3 = 1; Step 2: +5 = 6; Step 3: -3 = 3; Step 4: +8 = 11; Step 5: +3 = 14"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 4. Follow the path: ×4 → ×4 → -1 → +7 → -67. What is the final value?",
                "answer": "3",
                "startValue": 4,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 16
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 64
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 63
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 70
                    },
                    {
                        "op": "-",
                        "operand": 67,
                        "result": 3
                    }
                ],
                "finalValue": 3,
                "pathDescription": "Step 1: ×4 = 16; Step 2: ×4 = 64; Step 3: -1 = 63; Step 4: +7 = 70; Step 5: -67 = 3"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}