medium Set 59 Form Exercise

Math Maze: Start at 3. Follow the path: -1 → ×2 → +4 → ×4. What is the final value?

Show answer

Answer: 32

SubType
math-maze
Difficulty
medium
StartValue
3
Steps
  • {"op":"-","operand":1,"result":2}
  • {"op":"\u00d7","operand":2,"result":4}
  • {"op":"+","operand":4,"result":8}
  • {"op":"\u00d7","operand":4,"result":32}
FinalValue
32
PathDescription
Step 1: -1 = 2; Step 2: ×2 = 4; Step 3: +4 = 8; Step 4: ×4 = 32

Math Maze: Start at 5. Follow the path: +6 → +2 → -7 → -2. What is the final value?

Show answer

Answer: 4

SubType
math-maze
Difficulty
medium
StartValue
5
Steps
  • {"op":"+","operand":6,"result":11}
  • {"op":"+","operand":2,"result":13}
  • {"op":"-","operand":7,"result":6}
  • {"op":"-","operand":2,"result":4}
FinalValue
4
PathDescription
Step 1: +6 = 11; Step 2: +2 = 13; Step 3: -7 = 6; Step 4: -2 = 4

Math Maze: Start at 2. Follow the path: +7 → -7 → -1 → -1. What is the final value?

SubType
math-maze
Difficulty
medium
StartValue
2
Steps
  • {"op":"+","operand":7,"result":9}
  • {"op":"-","operand":7,"result":2}
  • {"op":"-","operand":1,"result":1}
  • {"op":"-","operand":1,"result":0}
FinalValue
0
PathDescription
Step 1: +7 = 9; Step 2: -7 = 2; Step 3: -1 = 1; Step 4: -1 = 0

Math Maze: Start at 9. Follow the path: +8 → +10 → ×3 → ×2. What is the final value?

Show answer

Answer: 162

SubType
math-maze
Difficulty
medium
StartValue
9
Steps
  • {"op":"+","operand":8,"result":17}
  • {"op":"+","operand":10,"result":27}
  • {"op":"\u00d7","operand":3,"result":81}
  • {"op":"\u00d7","operand":2,"result":162}
FinalValue
162
PathDescription
Step 1: +8 = 17; Step 2: +10 = 27; Step 3: ×3 = 81; Step 4: ×2 = 162

Math Maze: Start at 7. Follow the path: ×3 → ×3 → ×4 → -48. What is the final value?

Show answer

Answer: 204

SubType
math-maze
Difficulty
medium
StartValue
7
Steps
  • {"op":"\u00d7","operand":3,"result":21}
  • {"op":"\u00d7","operand":3,"result":63}
  • {"op":"\u00d7","operand":4,"result":252}
  • {"op":"-","operand":48,"result":204}
FinalValue
204
PathDescription
Step 1: ×3 = 21; Step 2: ×3 = 63; Step 3: ×4 = 252; Step 4: -48 = 204

Math Maze: Start at 1. Follow the path: -1 → ×4 → +5 → ×3. What is the final value?

Show answer

Answer: 15

SubType
math-maze
Difficulty
medium
StartValue
1
Steps
  • {"op":"-","operand":1,"result":0}
  • {"op":"\u00d7","operand":4,"result":0}
  • {"op":"+","operand":5,"result":5}
  • {"op":"\u00d7","operand":3,"result":15}
FinalValue
15
PathDescription
Step 1: -1 = 0; Step 2: ×4 = 0; Step 3: +5 = 5; Step 4: ×3 = 15

Math Maze: Start at 4. Follow the path: -2 → -1 → ×2 → ×4. What is the final value?

Show answer

Answer: 8

SubType
math-maze
Difficulty
medium
StartValue
4
Steps
  • {"op":"-","operand":2,"result":2}
  • {"op":"-","operand":1,"result":1}
  • {"op":"\u00d7","operand":2,"result":2}
  • {"op":"\u00d7","operand":4,"result":8}
FinalValue
8
PathDescription
Step 1: -2 = 2; Step 2: -1 = 1; Step 3: ×2 = 2; Step 4: ×4 = 8

Math Maze: Start at 6. Follow the path: -1 → +10 → -11 → -1. What is the final value?

Show answer

Answer: 3

SubType
math-maze
Difficulty
medium
StartValue
6
Steps
  • {"op":"-","operand":1,"result":5}
  • {"op":"+","operand":10,"result":15}
  • {"op":"-","operand":11,"result":4}
  • {"op":"-","operand":1,"result":3}
FinalValue
3
PathDescription
Step 1: -1 = 5; Step 2: +10 = 15; Step 3: -11 = 4; Step 4: -1 = 3