Write three consecutive numbers starting with number n+1, where n is natural number. Find the sum of those numbers and prove that it is divisible by 3.

Respuesta :

Consecutive numbers differ by one, which means that if you start with a certain integer [tex] x [/tex], you obtain the next integer by adding one.

So, if you start with [tex] n+1 [/tex], the three consecutive numbers are

[tex] n+1,\quad (n+1)+1 = n+2,\quad (n+2)+1 = n+3 [/tex]

The sum of these three numbers is

[tex] (n+1) + (n+2) + (n+3) = 3n+6 [/tex]

This number is divisible by 3 because you can write it as

[tex] 3n+6 = 3(n+2) [/tex]

Note that this is true in general: the sum of three consecutive numbers is always divisible by three, because it is three times the middle number.