B Set 73 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 9. Follow the path: -4 → -4 → +10 → ×3 → -24. What is the final value?",
                "answer": "9",
                "startValue": 9,
                "steps": [
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 5
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 11
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 33
                    },
                    {
                        "op": "-",
                        "operand": 24,
                        "result": 9
                    }
                ],
                "finalValue": 9,
                "pathDescription": "Step 1: -4 = 5; Step 2: -4 = 1; Step 3: +10 = 11; Step 4: ×3 = 33; Step 5: -24 = 9"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 8. Follow the path: ×2 → ×2 → ×3 → -77 → -12. What is the final value?",
                "answer": "7",
                "startValue": 8,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 16
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 32
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 96
                    },
                    {
                        "op": "-",
                        "operand": 77,
                        "result": 19
                    },
                    {
                        "op": "-",
                        "operand": 12,
                        "result": 7
                    }
                ],
                "finalValue": 7,
                "pathDescription": "Step 1: ×2 = 16; Step 2: ×2 = 32; Step 3: ×3 = 96; Step 4: -77 = 19; Step 5: -12 = 7"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 10. Follow the path: +5 → +3 → -12 → -3 → -2. What is the final value?",
                "answer": "1",
                "startValue": 10,
                "steps": [
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 15
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 18
                    },
                    {
                        "op": "-",
                        "operand": 12,
                        "result": 6
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 3
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 1
                    }
                ],
                "finalValue": 1,
                "pathDescription": "Step 1: +5 = 15; Step 2: +3 = 18; Step 3: -12 = 6; Step 4: -3 = 3; Step 5: -2 = 1"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 10. Follow the path: +7 → ×3 → -30 → ×3 → -25. What is the final value?",
                "answer": "38",
                "startValue": 10,
                "steps": [
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 17
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 51
                    },
                    {
                        "op": "-",
                        "operand": 30,
                        "result": 21
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 63
                    },
                    {
                        "op": "-",
                        "operand": 25,
                        "result": 38
                    }
                ],
                "finalValue": 38,
                "pathDescription": "Step 1: +7 = 17; Step 2: ×3 = 51; Step 3: -30 = 21; Step 4: ×3 = 63; Step 5: -25 = 38"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 8. Follow the path: +5 → -4 → +5 → ×2 → -24. What is the final value?",
                "answer": "4",
                "startValue": 8,
                "steps": [
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 13
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 9
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 14
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 28
                    },
                    {
                        "op": "-",
                        "operand": 24,
                        "result": 4
                    }
                ],
                "finalValue": 4,
                "pathDescription": "Step 1: +5 = 13; Step 2: -4 = 9; Step 3: +5 = 14; Step 4: ×2 = 28; Step 5: -24 = 4"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 7. Follow the path: ×3 → ×2 → -18 → -1 → +5. What is the final value?",
                "answer": "28",
                "startValue": 7,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 21
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 42
                    },
                    {
                        "op": "-",
                        "operand": 18,
                        "result": 24
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 23
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 28
                    }
                ],
                "finalValue": 28,
                "pathDescription": "Step 1: ×3 = 21; Step 2: ×2 = 42; Step 3: -18 = 24; Step 4: -1 = 23; Step 5: +5 = 28"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 9. Follow the path: +5 → ×3 → +9 → +1 → +2. What is the final value?",
                "answer": "54",
                "startValue": 9,
                "steps": [
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 14
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 42
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 51
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 52
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 54
                    }
                ],
                "finalValue": 54,
                "pathDescription": "Step 1: +5 = 14; Step 2: ×3 = 42; Step 3: +9 = 51; Step 4: +1 = 52; Step 5: +2 = 54"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 1. Follow the path: +6 → ×3 → -9 → +9 → +7. What is the final value?",
                "answer": "28",
                "startValue": 1,
                "steps": [
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 7
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 21
                    },
                    {
                        "op": "-",
                        "operand": 9,
                        "result": 12
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 21
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 28
                    }
                ],
                "finalValue": 28,
                "pathDescription": "Step 1: +6 = 7; Step 2: ×3 = 21; Step 3: -9 = 12; Step 4: +9 = 21; Step 5: +7 = 28"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}