medium Set 13 Form Exercise

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

Show answer

Answer: 24

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

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

Show answer

Answer: 52

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

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

Show answer

Answer: 5

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

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

Show answer

Answer: 14

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

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

Show answer

Answer: 3

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

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

Show answer

Answer: 60

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

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

Show answer

Answer: 16

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

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

Show answer

Answer: 2

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