(Proof) Square of integer is 3k or 3k+1

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
3 replies · 18K views
jimmypoopins
Messages
64
Reaction score
0

Homework Statement


Prove that the square of any integer a is either of the form 3k or of the form 3k+1 for some integer k.

Homework Equations


The Division Algorithm: Let a,b be integers with b>0. Then there exists unique integers q and r such that a = bq + r and 0<=r<b

The Attempt at a Solution


I know from the division algorithm that any integer a can be written as 3q, 3q+1, or 3q+2, so
a^2=(3q)^2=9q^2=3(3q^2), or
a^2=(3q+1)^2=9q^2+6q+1, or
a^2=(3q+2)^2=9q^2+12q+4,
but i don't understand how the 3q+1 or 3q+2 case helps me.

Can anyone give me some hints or point me further in the right direction? thanks.
 
Last edited:
Physics news on Phys.org
Well it's obviously not going to be of the form 3k, right? So try to fit it to the other form, namely 3k+1. That means strip a +1 off from the +4 at the end. It should fall right out.
 
Good Work, you are basically done. Copying and pasting what you wrote,

a^2=(3q)^2=9q^2=3(3q^2), or
a^2=(3q+1)^2=9q^2+6q+1 = 3(3q^2 + 2q) + 1, or
a^2=(3q+2)^2=9q^2+12q+4 = 3(3q^2 + 4q + 1) + 1,

so you are done.
 
ircdan said:
Good Work, you are basically done. Copying and pasting what you wrote,

a^2=(3q)^2=9q^2=3(3q^2), or
a^2=(3q+1)^2=9q^2+6q+1 = 3(3q^2 + 2q) + 1, or
a^2=(3q+2)^2=9q^2+12q+4 = 3(3q^2 + 4q + 1) + 1,

so you are done.

ah, simple arithmetic :) thank you!