Does any given integer only occur in one primitive Pythagorean triple?

1.5k Views Asked by At

I know that all integers are part of at least one primitive triple. But can this statement be refined to exactly one? From looking at some lists of triples it seems to be true, but I have no clue where I'd start in showing it.

Update: I'm not sure what the etiquette is regarding actually changing the question altogether... hopefully this is alright. I realised I'm actually interested only in whether any numbers act as the smallest number in more than primitive triplet.

5

There are 5 best solutions below

1
On BEST ANSWER

Yes, a number can appear as the smallest value in two distinct primitive triples. For example, $(57, 176, 185)$ and $(57, 1624, 1625)$.

In fact, choose any two relatively prime positive integers $p$ and $q$ with $q+1 < p < q(1+\sqrt{2})$ and having opposite parity. Then $p^2-q^2 < 2pq$, and $(a,b,c)=(p^2-q^2, 2pq, p^2+q^2)$ is a primitive triple. Another primitive triple with $a$ as smallest element can be derived from the generators $r=\frac{a+1}{2}, s=\frac{a-1}{2}$: $$(r^2-s^2, 2rs, r^2+s^2) = \left(a,\frac{a^2-1}{2}, \frac{a^2+1}{2}\right).$$

2
On

The example $(3,4,5)$ and $(5,12,13)$ shows that some positive integers can appear in more than one primitive triple.

1
On

There are integers that are in more than one primitive triple. For example $5$ occurs in $(3,4,5)$ and $(5,12,13)$. The number $65$ occurs in $(33,56,65)$, $(65,72,97)$ and $(63,16,65)$.

0
On

Let $1<n\equiv 1 \pmod 4$ such that $n=a^2b$ where any prime divisor (if any) of $a$ is $\equiv 3\pmod 4,$ and every prime divisor of $b$ is $\equiv 1 \pmod 4 ,$ and $b>1.$ Then $n=c^2+d^2$ for some co-prime $c,d\in N,$ with $c,d$ not both odd.

But since $n=2m+1$ with $m\in N$ we have $n=(m+1)^2-m^2,$ and $\gcd (m,m+1)=1.$

So $n$ appears as one of the 2 smaller members in $((m+1)^2-m^2, 2m(m+1), (m+1)^2+m^2)$ and as the largest member in $(|c^2-d^2|,2cd,c^2+d^2).$ For Examples: $n=5, c=2,d=1,m=2.$ And $n=13, c=3,d=2,m=6.$

0
On

Any factorization of the even term into $2rs$ with $r,s$ relatively prime gives a triple with that term in it. For example, take $rs = 2\cdot3\cdot5$ and we get two triples

$$(6^2 - 5^2, 60, 6^2 + 5^2) = (11, 60, 61) $$ $$(10^2 - 3^2, 60, 10^2 + 3^2) = (91, 60, 109) $$ $$(15^2 - 2^2, 60, 15^2 + 2^2) = (221, 60, 229) $$

More generally, if we take $rs = 2\cdot3\cdot n$ where $\gcd(n,6) = 1$ and $n \neq 1$. Then, two triples where the even term appears as the smallest will be

$$ (12n, 4n^2 - 9, 4n^2 + 9) \qquad (12n, 9n^2 - 4, 9n^2 + 4) $$