medium Set 68 Form Exercise

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

Show answer

Answer: 6

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

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

Show answer

Answer: 19

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

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

Show answer

Answer: 26

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

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

Show answer

Answer: 1

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

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

Show answer

Answer: 1

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

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

Show answer

Answer: 130

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

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

Show answer

Answer: 24

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

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

Show answer

Answer: 3

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