medium Set 78 Form Exercise

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

Show answer

Answer: 7

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

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

Show answer

Answer: 15

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

Math Maze: Start at 1. Follow the path: -1 → -1 → -1 → ×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":"-","operand":1,"result":-2}
  • {"op":"\u00d7","operand":4,"result":-8}
FinalValue
-8
PathDescription
Step 1: -1 = 0; Step 2: -1 = -1; Step 3: -1 = -2; Step 4: ×4 = -8

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

Show answer

Answer: 15

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

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

Show answer

Answer: 59

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

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

Show answer

Answer: 201

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

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

Show answer

Answer: 11

SubType
math-maze
Difficulty
medium
StartValue
3
Steps
  • {"op":"+","operand":9,"result":12}
  • {"op":"\u00d7","operand":4,"result":48}
  • {"op":"-","operand":3,"result":45}
  • {"op":"-","operand":34,"result":11}
FinalValue
11
PathDescription
Step 1: +9 = 12; Step 2: ×4 = 48; Step 3: -3 = 45; Step 4: -34 = 11

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

Show answer

Answer: 8

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