B Set 58 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 5. Follow the path: -3 → -1 → ×3 → -1 → -1. What is the final value?",
                "answer": "1",
                "startValue": 5,
                "steps": [
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 2
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 3
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 2
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 1
                    }
                ],
                "finalValue": 1,
                "pathDescription": "Step 1: -3 = 2; Step 2: -1 = 1; Step 3: ×3 = 3; Step 4: -1 = 2; Step 5: -1 = 1"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 10. Follow the path: +2 → ×3 → +2 → -31 → -5. What is the final value?",
                "answer": "2",
                "startValue": 10,
                "steps": [
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 12
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 36
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 38
                    },
                    {
                        "op": "-",
                        "operand": 31,
                        "result": 7
                    },
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 2
                    }
                ],
                "finalValue": 2,
                "pathDescription": "Step 1: +2 = 12; Step 2: ×3 = 36; Step 3: +2 = 38; Step 4: -31 = 7; Step 5: -5 = 2"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 4. Follow the path: ×4 → +1 → +9 → +6 → +9. What is the final value?",
                "answer": "41",
                "startValue": 4,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 16
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 17
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 26
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 32
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 41
                    }
                ],
                "finalValue": 41,
                "pathDescription": "Step 1: ×4 = 16; Step 2: +1 = 17; Step 3: +9 = 26; Step 4: +6 = 32; Step 5: +9 = 41"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 1. Follow the path: -1 → +1 → -1 → ×2 → +2. What is the final value?",
                "answer": "2",
                "startValue": 1,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 0
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 2
                    }
                ],
                "finalValue": 2,
                "pathDescription": "Step 1: -1 = 0; Step 2: +1 = 1; Step 3: -1 = 0; Step 4: ×2 = 0; Step 5: +2 = 2"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 2. Follow the path: ×4 → -3 → +9 → ×4 → ×2. What is the final value?",
                "answer": "112",
                "startValue": 2,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 8
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 5
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 14
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 56
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 112
                    }
                ],
                "finalValue": 112,
                "pathDescription": "Step 1: ×4 = 8; Step 2: -3 = 5; Step 3: +9 = 14; Step 4: ×4 = 56; Step 5: ×2 = 112"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 9. Follow the path: +2 → +1 → -6 → ×4 → -19. What is the final value?",
                "answer": "5",
                "startValue": 9,
                "steps": [
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 11
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 12
                    },
                    {
                        "op": "-",
                        "operand": 6,
                        "result": 6
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 24
                    },
                    {
                        "op": "-",
                        "operand": 19,
                        "result": 5
                    }
                ],
                "finalValue": 5,
                "pathDescription": "Step 1: +2 = 11; Step 2: +1 = 12; Step 3: -6 = 6; Step 4: ×4 = 24; Step 5: -19 = 5"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 5. Follow the path: +3 → ×2 → -10 → -4 → +10. What is the final value?",
                "answer": "12",
                "startValue": 5,
                "steps": [
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 8
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 16
                    },
                    {
                        "op": "-",
                        "operand": 10,
                        "result": 6
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 2
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 12
                    }
                ],
                "finalValue": 12,
                "pathDescription": "Step 1: +3 = 8; Step 2: ×2 = 16; Step 3: -10 = 6; Step 4: -4 = 2; Step 5: +10 = 12"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 10. Follow the path: -6 → -1 → ×3 → ×4 → +8. What is the final value?",
                "answer": "44",
                "startValue": 10,
                "steps": [
                    {
                        "op": "-",
                        "operand": 6,
                        "result": 4
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 3
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 9
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 36
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 44
                    }
                ],
                "finalValue": 44,
                "pathDescription": "Step 1: -6 = 4; Step 2: -1 = 3; Step 3: ×3 = 9; Step 4: ×4 = 36; Step 5: +8 = 44"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}