Wednesday, July 13, 2016

number theory - Prove $x = sqrt[100]{sqrt{3} + sqrt{2}} + sqrt[100]{sqrt{3} - sqrt{2}}$ is irrational


Prove $x = \sqrt[100]{\sqrt{3} + \sqrt{2}} + \sqrt[100]{\sqrt{3} - \sqrt{2}}$ is irrational.


I can prove that $x$ is irrational by showing that it's a root of a polynomial with integer coefficients and use rational root theorem to deduce it must be either irrational or an integer and then show it's not an integer, therefore, it must be irrational.


I was wondering what are the other methods to prove $x$ is irrational. I'd be very interested in seeing alternative proofs.


Answer



Let $y = \sqrt[100]{\sqrt{3} + \sqrt{2}}$. Then $x = y + {1 \over y}$. Suppose $x$ were some rational number $q$. Then $y^2 - qy + 1 = 0$. This means ${\mathbb Q}(y)$ is a field extension of ${\mathbb Q}$ of degree two, and every rational function of $y$ is in this field extension. This includes $y^{100} = \sqrt{3} + \sqrt{2}$, and $y^{-100} = \sqrt{3} - \sqrt{2}$. So their sum and difference is also in ${\mathbb Q}(y)$. Hence ${\mathbb Q}(\sqrt{2},\sqrt{3}) \subset {\mathbb Q}(y)$. But ${\mathbb Q}(\sqrt{2},\sqrt{3})$ is an extension of ${\mathbb Q}$ of degree 4, a contradiction.


You can make the above more elementary by showing successive powers of $y$ are always of the form $q_1y + q_2$ with $q_1$ and $q_2$ rational and eventually showing some $q_3\sqrt{2} + q_4\sqrt{3}$ must be rational, a contradiction.


No comments:

Post a Comment

analysis - Injection, making bijection

I have injection $f \colon A \rightarrow B$ and I want to get bijection. Can I just resting codomain to $f(A)$? I know that every function i...