medium Set 33 Form Exercise

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

Show answer

Answer: 4

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

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

Show answer

Answer: 4

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

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

Show answer

Answer: 1

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

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

Show answer

Answer: 72

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

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

Show answer

Answer: 60

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

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

Show answer

Answer: -8

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

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

Show answer

Answer: 2

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

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

Show answer

Answer: 144

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