7

On a practice exam, our teacher provides us with this question and this answer.

Let $p$ be a prime number. Use contradiction to prove that $\sqrt{p}$ is irrational.

ANSWER: By way of contradiction, assume $\sqrt{p}$ is rational. Then there exist $a, b \in \mathbb{Z}$ with $b\neq 0$ such that $\sqrt{p} = \frac{a}{b}$. Without loss of generality, we may assume $\text{gcd}(a,b) = 1$. Then $p = \frac{a^2}{b^2}$. Thus, $p | a^2$ which implies $p | a$, i.e., $\exists k \in \mathbb{Z}$ such that $p k = a$. We now have $p b^2 = (pk)^2 = p(p k^2)$, so $p b^2 = a^2$. Since $p \neq 0$, $b^2 = p k^2$, which means $p|b$. Thus, $p$ is a common factor of $a$ and $b$. This is a contradiction, as $a$ and $b$ are relatively prime.

My question is, how do you know to assume that the $\text{gcd} (a,b)=1$? It seems really random, and I don't know why the proof jumps there.

Ali
  • 247
  • 4
    It means you only want to consider fractions in lowest terms (e.g. worrying only about $1/2$ and not about $2/4$, $3/6$, etc.) – J. M. ain't a mathematician May 14 '12 at 16:29
  • My mistake. By the original title, I assumed the original poster meant "$\sqrt{\pi}$ is irrational. I didn't notice "let $p$ be a prime number". I will edit this now back to $p$. Thanks for point it out. – Rick May 14 '12 at 16:52
  • Sorry to post here but i cant comment for some reason. Can somebody explain me why if p/a^2 then p|a ? im missing sth and i dont seem to get it. – Plom Jun 30 '13 at 21:23
  • Just leaving this here, because it may be useful... I rarely see people proving this using the fact that if a root of a monic polynomial is rational, than it is an integer and it divides the coefficient free of variables (and it is quite easy to prove this). So, if there was a root of $x^2 - p$, it would have to be $1,-1,p,-p$. It is easily verified that none of them solves it. – Aloizio Macedo Jun 30 '13 at 23:00
  • The fundamental theorem of arithmetic: If $a|b c$ and $\gcd (a,b)=1$ then $a|c.$ This follows from Euclid's algorithm for finding $\gcd (a,b).$ Euclid's method shows that there exist integers $x, y$ with $a x+b y=\gcd (a,b).$...... So if prime $ p\not | a$ there exist integers $x,y$ with $a x+p y=1.$ This implies that $a^2 x^2$ is $1$ more than a multiple of $p,$ so $p\not | x^2.$ – DanielWainfleet May 08 '16 at 03:17

1 Answers1

6

You can make this assumption, because you lose no generality. Indeed, suppose $\text{gcd} (a,b) = d \neq 1$. Then we can write $a = d \cdot a'$ and $b = d \cdot b'$, for some relatively prime integers $a'$ and $b'$. But then $$ \sqrt{p} = \frac{a}{b} = \frac{d a'}{d b'} = \frac{a'}{b'}, $$ so you are back in the situation that you wrote above, i.e. that $\sqrt{p}$ is a ratio of two relatively prime integers.

Arturo Magidin
  • 398,050
Rick
  • 2,017