medium Set 92 Form Exercise

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

Show answer

Answer: 8

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

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

Show answer

Answer: 20

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

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

Show answer

Answer: 12

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

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

Show answer

Answer: 48

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

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

Show answer

Answer: 209

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

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

Show answer

Answer: 8

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

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

Show answer

Answer: 66

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

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

Show answer

Answer: -1

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