medium Set 54 Form Exercise

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

Show answer

Answer: -2

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

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

Show answer

Answer: 1

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

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

Show answer

Answer: 15

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

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

Show answer

Answer: 8

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

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

Show answer

Answer: 336

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

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

Show answer

Answer: 64

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

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

Show answer

Answer: 2

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

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

Show answer

Answer: 31

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