medium Set 14 Form Exercise

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

Show answer

Answer: 1

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

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

Show answer

Answer: 2

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

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

Show answer

Answer: 4

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

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

Show answer

Answer: 40

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

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

Show answer

Answer: 208

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

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

Show answer

Answer: 9

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

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

Show answer

Answer: 5

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

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

Show answer

Answer: 10

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