medium Set 23 Form Exercise

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

Show answer

Answer: 27

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

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

Show answer

Answer: 16

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

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

Show answer

Answer: 42

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

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

Show answer

Answer: 8

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

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

Show answer

Answer: 324

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

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

Show answer

Answer: 21

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

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

Show answer

Answer: 16

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

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

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