Does anyone have any ideas towards solving these four equations one at a time?
- $a^3 - 3a^2b + b^3 = \pm 1$
- $a^3 + 3a^2b - 6 ab^2 + b^3 = \pm 1$
I am guessing that the $1$ might mean we can use units in some algebraic number field to solve these but I have no idea which one or how to find it. Maybe I am wrong entirely.
These are both Thue equations. Mordell shows how to solve $a^3 - 3a^2b + b^3 = 1$ in his book using $p$-adic methods, it is found the solutions are (x,y) = (1,0),(0,-1),(-1,1),(1,-3),(-3,2),(2,1).
These equations can be solved by pari/gp
? p = thueinit(x^3 - 3*x^2 + 1);
? thue(p,1)
% = [[-1, 2], [0, 1], [-1, -1], [-2, -3], [3, 1], [1, 0]]
? thue(p,-1)
% = [[1, -2], [0, -1], [1, 1], [2, 3], [-3, -1], [-1, 0]]
? p = thueinit(x^3 + 3*x^2 - 6*x + 1);
? thue(p,1)
% = [[0, 1], [-1, -1], [1, 0]]
? thue(p,-1)
% = [[0, -1], [1, 1], [-1, 0]]
but it is not clear how they are being solved.