Workbook Detail
Math Maze Addition Small Easy — Set 97
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 6. Follow the path: +5 → ×3 → +8. What is the final value?",
"answer": "41",
"startValue": 6,
"steps": [
{
"op": "+",
"operand": 5,
"result": 11
},
{
"op": "×",
"operand": 3,
"result": 33
},
{
"op": "+",
"operand": 8,
"result": 41
}
],
"finalValue": 41,
"pathDescription": "Step 1: +5 = 11; Step 2: ×3 = 33; Step 3: +8 = 41"
},
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "easy",
"question": "Math Maze: Start at 6. Follow the path: ×4 → -14 → -8. What is the final value?",
"answer": "2",
"startValue": 6,
"steps": [
{
"op": "×",
"operand": 4,
"result": 24
},
{
"op": "-",
"operand": 14,
"result": 10
},
{
"op": "-",
"operand": 8,
"result": 2
}
],
"finalValue": 2,
"pathDescription": "Step 1: ×4 = 24; Step 2: -14 = 10; Step 3: -8 = 2"
},
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "easy",
"question": "Math Maze: Start at 6. Follow the path: ×4 → ×3 → -17. What is the final value?",
"answer": "55",
"startValue": 6,
"steps": [
{
"op": "×",
"operand": 4,
"result": 24
},
{
"op": "×",
"operand": 3,
"result": 72
},
{
"op": "-",
"operand": 17,
"result": 55
}
],
"finalValue": 55,
"pathDescription": "Step 1: ×4 = 24; Step 2: ×3 = 72; Step 3: -17 = 55"
},
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "easy",
"question": "Math Maze: Start at 10. Follow the path: ×2 → +4 → +8. What is the final value?",
"answer": "32",
"startValue": 10,
"steps": [
{
"op": "×",
"operand": 2,
"result": 20
},
{
"op": "+",
"operand": 4,
"result": 24
},
{
"op": "+",
"operand": 8,
"result": 32
}
],
"finalValue": 32,
"pathDescription": "Step 1: ×2 = 20; Step 2: +4 = 24; Step 3: +8 = 32"
},
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "easy",
"question": "Math Maze: Start at 2. Follow the path: -1 → +4 → +9. What is the final value?",
"answer": "14",
"startValue": 2,
"steps": [
{
"op": "-",
"operand": 1,
"result": 1
},
{
"op": "+",
"operand": 4,
"result": 5
},
{
"op": "+",
"operand": 9,
"result": 14
}
],
"finalValue": 14,
"pathDescription": "Step 1: -1 = 1; Step 2: +4 = 5; Step 3: +9 = 14"
},
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "easy",
"question": "Math Maze: Start at 4. Follow the path: +10 → +2 → +7. What is the final value?",
"answer": "23",
"startValue": 4,
"steps": [
{
"op": "+",
"operand": 10,
"result": 14
},
{
"op": "+",
"operand": 2,
"result": 16
},
{
"op": "+",
"operand": 7,
"result": 23
}
],
"finalValue": 23,
"pathDescription": "Step 1: +10 = 14; Step 2: +2 = 16; Step 3: +7 = 23"
},
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "easy",
"question": "Math Maze: Start at 4. Follow the path: ×4 → -5 → ×2. What is the final value?",
"answer": "22",
"startValue": 4,
"steps": [
{
"op": "×",
"operand": 4,
"result": 16
},
{
"op": "-",
"operand": 5,
"result": 11
},
{
"op": "×",
"operand": 2,
"result": 22
}
],
"finalValue": 22,
"pathDescription": "Step 1: ×4 = 16; Step 2: -5 = 11; Step 3: ×2 = 22"
},
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "easy",
"question": "Math Maze: Start at 5. Follow the path: ×4 → ×3 → ×3. What is the final value?",
"answer": "180",
"startValue": 5,
"steps": [
{
"op": "×",
"operand": 4,
"result": 20
},
{
"op": "×",
"operand": 3,
"result": 60
},
{
"op": "×",
"operand": 3,
"result": 180
}
],
"finalValue": 180,
"pathDescription": "Step 1: ×4 = 20; Step 2: ×3 = 60; Step 3: ×3 = 180"
}
],
"layout": {
"columns": 2,
"problemsPerPage": 20
}
},
"_archetype": "form-exercise",
"_generatorId": "arithmetic-generator-v7.2.1"
}Teaching Notes
- Math Maze: Start at 6. Follow the path: +5 → ×3 → +8. What is the final value?
- Math Maze: Start at 6. Follow the path: ×4 → -14 → -8. What is the final value?
- Math Maze: Start at 6. Follow the path: ×4 → ×3 → -17. What is the final value?
- Math Maze: Start at 10. Follow the path: ×2 → +4 → +8. What is the final value?
- Math Maze: Start at 2. Follow the path: -1 → +4 → +9. What is the final value?
- Math Maze: Start at 4. Follow the path: +10 → +2 → +7. What is the final value?
- Math Maze: Start at 4. Follow the path: ×4 → -5 → ×2. What is the final value?
- Math Maze: Start at 5. Follow the path: ×4 → ×3 → ×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.