medium Set 27 Form Exercise

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

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

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

Show answer

Answer: 70

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

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

Show answer

Answer: 3

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

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

Show answer

Answer: 15

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

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

Show answer

Answer: 21

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

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

Show answer

Answer: 4

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":"+","operand":8,"result":4}
FinalValue
4
PathDescription
Step 1: -1 = 0; Step 2: -1 = -1; Step 3: ×4 = -4; Step 4: +8 = 4

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

Show answer

Answer: 99

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

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

Show answer

Answer: 1

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