medium Set 94 Form Exercise

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

Show answer

Answer: 12

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

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

Show answer

Answer: 32

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

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

Show answer

Answer: 25

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

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

Show answer

Answer: 15

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

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

Show answer

Answer: 35

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

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

Show answer

Answer: 7

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

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

Show answer

Answer: 8

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

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

Show answer

Answer: -2

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