medium Set 96 Form Exercise

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

Show answer

Answer: -1

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

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

Show answer

Answer: 31

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

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

Show answer

Answer: -1

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

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

Show answer

Answer: 21

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

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

Show answer

Answer: 40

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

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

Show answer

Answer: 96

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

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

Show answer

Answer: 20

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

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

Show answer

Answer: -2

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