easy Set 21 Form Exercise

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

Show answer

Answer: 12

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

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

Show answer

Answer: 23

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

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

Show answer

Answer: 23

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

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

Show answer

Answer: 45

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

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

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

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

Show answer

Answer: 256

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

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

Show answer

Answer: 6

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

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

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