easy Set 68 Form Exercise

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

Show answer

Answer: 8

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

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

Show answer

Answer: 1

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

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

Show answer

Answer: 270

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

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

Show answer

Answer: 1

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

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

Show answer

Answer: 1

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

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

Show answer

Answer: 12

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

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

Show answer

Answer: 68

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

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

Show answer

Answer: 2

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