Workbook Detail
Math Maze Mixed Large Medium — Set 44
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": "medium",
"config": {
"difficulty": "medium",
"maxNumber": 10
},
"problems": [
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "medium",
"question": "Math Maze: Start at 1. Follow the path: -1 → +8 → ×4 → +5. What is the final value?",
"answer": "37",
"startValue": 1,
"steps": [
{
"op": "-",
"operand": 1,
"result": 0
},
{
"op": "+",
"operand": 8,
"result": 8
},
{
"op": "×",
"operand": 4,
"result": 32
},
{
"op": "+",
"operand": 5,
"result": 37
}
],
"finalValue": 37,
"pathDescription": "Step 1: -1 = 0; Step 2: +8 = 8; Step 3: ×4 = 32; Step 4: +5 = 37"
},
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "medium",
"question": "Math Maze: Start at 6. Follow the path: +6 → +10 → +2 → ×2. What is the final value?",
"answer": "48",
"startValue": 6,
"steps": [
{
"op": "+",
"operand": 6,
"result": 12
},
{
"op": "+",
"operand": 10,
"result": 22
},
{
"op": "+",
"operand": 2,
"result": 24
},
{
"op": "×",
"operand": 2,
"result": 48
}
],
"finalValue": 48,
"pathDescription": "Step 1: +6 = 12; Step 2: +10 = 22; Step 3: +2 = 24; Step 4: ×2 = 48"
},
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "medium",
"question": "Math Maze: Start at 10. Follow the path: +9 → +2 → -15 → ×2. What is the final value?",
"answer": "12",
"startValue": 10,
"steps": [
{
"op": "+",
"operand": 9,
"result": 19
},
{
"op": "+",
"operand": 2,
"result": 21
},
{
"op": "-",
"operand": 15,
"result": 6
},
{
"op": "×",
"operand": 2,
"result": 12
}
],
"finalValue": 12,
"pathDescription": "Step 1: +9 = 19; Step 2: +2 = 21; Step 3: -15 = 6; Step 4: ×2 = 12"
},
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "medium",
"question": "Math Maze: Start at 10. Follow the path: +2 → +8 → -17 → -1. What is the final value?",
"answer": "2",
"startValue": 10,
"steps": [
{
"op": "+",
"operand": 2,
"result": 12
},
{
"op": "+",
"operand": 8,
"result": 20
},
{
"op": "-",
"operand": 17,
"result": 3
},
{
"op": "-",
"operand": 1,
"result": 2
}
],
"finalValue": 2,
"pathDescription": "Step 1: +2 = 12; Step 2: +8 = 20; Step 3: -17 = 3; Step 4: -1 = 2"
},
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "medium",
"question": "Math Maze: Start at 2. Follow the path: ×4 → ×3 → +4 → +6. What is the final value?",
"answer": "34",
"startValue": 2,
"steps": [
{
"op": "×",
"operand": 4,
"result": 8
},
{
"op": "×",
"operand": 3,
"result": 24
},
{
"op": "+",
"operand": 4,
"result": 28
},
{
"op": "+",
"operand": 6,
"result": 34
}
],
"finalValue": 34,
"pathDescription": "Step 1: ×4 = 8; Step 2: ×3 = 24; Step 3: +4 = 28; Step 4: +6 = 34"
},
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "medium",
"question": "Math Maze: Start at 7. Follow the path: -2 → +3 → ×3 → +3. What is the final value?",
"answer": "27",
"startValue": 7,
"steps": [
{
"op": "-",
"operand": 2,
"result": 5
},
{
"op": "+",
"operand": 3,
"result": 8
},
{
"op": "×",
"operand": 3,
"result": 24
},
{
"op": "+",
"operand": 3,
"result": 27
}
],
"finalValue": 27,
"pathDescription": "Step 1: -2 = 5; Step 2: +3 = 8; Step 3: ×3 = 24; Step 4: +3 = 27"
},
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "medium",
"question": "Math Maze: Start at 9. Follow the path: -6 → -2 → ×4 → +2. What is the final value?",
"answer": "6",
"startValue": 9,
"steps": [
{
"op": "-",
"operand": 6,
"result": 3
},
{
"op": "-",
"operand": 2,
"result": 1
},
{
"op": "×",
"operand": 4,
"result": 4
},
{
"op": "+",
"operand": 2,
"result": 6
}
],
"finalValue": 6,
"pathDescription": "Step 1: -6 = 3; Step 2: -2 = 1; Step 3: ×4 = 4; Step 4: +2 = 6"
},
{
"type": "math-maze",
"subType": "math-maze",
"difficulty": "medium",
"question": "Math Maze: Start at 9. Follow the path: +9 → -14 → +6 → ×3. What is the final value?",
"answer": "30",
"startValue": 9,
"steps": [
{
"op": "+",
"operand": 9,
"result": 18
},
{
"op": "-",
"operand": 14,
"result": 4
},
{
"op": "+",
"operand": 6,
"result": 10
},
{
"op": "×",
"operand": 3,
"result": 30
}
],
"finalValue": 30,
"pathDescription": "Step 1: +9 = 18; Step 2: -14 = 4; Step 3: +6 = 10; Step 4: ×3 = 30"
}
],
"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 1. Follow the path: -1 → +8 → ×4 → +5. What is the final value?
- Math Maze: Start at 6. Follow the path: +6 → +10 → +2 → ×2. What is the final value?
- Math Maze: Start at 10. Follow the path: +9 → +2 → -15 → ×2. What is the final value?
- Math Maze: Start at 10. Follow the path: +2 → +8 → -17 → -1. What is the final value?
- Math Maze: Start at 2. Follow the path: ×4 → ×3 → +4 → +6. What is the final value?
- Math Maze: Start at 7. Follow the path: -2 → +3 → ×3 → +3. What is the final value?
- Math Maze: Start at 9. Follow the path: -6 → -2 → ×4 → +2. What is the final value?
- Math Maze: Start at 9. Follow the path: +9 → -14 → +6 → ×3. What is the final value?
Practice math maze mixed large with free printable worksheets. Uniquely generated — reinforce key math skills with every set.
Frequently Asked Questions
How do I use this Math Maze Mixed Large Medium 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.