medium Set 80 Form Exercise

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

Show answer

Answer: -16

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

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

Show answer

Answer: 2

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

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

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

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

Show answer

Answer: -8

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

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

Show answer

Answer: 34

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

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

Show answer

Answer: 36

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

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

Show answer

Answer: 60

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

Math Maze: Start at 8. Follow the path: -6 → +10 → +9 → -12. What is the final value?

Show answer

Answer: 9

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