80
$\begingroup$

Let $a,b$ be positive integers.

When $k = \frac{a^2 + b^2}{ab+1}$ is an integer, it is a square.


Proof 1: (Ngô Bảo Châu): Rearrange to get $a^2-akb+b^2-k=0$, as a quadratic in $a$ this has two values: $a$ and $kb - a = (b^2-k)/a$. (The second root is determined in two different ways from the expansion $(x-r_1)(x-r_2) = x^2 - (r_1 + r_2)x + r_1 r_2$.)

Now suppose we have $a,b$ such that $k$ is an integer but not a square, by the investigation about roots we have that the second root is a nonzero integer since $k,b,a$ are integers and $k \not = b^2$, futhermore it is positive which is easily seen from its defining equation.

WLOG assume $a \ge b$ so that the second root is strictly smaller than $a$. This leads to a decent, replacing $a$ with the second root.


Proof 2 (Don Zagier): Apply reduction theory (specifically, Sätze 1 and 2 of Section 13 of my book on quadratic fields) to the quadratic form $x^2 + kxy + y^2$, which is the unique reduced quadratic form in its equivalence class.


Note that Proof 2 is pretty much the same as Proof 1 when written out in explicit detail, but I could not read Zagier's book because I cannot read German.

I would like to know more approaches to this and other alternative proofs of this result if possible! Thanks in advance.

I would also be interested in related problems (especially easier ones of a similar nature) and texts which cover the reduction theory in English.

  • 0
    When you say "has values $a$ and $kb-a$," presumably you mean "roots."2018-11-13

2 Answers 2

27

This is, IMHO, one of the most popular (and actually the most beautiful) problems in number theory. It is IMO 1988 Problem 6.

You can find it in these links (most of the solutions are the same as the two you remarked, but you may find some more facts about these problems if you see below):

http://www.artofproblemsolving.com/Forum/viewtopic.php?&t=57282 (master link)

http://www.artofproblemsolving.com/Forum/viewtopic.php?t=192471

http://www.artofproblemsolving.com/Forum/viewtopic.php?t=195433

http://www.artofproblemsolving.com/Forum/viewtopic.php?t=297533

http://www.artofproblemsolving.com/Forum/viewtopic.php?t=271870

This is a cool generalization of this problem (you may see this, too):

Problem. Let $a,b$ be positive integers satisfying $(ab)^{n-1}+1 \mid a^n +b^n.$ Then the number $\frac{a^n +b^n}{(ab)^{n-1}+1}$ is a perfect $n^{th}$ power.

Here are some nice problems related to this one:

http://www.artofproblemsolving.com/Forum/viewtopic.php?t=119551

http://www.artofproblemsolving.com/Forum/viewtopic.php?t=345094

http://www.artofproblemsolving.com/Forum/viewtopic.php?t=375674

http://www.artofproblemsolving.com/Forum/viewtopic.php?t=26374

And, for the sake of completeness about this problem, see Vieta Jumping Method. (IMO 1988 is the best example for Vieta Jumping!)

17

Let us prove the general case: if $a, b, n\in \mathbb{N}$ and $c:=\frac{a^n+b^n}{(ab)^{n-1}+1}$ then $c\in\mathbb{N}$ is an $n$th power.

Proof: In order to show, it is clear that we need to express $c$ as $c=t^n$ for some $t\in\mathbb{N}$, isn't it?

So let us consider $a=t^{\alpha}, b=t^{\beta}$. We are given that $a, b$ are integers (WOLOG we have chosen as positive integers) and hence if $c$ is supposed to be as $t^n$ then $a, b$ have to be some power of $t$; Otherwise, contradiction will arrive.

So we have $c=\frac{a^n+b^n}{(ab)^{n-1}+1}$ $i.e. c =\frac{(t^\alpha)^n+(t^\beta)^n}{(t^{\alpha+\beta})^{n-1}-1}$ $i.e. c =\frac{t^{n\beta}(t^{n\alpha-n\beta})+1}{t^{(\alpha+\beta)(n-1)}+1} $

So let $\beta=\beta_0$. Now in order to make $c$ as integer, we must have $t^{(\alpha+\beta_0)(n-1)}+1 \mid t^{n\alpha-n\beta_0}+1$ which is true iff $(\alpha+\beta_0)(n-1)\mid (n\alpha-n\beta_0)$ $\text{iff}\; (\alpha+\beta_0)(n-1)s=n\alpha-n\beta_0 \; \text{for some}\; s\in\mathbb{N}$ $\text{so}\; \alpha=\frac{-\beta_0(2n-1)}{(n-1)s-n}$

We choose $s$ in such a way that $\alpha$ is in $\mathbb{N}$. For the sake of simplicity we take $s=1$ then $\alpha=\beta_0(2n-1)$.

Thus we have $a=t^{\alpha}=t^{\beta_0 (2n-1)}, b=t^{\beta_0}, \beta_0 \in\mathbb{N}.$ And consequently $c=t^{n\beta_0}=(t^{\beta_0})^n$. We are done.

  • 0
    https://mathoverflow.net/questions/250172/when-is-fa-b-fraca2b21ab-a-perfect-square-rational-number/250187#2501872017-07-06