medium Set 11 Form Exercise

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

Show answer

Answer: 96

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

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

Show answer

Answer: 7

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

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

Show answer

Answer: 20

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

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

Show answer

Answer: 224

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

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

Show answer

Answer: 7

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

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

Show answer

Answer: 32

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

Math Maze: Start at 3. Follow the path: -1 → +6 → -5 → -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":6,"result":8}
  • {"op":"-","operand":5,"result":3}
  • {"op":"-","operand":1,"result":2}
FinalValue
2
PathDescription
Step 1: -1 = 2; Step 2: +6 = 8; Step 3: -5 = 3; Step 4: -1 = 2

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

Show answer

Answer: 4

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