Find all pair of cubic equations $x^3+ax^2+bx+c=0$ and $x^3+bx^2+ax+c=0$, where $a,b$ are positive integers and $c$ not equal to $0$ is an integer, such that both the equations have three integer roots and exactly one of those three roots is common to both the equations.
I tried the sum and product relationships with the coefficients, but I have more variables than the number of equations.All I got was that the common root has to be $x=1$. What do I next?Thanks.
Suppose the roots of the first polynomial are $s,t,u$ and the roots of the second are $s,v,w$, where $s,t,u,v,w$ are integers. You have $$ \eqalign{ s t u &= svw = -c\cr st + su + tu &= -s -v - w = b\cr -s - t - u &= sv + sw + vw = a\cr}$$ Since $c \ne 0$ we may divide out $s$ from the first equation, obtaining $tu = vw$. The resultant of $st + su + tu + s + v + w$ and $sv + sw + vw + s + t + u$ with respect to $s$ is $$ -utw-utv+uwv+twv+{u}^{2}+tu+{t}^{2}-{w}^{2}-wv-{v}^{2}+u+t-w-v$$ and the resultant of this and $tu - vw$ with respect to $t$ is $$ \left( u-w \right) \left( u-v \right) \left( uwv+{u}^{2}+uv+uw+wv+u \right) $$ Now we don't want $u=w$ or $u=v$ because $s$ should be the only root in common, so we must have $$uwv+{u}^{2}+uv+uw+wv+u = u^2 + (w+1)(v+1) u + vw = 0$$ Among the integer solutions of this are $$ \eqalign{v = 0,& u = 0, w = \text{arbitrary}\cr v = 0,& u = -w - 1, w = \text{arbitrary}\cr v = -1,& w = u^2, u = \text{arbitrary}\cr u = -1, & w = -v, v = \text{arbitrary}\cr u = v^2, & w = -v, v = \text{arbitrary}\cr u = -2, & v = -3, w = -8\cr u = -2, & v = -4, w = -5\cr u = -3, & v = -2, w = -12\cr u = -3, & v = -3, w = -5\cr u = -4, & v = -2, w = -10\cr u = -5, & v = -2, w = -10\cr u = -5, & v = -3, w = -5\cr u = -8, & v = -2, w = -12\cr u = -10, & v = -4, w = -5\cr u = -12, & v = -3, w = -8\cr}$$ and those obtained from these by interchanging $v$ and $w$. Substituting these into the first set of equations, I get the following integer solutions with $a,b > 0$ and $c \ne 0$: $$ \eqalign{a &= 13, b = 10, c = -24\cr a &= 11, b = 8, c = -20\cr}$$ I'm not sure these are the only solutions satisfying the requirements, but I wouldn't be surprised.