Workbook Detail
Math Maze Addition Small Easy — Set 29
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 5. Follow the path: ×4 → +10 → -1. What is the final value?",
"answer": "29",
"startValue": 5,
"steps": [
{
"op": "×",
"operand": 4,
"result": 20
},
{
"op": "+",
"operand": 10,
"result": 30
},
{
"op": "-",
"operand": 1,
"result": 29
}
],
"finalValue": 29,
"pathDescription": "Step 1: ×4 = 20; Step 2: +10 = 30; Step 3: -1 = 29"
},
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "easy",
"question": "Math Maze: Start at 1. Follow the path: -1 → -1 → -1. What is the final value?",
"answer": "-2",
"startValue": 1,
"steps": [
{
"op": "-",
"operand": 1,
"result": 0
},
{
"op": "-",
"operand": 1,
"result": -1
},
{
"op": "-",
"operand": 1,
"result": -2
}
],
"finalValue": -2,
"pathDescription": "Step 1: -1 = 0; Step 2: -1 = -1; Step 3: -1 = -2"
},
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "easy",
"question": "Math Maze: Start at 5. Follow the path: -2 → +4 → +8. What is the final value?",
"answer": "15",
"startValue": 5,
"steps": [
{
"op": "-",
"operand": 2,
"result": 3
},
{
"op": "+",
"operand": 4,
"result": 7
},
{
"op": "+",
"operand": 8,
"result": 15
}
],
"finalValue": 15,
"pathDescription": "Step 1: -2 = 3; Step 2: +4 = 7; Step 3: +8 = 15"
},
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "easy",
"question": "Math Maze: Start at 5. Follow the path: +9 → +3 → +1. What is the final value?",
"answer": "18",
"startValue": 5,
"steps": [
{
"op": "+",
"operand": 9,
"result": 14
},
{
"op": "+",
"operand": 3,
"result": 17
},
{
"op": "+",
"operand": 1,
"result": 18
}
],
"finalValue": 18,
"pathDescription": "Step 1: +9 = 14; Step 2: +3 = 17; Step 3: +1 = 18"
},
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "easy",
"question": "Math Maze: Start at 3. Follow the path: +8 → +1 → ×3. What is the final value?",
"answer": "36",
"startValue": 3,
"steps": [
{
"op": "+",
"operand": 8,
"result": 11
},
{
"op": "+",
"operand": 1,
"result": 12
},
{
"op": "×",
"operand": 3,
"result": 36
}
],
"finalValue": 36,
"pathDescription": "Step 1: +8 = 11; Step 2: +1 = 12; Step 3: ×3 = 36"
},
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "easy",
"question": "Math Maze: Start at 3. Follow the path: +3 → -2 → +5. What is the final value?",
"answer": "9",
"startValue": 3,
"steps": [
{
"op": "+",
"operand": 3,
"result": 6
},
{
"op": "-",
"operand": 2,
"result": 4
},
{
"op": "+",
"operand": 5,
"result": 9
}
],
"finalValue": 9,
"pathDescription": "Step 1: +3 = 6; Step 2: -2 = 4; Step 3: +5 = 9"
},
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "easy",
"question": "Math Maze: Start at 1. Follow the path: +3 → +2 → +7. What is the final value?",
"answer": "13",
"startValue": 1,
"steps": [
{
"op": "+",
"operand": 3,
"result": 4
},
{
"op": "+",
"operand": 2,
"result": 6
},
{
"op": "+",
"operand": 7,
"result": 13
}
],
"finalValue": 13,
"pathDescription": "Step 1: +3 = 4; Step 2: +2 = 6; Step 3: +7 = 13"
},
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "easy",
"question": "Math Maze: Start at 10. Follow the path: -1 → -1 → +3. What is the final value?",
"answer": "11",
"startValue": 10,
"steps": [
{
"op": "-",
"operand": 1,
"result": 9
},
{
"op": "-",
"operand": 1,
"result": 8
},
{
"op": "+",
"operand": 3,
"result": 11
}
],
"finalValue": 11,
"pathDescription": "Step 1: -1 = 9; Step 2: -1 = 8; Step 3: +3 = 11"
}
],
"layout": {
"columns": 2,
"problemsPerPage": 20
}
},
"outputTargets": {
"screen": true,
"print": true,
"pdf": true,
"answerKey": true
},
"_archetype": "form-exercise",
"_generatorId": "arithmetic-generator-v7.2.1"
}Teaching Notes
- Math Maze: Start at 5. Follow the path: ×4 → +10 → -1. What is the final value?
- Math Maze: Start at 1. Follow the path: -1 → -1 → -1. What is the final value?
- Math Maze: Start at 5. Follow the path: -2 → +4 → +8. What is the final value?
- Math Maze: Start at 5. Follow the path: +9 → +3 → +1. What is the final value?
- Math Maze: Start at 3. Follow the path: +8 → +1 → ×3. What is the final value?
- Math Maze: Start at 3. Follow the path: +3 → -2 → +5. What is the final value?
- Math Maze: Start at 1. Follow the path: +3 → +2 → +7. What is the final value?
- Math Maze: Start at 10. Follow the path: -1 → -1 → +3. What is the final value?
Practice math maze addition small with free printable worksheets. Uniquely generated — reinforce key math skills with every set.
Frequently Asked Questions
How do I use this Math Maze Addition 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.