medium Set 24 Form Exercise

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

Show answer

Answer: 4

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

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

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

Show answer

Answer: 4

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

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

Show answer

Answer: 40

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

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

Show answer

Answer: 17

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

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

Show answer

Answer: 13

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

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

Show answer

Answer: 240

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

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

Show answer

Answer: 14

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