1

I have in my notes the form of the integers as: enter image description here

Now, I know that I have to use the division algorithim to prove the first form, and I can do this, but in the second form of an integer $4k$ isn't the "so on" redundant by the division alogirithim since there is no integer of the form $x=4k+4$ or does the "so on" simply imply that we can also have $5k, 5k+1....5k+4$ and $6k,6k+1...$?

I have a couple of other questions. I know how to prove the form of the square of any integer, however, in my proof, and any other proof, we assume $k=3q^2+2qr$ and I have also done a similar thing for proving the form of a cube. However, how is this valid since we have assumed the form of every integer to be $3q^2+2qr$, and then not implemented it in the for the form of the square?

1 Answers1

1

You have shown that any integer $n$ is of the form $3q+r$ where $r\in \{0,1,2\}$, so its square can be written as $n^2=9q^2+6qr+r^2=3(3q^2+2qr)+r^2$ as you already mentioned. I do not understand your question about "assuming $k=3q^2+2qr$."

The question asks us to show that the remainder of $n^2$ after dividing by $3$ is $0$ or $1$. Since $3(3q^2+2qr)$ is divisible by $3$ it suffices to look at the remainder of $r^2$ when dividing by $3$.

If $r$ is $0$, $1$, or $2$, then $r^2$ is $0$, $1$, or $4$ respectively; so indeed the remainder when dividing by $3$ is $0$ or $1$.


Maybe an example will be clearer. Suppose we want to show that $64$ is of the form $3k$ or $3k+1$. So, $n=8$, and it can be written as $8=2\cdot 3+2$. Then, squaring both sides gives $64 = 4 \cdot 9 + 2 \cdot 2 \cdot 3 + 4 = 3(4 \cdot 3 + 2 \cdot 2) + 4$. What is the remainder when you divide $3(4\cdot 3 + 2 \cdot 2) + 4$ by $3$?

angryavian
  • 89,882