medium Set 83 Form Exercise

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

Show answer

Answer: 2

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

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

Show answer

Answer: 6

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

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

Show answer

Answer: 12

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

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

Show answer

Answer: 8

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

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

Show answer

Answer: 9

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

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

Show answer

Answer: -3

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":"-","operand":1,"result":-3}
FinalValue
-3
PathDescription
Step 1: -1 = 0; Step 2: -1 = -1; Step 3: ×2 = -2; Step 4: -1 = -3

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

Show answer

Answer: 35

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

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

Show answer

Answer: -2

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