I was trying to prove that pythagorean triplets exists in Natural Number domain.
Here's simplified argument that I did:
consider two natural numbers $x$ and $y$ such that $x > y \ge 1$.
- $(x + y)^2 = (x - y)^2 + (2 . \sqrt {xy})^2$
- The above equation is of form $a^2+ b^2 = c^2$
- so, $a = (x - y), b = (2 . \sqrt {xy})$ and $c = (x + y)$
- $a$ and $c$ are Natural numbers. For $b$ to be a natural number, $xy$ must be a perfect square
- proof that for some $x$ and $y$, $xy$ is perfect square: considering $xy = p_1^{2i} . p_2^{2j} . p_3^{2k} . \cdots . p_n^{2z}$, where $p_1,p_2, \cdots, p_n$ are prime factors of $xy$ and $i, j, k, ... , l$ are whole numbers. So it is evident that there can be atleast one combination of $x$ and $y$ which can result in $xy$ being a perfect square
- STATEMENT (CONCLUSION): there exists natural numbers $a, b$ and $c$ such that $a^2+b^2 = c^2$, where:
- $a = x – y, b = 2\sqrt {xy},$ and $c = x + y$
- $x$ and $y$ are natural numbers
- $xy$ is a perfect square.
To test whether the above statement is true, I just took
- $xy = 81$ and $x = 27$ and $y = 3$. So, $a = 24, b = 18, c = 30$. This is a true triplet.
- $xy = 4$ and $x = 4$ and $y = 1$. So, $a = 3, b = 4$ and $c = 5$. This is a true triplet (and also primitive).
Now, using above statement, I want to define Primitive pythagorean triplet. So, a and b should be co-prime. So I have to introduce atleast one more condition along with previous statement to define Primitive Pythagorean triplet.
I intuitively begin to think that if natural numbers x and y are co-prime, then $(x-y)$ and $\sqrt {xy}$ are also co-prime, but I dont know whether this is true and if its true, then how to prove.
Is there any theorems that I could use to prove this?