medium Set 48 Form Exercise

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

Show answer

Answer: 4

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

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

Show answer

Answer: 29

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

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

Show answer

Answer: 5

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

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

Show answer

Answer: 92

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

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

Show answer

Answer: 1

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

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

Show answer

Answer: 144

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

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

Show answer

Answer: 24

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

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

Show answer

Answer: 2

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