Workbook Detail
Math Maze Division Small Easy — Set 18
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": "easy",
"config": {
"difficulty": "easy",
"maxNumber": 10
},
"problems": [
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "easy",
"question": "Math Maze: Start at 3. Follow the path: ×3 → ×2 → +3. What is the final value?",
"answer": "21",
"startValue": 3,
"steps": [
{
"op": "×",
"operand": 3,
"result": 9
},
{
"op": "×",
"operand": 2,
"result": 18
},
{
"op": "+",
"operand": 3,
"result": 21
}
],
"finalValue": 21,
"pathDescription": "Step 1: ×3 = 9; Step 2: ×2 = 18; Step 3: +3 = 21"
},
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "easy",
"question": "Math Maze: Start at 3. Follow the path: ×2 → ×2 → +2. What is the final value?",
"answer": "14",
"startValue": 3,
"steps": [
{
"op": "×",
"operand": 2,
"result": 6
},
{
"op": "×",
"operand": 2,
"result": 12
},
{
"op": "+",
"operand": 2,
"result": 14
}
],
"finalValue": 14,
"pathDescription": "Step 1: ×2 = 6; Step 2: ×2 = 12; Step 3: +2 = 14"
},
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "easy",
"question": "Math Maze: Start at 6. Follow the path: +8 → -2 → -6. What is the final value?",
"answer": "6",
"startValue": 6,
"steps": [
{
"op": "+",
"operand": 8,
"result": 14
},
{
"op": "-",
"operand": 2,
"result": 12
},
{
"op": "-",
"operand": 6,
"result": 6
}
],
"finalValue": 6,
"pathDescription": "Step 1: +8 = 14; Step 2: -2 = 12; Step 3: -6 = 6"
},
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "easy",
"question": "Math Maze: Start at 4. Follow the path: +3 → +10 → -8. What is the final value?",
"answer": "9",
"startValue": 4,
"steps": [
{
"op": "+",
"operand": 3,
"result": 7
},
{
"op": "+",
"operand": 10,
"result": 17
},
{
"op": "-",
"operand": 8,
"result": 9
}
],
"finalValue": 9,
"pathDescription": "Step 1: +3 = 7; Step 2: +10 = 17; Step 3: -8 = 9"
},
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "easy",
"question": "Math Maze: Start at 4. Follow the path: ×3 → ×4 → +4. What is the final value?",
"answer": "52",
"startValue": 4,
"steps": [
{
"op": "×",
"operand": 3,
"result": 12
},
{
"op": "×",
"operand": 4,
"result": 48
},
{
"op": "+",
"operand": 4,
"result": 52
}
],
"finalValue": 52,
"pathDescription": "Step 1: ×3 = 12; Step 2: ×4 = 48; Step 3: +4 = 52"
},
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "easy",
"question": "Math Maze: Start at 5. Follow the path: ×3 → ×3 → -20. What is the final value?",
"answer": "25",
"startValue": 5,
"steps": [
{
"op": "×",
"operand": 3,
"result": 15
},
{
"op": "×",
"operand": 3,
"result": 45
},
{
"op": "-",
"operand": 20,
"result": 25
}
],
"finalValue": 25,
"pathDescription": "Step 1: ×3 = 15; Step 2: ×3 = 45; Step 3: -20 = 25"
},
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "easy",
"question": "Math Maze: Start at 5. Follow the path: -3 → +3 → ×3. What is the final value?",
"answer": "15",
"startValue": 5,
"steps": [
{
"op": "-",
"operand": 3,
"result": 2
},
{
"op": "+",
"operand": 3,
"result": 5
},
{
"op": "×",
"operand": 3,
"result": 15
}
],
"finalValue": 15,
"pathDescription": "Step 1: -3 = 2; Step 2: +3 = 5; Step 3: ×3 = 15"
},
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "easy",
"question": "Math Maze: Start at 9. Follow the path: -5 → ×3 → +3. What is the final value?",
"answer": "15",
"startValue": 9,
"steps": [
{
"op": "-",
"operand": 5,
"result": 4
},
{
"op": "×",
"operand": 3,
"result": 12
},
{
"op": "+",
"operand": 3,
"result": 15
}
],
"finalValue": 15,
"pathDescription": "Step 1: -5 = 4; Step 2: ×3 = 12; Step 3: +3 = 15"
}
],
"layout": {
"columns": 2,
"problemsPerPage": 20
}
},
"_archetype": "form-exercise",
"_generatorId": "arithmetic-generator-v7.2.1"
}Teaching Notes
- Math Maze: Start at 3. Follow the path: ×3 → ×2 → +3. What is the final value?
- Math Maze: Start at 3. Follow the path: ×2 → ×2 → +2. What is the final value?
- Math Maze: Start at 6. Follow the path: +8 → -2 → -6. What is the final value?
- Math Maze: Start at 4. Follow the path: +3 → +10 → -8. What is the final value?
- Math Maze: Start at 4. Follow the path: ×3 → ×4 → +4. What is the final value?
- Math Maze: Start at 5. Follow the path: ×3 → ×3 → -20. What is the final value?
- Math Maze: Start at 5. Follow the path: -3 → +3 → ×3. What is the final value?
- Math Maze: Start at 9. Follow the path: -5 → ×3 → +3. 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 Easy 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.