2015 USAMO Problems/Problem 1

Revision as of 22:42, 15 March 2020 by Fidgetboss 4000 (talk | contribs) (added my solution)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Problem

Solve in integers the equation \[x^2+xy+y^2 = \left(\frac{x+y}{3}+1\right)^3.\]

Solution

We first notice that both sides must be integers, so $\frac{x+y}{3}$ must be an integer.

We can therefore perform the substitution $x+y = 3t$ where $t$ is an integer.

Then:

$(3t)^2 - xy = (t+1)^3$

$9t^2 + x (x - 3t) = t^3 + 3t^2 + 3t + 1$

$4x^2 - 12xt + 9t^2 = 4t^3 - 15t^2 + 12t + 4$

$(2x - 3t)^2 = (t - 2)^2(4t + 1)$

$4t+1$ is therefore the square of an odd integer and can be replaced with $(2n+1)^2 = 4n^2 + 4n +1$

By substituting using $t = n^2 + n$ we get:

$(2x - 3n^2 - 3n)^2 = [(n^2 + n - 2)(2n+1)]^2$

$2x - 3n^2 - 3n = \pm (2n^3 + 3n^2 -3n -2)$

$x = n^3 + 3n^2 - 1$ or $x = -n^3 + 3n + 1$

Using substitution we get the solutions: $(n^3 + 3n^2 - 1, -n^3 + 3n + 1) \cup (-n^3 + 3n + 1, n^3 + 3n^2 - 1)$

Solution 2

Let $n = \frac{x+y}{3}$. Thus, $x+y = 3n$. We have \[x^2+xy+y^2 = \left(\frac{x+y}{3}+1\right)^3 \implies (x+y)^2 - xy = \left(\frac{x+y}{3}+1\right)^3\] Substituting $n$ for $\frac{x+y}{3}$, we have \[9n^2 - x(3n-x) = (n+1)^3\] Treating $x$ as a variable and $n$ as a constant, we have \[9n^2 - 3nx + x^2 = (n+1)^3,\] which turns into \[x^2 - 3nx + (9n^2 - (n+1)^3) = 0,\] a quadratic equation. By the quadratic formula, \[x = \frac{1}{2} \left(3n \pm \sqrt{9n^2 - 4(9n^2 - (n+1)^3)} \right)\] which simplifies to \[x = \frac{1}{2} \left(3n \pm \sqrt{4(n+1)^3 - 27n^2} \right)\] Since we want $x$ and $y$ to be integers, we need $4(n+1)^3 - 27n^2$ to be a perfect square. We can factor the aforementioned equation to be \[(n-2)^2 (4n+1) = k^2\] for an integer $k$. Since $(n-2)^2$ is always a perfect square, for $(n-2)^2 (4n+1)$ to be a perfect square, $4n + 1$ has to be a perfect square as well. Since $4n + 1$ is odd, the square root of the aforementioned equation must be odd as well. Thus, we have $4n + 1 = a^2$ for some odd $a$. Thus, \[n = \frac{a^2 - 1}{4},\] in which by difference of squares it is easy to see that all the possible values for $n$ are just $n = p(p-1)$, where $p$ is a positive integer. Thus, \[x+y = 3n = 3p(p-1).\] Thus, the general form for \[x = \frac{1}{2} \left(3p(p-1) \pm \sqrt{4(p(p-1)+1)^3 - 27(p(p-1))^2} \right)\] for a positive integer $p$. (This is an integer since $4(p(p-1)+1)^3 - 27(p(p-1))^2$ is an even perfect square (since $4(p(p-1)+1)$ is always even, as well as $27(p(p-1))^2$ being always even) as established, and $3p(p-1)$ is always even as well. Thus, the whole numerator is even, which makes the quantity of that divided by $2$ always an integer.) Since $y = 3n - x$, the general form for $y$ is just \[y = 3p(p-1) - \frac{1}{2} \left(3p(p-1) \pm \sqrt{4(p(p-1)+1)^3 - 27(p(p-1))^2} \right)\] (This is an integer since $4(p(p-1)+1)^3 - 27(p(p-1))^2$ is an even perfect square (since $4(p(p-1)+1)$ is always even, as well as $27(p(p-1))^2$ being always even) as established, and $3p(p-1)$ is always even as well. Thus, the whole numerator is even, which makes the quantity of that divided by $2$ always an integer, which thus trivially makes \[3p(p-1) - \frac{1}{2} \left(3p(p-1) \pm \sqrt{4(p(p-1)+1)^3 - 27(p(p-1))^2} \right)\] an integer.) for a positive integer $p$. Thus, our general in integers $(x, y)$ is \[(\frac{1}{2} \left(3p(p-1) \pm \sqrt{4(p(p-1)+1)^3 - 27(p(p-1))^2} \right), 3p(p-1) - \frac{1}{2} \left(3p(p-1) \pm \sqrt{4(p(p-1)+1)^3 - 27(p(p-1))^2} \right).\] $\boxed{}$

-fidgetboss_4000