0

I was wondering if anybody knew a way to show that the Diophantine equation given by:

$a^3 + b^3 + c^3 - 3abc =1$

Only has solutions $(1,0,0)$, $(0,1,0)$, and $(0,0,1)$.

The only idea I have had is to consider it modulo $3$, in which case $a^3 =a$ (Fermat's Little Theorem). So then

$a+b+c=1 ($mod $3)$.

But this didn't prove to be very helpful.

Edit: For those interested, this shows that the permutation matrix given by

$P =\left( \begin{matrix} 0 & 0 & 1 \\ 1 & 0 & 0 \\ 0 & 1 & 0 \end{matrix} \right)$

Does not commute with any $3 \times 3$ matrices which have determinant $1$ and integer entries. The equation $$PA = AP$$ implies that $A= \left( \begin{matrix} a & b & c \\ c & a & b \\ b & c & a \end{matrix} \right),$ and so the determinant equation is $a^3 + b^3 + c^3 -3abc =1$.

3 Answers3

3

Since $$a^3+b^3+c^3-3abc=(a+b+c)(a^2+b^2+c^2-ab-ac-bc)$$ and $$a^2+b^2+c^2-ab-ac-bc=\frac{1}{2}\sum_{cyc}(a-b)^2\geq0,$$ we obtain $$a+b+c=1$$ and after substitution $c=1-a-b$ we obtain $$a^2+ab+b^2=a+b$$ or $$a^2+(b-1)a+b^2-b=0,$$ which gives $$(b-1)^2-4(b^2-b)\geq0$$ or $$-\frac{1}{3}\leq b\leq1,$$ which gives $$b\in\{0,1\}.$$ By the same way we can get that $a\in\{0,1\}$ and with $a+b+c=1$ it gives the answer.

1

The next ingredient is that $$ a^2 + b^2 + c^2 - ab - ac - bc = \frac{1}{2} \left( (a-b)^2 + (b-c)^2 + (c-a)^2 \right). $$ This is non-negative and can only be $1$ for the two patterns $(t,t,t+1)$ or $(t, t+1, t+1)$ in order. If, however, $t <0,$ the sum $a+b+c$ becomes negative. So, what remains (see comment by Shark) is $t \geq 0$ and either $3t+1=1$ or $3t+2 = 1.$ As $t$ is an integer, it must be the first pattern, with $t=0,$ giving $(0,0,1)$ when put in order.

Will Jagy
  • 139,541
0

Strangely enough, the solution is finite.

for the equation:

$$X^3+Y^3+Z^3-3XYZ=q=ab$$

If it is possible to decompose the coefficient as follows: $4b=k^2+3t^2$

Then the solutions are of the form:

$$X=\frac{1}{6}(2a-3t\pm{k})$$

$$Y=\frac{1}{6}(2a+3t\pm{k})$$

$$Z=\frac{1}{3}(a\mp{k})$$

Thought the solution is determined by the equation Pell, but when calculating the sign was a mistake. There's no difference, but the amount should be. Therefore, the number of solutions of course.

individ
  • 4,301