medium Set 76 Form Exercise

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

Show answer

Answer: 1

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

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

Show answer

Answer: 15

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

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

Show answer

Answer: 6

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

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

Show answer

Answer: 10

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

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

Show answer

Answer: 13

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

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

Show answer

Answer: -1

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

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

Show answer

Answer: 66

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

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

Show answer

Answer: 3

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