medium Set 17 Form Exercise

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

Show answer

Answer: 10

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

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

Show answer

Answer: 24

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

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

Show answer

Answer: -1

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

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

Show answer

Answer: 12

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

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

Show answer

Answer: 9

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

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

Show answer

Answer: 36

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

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

Show answer

Answer: 2

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

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

Show answer

Answer: 6

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