2
$\begingroup$

To be honest, I don't know where to start with this problem:

Let $n\in \mathbb{N}$. Prove that if $9n^2$ is the sum of two perfect squares $(a^2,b^2)$, then $a$ and $b$ are multiples of $3$.

  • 0
    Do you know modular arithmetic?2017-02-20
  • 0
    Just enough to get by2017-02-20
  • 0
    What are the possibilities for $a^2$ modulo $9$?2017-02-20
  • 0
    $3$ is a prime in $\mathbb{Z}[i]$.2017-02-20

4 Answers 4

7

Taking $9n^2=a^2+b^2$ modulo $3$, we get $$0\equiv a^2+b^2\pmod{3}$$ Now, mod $3$, we have $0^2\equiv 0, 1^2\equiv 1, 2^2\equiv 1$. The only way two of these sum to $0$ is $0+0$, so $a^2,b^2$ are both equivalent to $0$ mod $3$.

Hence, $3|a^2$ and $3|b^2$. However, $3$ is prime, so in fact $3|a$ and $3|b$.

2

If one of them is not, say wlog $ a $, then $ a^2 + b^2 \equiv 0 \pmod{9} $, and $ (b/a)^2 \equiv -1 \pmod{9} $ so that $ b/a $ has order $ 4 $ in the group $ (\mathbf Z/9 \mathbf Z)^{\times} $ of order $ 6 $, contradicting Lagrange's theorem.

1

To clarify on vadim's answer after concluding that $$\cases{0^2=0\equiv 0\mod3 \\1^2=1\equiv 1\mod3 \\2^2=4\equiv 1\mod3 }$$ we can make a table of all combinations: $$\begin{array}{|cc|cc|}\hline a(mod3)&b(mod3)&a^2(mod3)&b^2(mod3)\\\hline 0&0&0&0\\0&1&0&1\\0&2&0&1\\1&0&1&0\\1&1&1&1\\1&2&1&1\\2&0&1&0\\2&1&1&1\\2&2&1&1\\\hline\end{array}$$

we can see that the only way to sum to something divisible by 3 is the first, where both combinations are $0\mod 3$

0

Logically speaking, $$9n^2 = a^2 + b^2 \iff \left({a\over3}\right)^2 + \left({b\over3}\right)^2 = n^2.$$ It is clear that $n^2 \in \mathbb Z$, but because $a^2, b^2$ are perfect squares, then $a,b,n\in\mathbb Z$. Can you see where to take it from here?

  • 1
    what about the equation $a^2+b^2=16 n^2?$2017-02-20