7
$\begingroup$

I need solution check to see if I overlooked something:

If $x^4+y^4=z^2$ has an integer solution then $(\frac{x}{y})^4+1=(\frac{z}{y^2})^2$ has a solution in rationals.

Second equation is equivalent to $X^4+1=Y^2$ which can be written as cubic Weierstrass form $$v^2=u^3-4u$$ where $u=\frac{2(Y+1)}{X^2}$ and $v=\frac{4(Y+1)}{X^3}$. By using SAGE we can see that Mordell-Weil group of this elliptic curve is empty (SAGE returns empty set, but I'm not sure if that is enough to conclude this), so we can conclude that there are no rational solutions to the second equation and no integer solution to the first one.

edit: No integer solution in positive integers.

  • 2
    Invoking a computer program to compute the mordell-weil group is serious overkill here. The claim you want can be settled just by looking at Pythagorean triples, as is done, for example, [here](http://www.cut-the-knot.org/wiki-math/index.php?n=Arithmetic.FLTForNEq4)2017-01-07
  • 0
    I wouldn't say empty. The rank is probably zero, but there are at least 4 torsion points: generated by $P=(0,0)$ and $Q=(-2,0)$.2017-01-07
  • 0
    Considering the A from Michael Rozenberg, did you mean no POSITIVE integer solutions?2017-01-07
  • 0
    @user254665 Perhaps "non-trivial solutions", i.e., with $xyz\neq 0$.2017-01-07

4 Answers 4

1

SAGE 6.7 implements an algorithm due to Peth, et al. (See A. Peth, H. G. Zimmer, J. Gebel, E. Herrmann, Computing all S-integral points on elliptic curves, Math. Proc. Camb. Philos. Soc. 127 (1999), No.3, 383-402) which is considered robust. I've had papers accepted which invoked SAGE, and it was trusted with finding all the integer points on the elliptic curves. So the answer to your question is "Yes". But of course, some reader may have doubts.

6

There are no positive integer solutions to $x^4+y^4=z^2.$ By contradiction suppose $(x,y,z)$ is a positive solution with the least possible $z.$

If a prime $p$ divides $x$ and $y$ then $p^4$ divides $z^2,$ so $p^2$ divides $z.$ But then $(x',y',z')=(x/p,y/p,z/p^2)$ is a positive solution with $z'

Therefore $x,y$ are co-prime. So $(x^2,y^2,z)$ is a Fundamental Pythagorean triplet. So there exist co-prime positive integers $m,n$, not both odd, with $\{x^2,y^2\}=\{m^2-n^2, 2mn\}$ and $z=m^2+n^2.$ WLOG $x^2=m^2-n^2$ and $y^2=2mn.$ Note that $x$ is odd and $y$ is even.

Now $x^2+n^2=m^2.$ A prime divisor of both $x$ and $n$ must divide $m,$ but $\gcd(m,n)=1.$ So $x,n$ are co-prime and $(x,n,m)$ is a Fundamental Pythagorean triplet. So there are co-prime positive integers $a,b$ with $\{a^2-b^2, 2ab\}=\{x,n\}$ and $a^2+b^2=m.$ Since $x$ is odd we have $x=a^2-b^2$ and $n=2ab.$

Now $y^2=2mn=2(a^2+b^2)(2ab)=4(a^2+b^2)ab.$ But $\gcd (a,b)=1$ so the members of $\{a,b, a^2+b^2\}$ are pair-wise co-prime and their product $(y/2)^2$ is a square. Therefore each of $a,b,a^2+b^2$ is a square: There are positive integers $d,e,f$ with $a=d^2,b=e^2,a^2+b^2=f^2.$ Therefore $$ f^2=a^2+b^2=d^4+e^4.$$ But $f^2=a^2+b^2=m

  • 0
    Will it be true that the equation $X^4 + Y^4 = Z^2$ has no non-trivial solutions in a number field $K/\mathbb{Q}$ of odd degree? What if we further assume $K$ has class number 1?2018-12-03
  • 1
    @debanjana . I really dk anything about that2018-12-04
3

The following is not an answer, almost like a lengthy version of a comment.

Say $a=x^2$ and $b=y^2$.

Then the equation becomes $a^2+b^2=z^2$.

Now we can conclude that $a,b,z$ will of the following forms courtesy this proof: $$a=d\cdot 2pq$$ $$b=d\cdot (p^2-q^2)$$ $$z=d\cdot (p^2+q^2)$$

where $d=\mathrm{gcd}(a,b,z)$ and $p,q \in \mathbb{N}$.

Now $a$ and $b$ are $2$ perfect squares.

So the problem now reduces to this:

Prove that numbers having the form $d\cdot 2pq$ and $d\cdot (p^2-q^2)$ cannot be perfect squares.

See if this helps.

P.S. If you still want some alternate method to find solutions of $a^2+b^2=z^2$, you can look up this link.

2

I think you equation has infinitely many integer solutions.

For example $\{(a,0,a^2)|a\in\mathbb Z\}$.

  • 0
    Good point. It does not say positive integer in the Q.2017-01-07
  • 4
    These solutions are all "trivial", i.e., they satisfy $xyz=0$.2017-01-07