medium Set 55 Form Exercise

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

Show answer

Answer: 12

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

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

Show answer

Answer: 76

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

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

Show answer

Answer: 3

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

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

Show answer

Answer: 30

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

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

Show answer

Answer: 12

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

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

Show answer

Answer: 11

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

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

Show answer

Answer: 36

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

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

Show answer

Answer: -1

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