Workbook Detail
Math Maze Division Small Hard — Set 98
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: -1 → +10 → +1 → ×2 → -3. What is the final value?",
"answer": "27",
"startValue": 5,
"steps": [
{
"op": "-",
"operand": 1,
"result": 4
},
{
"op": "+",
"operand": 10,
"result": 14
},
{
"op": "+",
"operand": 1,
"result": 15
},
{
"op": "×",
"operand": 2,
"result": 30
},
{
"op": "-",
"operand": 3,
"result": 27
}
],
"finalValue": 27,
"pathDescription": "Step 1: -1 = 4; Step 2: +10 = 14; Step 3: +1 = 15; Step 4: ×2 = 30; Step 5: -3 = 27"
},
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "hard",
"question": "Math Maze: Start at 10. Follow the path: ×4 → ×4 → ×4 → +10 → ×4. What is the final value?",
"answer": "2600",
"startValue": 10,
"steps": [
{
"op": "×",
"operand": 4,
"result": 40
},
{
"op": "×",
"operand": 4,
"result": 160
},
{
"op": "×",
"operand": 4,
"result": 640
},
{
"op": "+",
"operand": 10,
"result": 650
},
{
"op": "×",
"operand": 4,
"result": 2600
}
],
"finalValue": 2600,
"pathDescription": "Step 1: ×4 = 40; Step 2: ×4 = 160; Step 3: ×4 = 640; Step 4: +10 = 650; Step 5: ×4 = 2600"
},
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "hard",
"question": "Math Maze: Start at 7. Follow the path: -2 → ×4 → ×2 → -30 → ×4. What is the final value?",
"answer": "40",
"startValue": 7,
"steps": [
{
"op": "-",
"operand": 2,
"result": 5
},
{
"op": "×",
"operand": 4,
"result": 20
},
{
"op": "×",
"operand": 2,
"result": 40
},
{
"op": "-",
"operand": 30,
"result": 10
},
{
"op": "×",
"operand": 4,
"result": 40
}
],
"finalValue": 40,
"pathDescription": "Step 1: -2 = 5; Step 2: ×4 = 20; Step 3: ×2 = 40; Step 4: -30 = 10; Step 5: ×4 = 40"
},
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "hard",
"question": "Math Maze: Start at 4. Follow the path: +1 → -1 → ×2 → +6 → ×3. What is the final value?",
"answer": "42",
"startValue": 4,
"steps": [
{
"op": "+",
"operand": 1,
"result": 5
},
{
"op": "-",
"operand": 1,
"result": 4
},
{
"op": "×",
"operand": 2,
"result": 8
},
{
"op": "+",
"operand": 6,
"result": 14
},
{
"op": "×",
"operand": 3,
"result": 42
}
],
"finalValue": 42,
"pathDescription": "Step 1: +1 = 5; Step 2: -1 = 4; Step 3: ×2 = 8; Step 4: +6 = 14; Step 5: ×3 = 42"
},
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "hard",
"question": "Math Maze: Start at 4. Follow the path: +10 → +2 → ×2 → -26 → ×3. What is the final value?",
"answer": "18",
"startValue": 4,
"steps": [
{
"op": "+",
"operand": 10,
"result": 14
},
{
"op": "+",
"operand": 2,
"result": 16
},
{
"op": "×",
"operand": 2,
"result": 32
},
{
"op": "-",
"operand": 26,
"result": 6
},
{
"op": "×",
"operand": 3,
"result": 18
}
],
"finalValue": 18,
"pathDescription": "Step 1: +10 = 14; Step 2: +2 = 16; Step 3: ×2 = 32; Step 4: -26 = 6; Step 5: ×3 = 18"
},
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "hard",
"question": "Math Maze: Start at 9. Follow the path: +7 → +2 → -17 → -1 → -1. What is the final value?",
"answer": "-1",
"startValue": 9,
"steps": [
{
"op": "+",
"operand": 7,
"result": 16
},
{
"op": "+",
"operand": 2,
"result": 18
},
{
"op": "-",
"operand": 17,
"result": 1
},
{
"op": "-",
"operand": 1,
"result": 0
},
{
"op": "-",
"operand": 1,
"result": -1
}
],
"finalValue": -1,
"pathDescription": "Step 1: +7 = 16; Step 2: +2 = 18; Step 3: -17 = 1; Step 4: -1 = 0; Step 5: -1 = -1"
},
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "hard",
"question": "Math Maze: Start at 1. Follow the path: -1 → +5 → -4 → +10 → -10. What is the final value?",
"answer": "1",
"startValue": 1,
"steps": [
{
"op": "-",
"operand": 1,
"result": 0
},
{
"op": "+",
"operand": 5,
"result": 5
},
{
"op": "-",
"operand": 4,
"result": 1
},
{
"op": "+",
"operand": 10,
"result": 11
},
{
"op": "-",
"operand": 10,
"result": 1
}
],
"finalValue": 1,
"pathDescription": "Step 1: -1 = 0; Step 2: +5 = 5; Step 3: -4 = 1; Step 4: +10 = 11; Step 5: -10 = 1"
},
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "hard",
"question": "Math Maze: Start at 9. Follow the path: +8 → ×2 → -4 → +5 → +2. What is the final value?",
"answer": "37",
"startValue": 9,
"steps": [
{
"op": "+",
"operand": 8,
"result": 17
},
{
"op": "×",
"operand": 2,
"result": 34
},
{
"op": "-",
"operand": 4,
"result": 30
},
{
"op": "+",
"operand": 5,
"result": 35
},
{
"op": "+",
"operand": 2,
"result": 37
}
],
"finalValue": 37,
"pathDescription": "Step 1: +8 = 17; Step 2: ×2 = 34; Step 3: -4 = 30; Step 4: +5 = 35; Step 5: +2 = 37"
}
],
"layout": {
"columns": 2,
"problemsPerPage": 20
}
},
"_archetype": "form-exercise",
"_generatorId": "arithmetic-generator-v7.2.1"
}Teaching Notes
- Math Maze: Start at 5. Follow the path: -1 → +10 → +1 → ×2 → -3. What is the final value?
- Math Maze: Start at 10. Follow the path: ×4 → ×4 → ×4 → +10 → ×4. What is the final value?
- Math Maze: Start at 7. Follow the path: -2 → ×4 → ×2 → -30 → ×4. What is the final value?
- Math Maze: Start at 4. Follow the path: +1 → -1 → ×2 → +6 → ×3. What is the final value?
- Math Maze: Start at 4. Follow the path: +10 → +2 → ×2 → -26 → ×3. What is the final value?
- Math Maze: Start at 9. Follow the path: +7 → +2 → -17 → -1 → -1. What is the final value?
- Math Maze: Start at 1. Follow the path: -1 → +5 → -4 → +10 → -10. What is the final value?
- Math Maze: Start at 9. Follow the path: +8 → ×2 → -4 → +5 → +2. What is the final value?
Practice math maze division small with free printable worksheets. Uniquely generated — reinforce key math skills with every set.
Frequently Asked Questions
How do I use this Math Maze Division Small Hard Worksheets worksheet?
Print the worksheet and complete the problems. Each set number generates a unique arrangement. Use the same set number for all students in a class for consistent assessment.
Is there an answer key?
Yes — every worksheet includes a complete answer key. Print it separately or view it on screen.