medium Set 21 Form Exercise

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

Show answer

Answer: 13

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

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

Show answer

Answer: 42

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

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

Show answer

Answer: 18

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

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

Show answer

Answer: 135

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

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

Show answer

Answer: 1

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

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

Show answer

Answer: -1

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

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

Show answer

Answer: 45

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

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

Show answer

Answer: -6

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