medium Set 23 Form Exercise

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

Show answer

Answer: 1

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

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

Show answer

Answer: 6

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

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

Show answer

Answer: 108

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

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

Show answer

Answer: 32

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

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

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

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

Show answer

Answer: 34

SubType
math-maze
Difficulty
medium
StartValue
10
Steps
  • {"op":"+","operand":8,"result":18}
  • {"op":"+","operand":3,"result":21}
  • {"op":"+","operand":8,"result":29}
  • {"op":"+","operand":5,"result":34}
FinalValue
34
PathDescription
Step 1: +8 = 18; Step 2: +3 = 21; Step 3: +8 = 29; Step 4: +5 = 34

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

Show answer

Answer: 4

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

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

Show answer

Answer: 4

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