medium Set 60 Form Exercise

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

Show answer

Answer: 17

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

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

Show answer

Answer: 8

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

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

Show answer

Answer: 123

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

Math Maze: Start at 1. Follow the path: -1 → -1 → ×2 → -1. 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":"\u00d7","operand":2,"result":-2}
  • {"op":"-","operand":1,"result":-3}
FinalValue
-3
PathDescription
Step 1: -1 = 0; Step 2: -1 = -1; Step 3: ×2 = -2; Step 4: -1 = -3

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

Show answer

Answer: 48

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

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

Show answer

Answer: 4

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

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

Show answer

Answer: 1

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

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

Show answer

Answer: 68

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