B Set 59 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": "medium",
        "config": {
            "difficulty": "medium",
            "maxNumber": 10
        },
        "problems": [
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 7. Follow the path: ×3 → -8 → ×4 → ×2. What is the final value?",
                "answer": "104",
                "startValue": 7,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 21
                    },
                    {
                        "op": "-",
                        "operand": 8,
                        "result": 13
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 52
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 104
                    }
                ],
                "finalValue": 104,
                "pathDescription": "Step 1: ×3 = 21; Step 2: -8 = 13; Step 3: ×4 = 52; Step 4: ×2 = 104"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 2. Follow the path: -1 → +9 → -8 → -1. What is the final value?",
                "answer": "1",
                "startValue": 2,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 10
                    },
                    {
                        "op": "-",
                        "operand": 8,
                        "result": 2
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 1
                    }
                ],
                "finalValue": 1,
                "pathDescription": "Step 1: -1 = 1; Step 2: +9 = 10; Step 3: -8 = 2; Step 4: -1 = 1"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 3. Follow the path: ×4 → ×2 → +3 → -10. What is the final value?",
                "answer": "17",
                "startValue": 3,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 12
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 24
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 27
                    },
                    {
                        "op": "-",
                        "operand": 10,
                        "result": 17
                    }
                ],
                "finalValue": 17,
                "pathDescription": "Step 1: ×4 = 12; Step 2: ×2 = 24; Step 3: +3 = 27; Step 4: -10 = 17"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 10. Follow the path: -6 → ×2 → -2 → ×2. What is the final value?",
                "answer": "12",
                "startValue": 10,
                "steps": [
                    {
                        "op": "-",
                        "operand": 6,
                        "result": 4
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 8
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 6
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 12
                    }
                ],
                "finalValue": 12,
                "pathDescription": "Step 1: -6 = 4; Step 2: ×2 = 8; Step 3: -2 = 6; Step 4: ×2 = 12"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 10. Follow the path: -7 → ×4 → -4 → -7. What is the final value?",
                "answer": "1",
                "startValue": 10,
                "steps": [
                    {
                        "op": "-",
                        "operand": 7,
                        "result": 3
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 12
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 8
                    },
                    {
                        "op": "-",
                        "operand": 7,
                        "result": 1
                    }
                ],
                "finalValue": 1,
                "pathDescription": "Step 1: -7 = 3; Step 2: ×4 = 12; Step 3: -4 = 8; Step 4: -7 = 1"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 10. Follow the path: -4 → -1 → ×4 → +1. What is the final value?",
                "answer": "21",
                "startValue": 10,
                "steps": [
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 6
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 5
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 20
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 21
                    }
                ],
                "finalValue": 21,
                "pathDescription": "Step 1: -4 = 6; Step 2: -1 = 5; Step 3: ×4 = 20; Step 4: +1 = 21"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 3. Follow the path: ×3 → -3 → -2 → ×3. What is the final value?",
                "answer": "12",
                "startValue": 3,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 9
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 6
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 4
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 12
                    }
                ],
                "finalValue": 12,
                "pathDescription": "Step 1: ×3 = 9; Step 2: -3 = 6; Step 3: -2 = 4; Step 4: ×3 = 12"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 6. Follow the path: ×4 → ×2 → +10 → +6. What is the final value?",
                "answer": "64",
                "startValue": 6,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 24
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 48
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 58
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 64
                    }
                ],
                "finalValue": 64,
                "pathDescription": "Step 1: ×4 = 24; Step 2: ×2 = 48; Step 3: +10 = 58; Step 4: +6 = 64"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}