3

If you multiply one number by another, you add the first number to itself as many times as is indicated by the second number. For example 2 multiplied by 3 is equal to 6. (Collins Dictionary)

2*3=
First time (of adding): 2+2=4
Second time: 4+2=6
Third time: 6+2=8
then the result is 8?

What did I miss?

ForOU
  • 1,673
  • 6
  • 17

1 Answers1

3

It's a malformed (wrongly simplified) definition of multiplication.

  1. add the first number to itself: 2 + 2 = 4
  2. add the first number to itself: 2 + 2 = 4
  3. add the first number to itself: 2 + 2 = 4

It makes no sense.

You add the first number to the result of the previous step (if none, to 0) as many times as is indicated by the second number.

  1. add the first number to 0: 2 + 0 = 2
  2. add the first number to the result of the previous step: 2 + 2 = 4
  3. add the first number to the result of the previous step: 2 + 4 = 6

My definition might not be perfectly mathematical, but, at least, it can be logically followed.

Andrew Tobilko
  • 12,147
  • 6
  • 30
  • 67