medium Set 60 Form Exercise

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

Show answer

Answer: 3

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

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

Show answer

Answer: 18

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

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

Show answer

Answer: 56

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

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

Show answer

Answer: 90

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

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

Show answer

Answer: 6

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

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

Show answer

Answer: 8

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

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

Show answer

Answer: 4

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

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

Show answer

Answer: 7

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