medium Set 54 Form Exercise

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

Show answer

Answer: 2

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

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

Show answer

Answer: 14

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

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

Show answer

Answer: 8

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

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

Show answer

Answer: 22

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

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

Show answer

Answer: 11

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

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

Show answer

Answer: 12

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

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

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

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

Show answer

Answer: 8

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