easy Set 42 Form Exercise

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

Show answer

Answer: 2

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

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

Show answer

Answer: 6

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

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

Show answer

Answer: 2

SubType
math-maze
Difficulty
easy
StartValue
8
Steps
  • {"op":"+","operand":1,"result":9}
  • {"op":"+","operand":2,"result":11}
  • {"op":"-","operand":9,"result":2}
FinalValue
2
PathDescription
Step 1: +1 = 9; Step 2: +2 = 11; Step 3: -9 = 2

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

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

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

Show answer

Answer: -2

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

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

Show answer

Answer: 6

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

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

Show answer

Answer: 20

SubType
math-maze
Difficulty
easy
StartValue
8
Steps
  • {"op":"+","operand":7,"result":15}
  • {"op":"+","operand":10,"result":25}
  • {"op":"-","operand":5,"result":20}
FinalValue
20
PathDescription
Step 1: +7 = 15; Step 2: +10 = 25; Step 3: -5 = 20

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

Show answer

Answer: 42

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