medium Set 21 Form Exercise

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

Show answer

Answer: -4

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

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

Show answer

Answer: 25

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

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

Show answer

Answer: 128

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

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

Show answer

Answer: 3

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

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

Show answer

Answer: 246

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

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

Show answer

Answer: 49

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

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

Show answer

Answer: 6

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

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

Show answer

Answer: 6

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