1

Let $88k + 41$ be an integer where $k \in \mathbb{Z}$. Is there any value for $k$ such that $88k+41$ is a perfect square? I tried to find that using C++ program but it wasn't successful. I don't know how to find such $k$ or prove that it's impossible.

S.H.W
  • 4,379

4 Answers4

4

$88k+41\equiv8\pmod{11}$

Now for any integer $a,$

$$a^2\equiv0,1,4, 9,5,3\pmod{11}\not\equiv8$$

3

Mod $11$ and you see it's impossible.

WhatsUp
  • 22,201
  • 19
  • 48
3

In case the other response is too advanced, look at the remainders when you divide square numbers by $11$.
The remainders of $1,4,9,...,121$ are $1,4,9,5,3,3,5,9,4,1,0$ Notice the pattern reads the same backwards and forwards. That pattern repeats for 144,... 484.
The remainders are 0,1,3,4,5 or 9. What is the remainder when you divide your number by 11?

Empy2
  • 50,853
1

$\!\bmod 11\!:\ a^{\large 2}\! = 88k\!+\!41 \equiv -3\,\overset{(\ \ )^{\Large 5}}\Longrightarrow\, a^{\large 10} \equiv (-3)^{\large 5} \equiv (-3)(-2)^{\large 2} \equiv -1\,$ contra little Fermat

Bill Dubuque
  • 272,048