medium Set 26 Form Exercise

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

Show answer

Answer: 12

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

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

Show answer

Answer: 40

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

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

Show answer

Answer: 24

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

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

Show answer

Answer: 16

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

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

Show answer

Answer: 14

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

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

Show answer

Answer: 93

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

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

Show answer

Answer: 18

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

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

Show answer

Answer: 2

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