I'm trying to find all of the the roots to the following polynomial with a variable second coefficient: $$P(x)=4x^3-px^2+5x+6$$ All of the roots are rational, and $p$ is too. It is also given that the difference of 2 roots equals the third, e.g. $r-s=t$. I would like to solve for the roots using relationships between roots & the rational roots theorem.
I know from relationships between roots (Vieta's formula) that $p/4=r+s+t$, which can be reduced to $p/4=2r$ per the previous equation, and therefore $p/8$ is a root. However, I'm not sure where to go from here-- performing the substitution with the other coefficients does not seem to yield anything that lets me solve for a root or $p$. For example, we know from the coefficient of $x^0$ that $$5/4=rs+rt+st=rs+(r+s)(r-s)$$ but there is no obvious substitution that can be made here that would put things in terms of one variable.
How do I solve for the roots and $p$ using relationships between roots and the rational roots theorem here? Thanks!
Turns out it actually was possible to use relationships between roots here to help factor the equation, I just wasn't looking hard enough.
Since $r - s = t$, then $r = s + t$. As mentioned, $\frac 54 = rs + st + rt = st + (s + t)^2$. Now, both $st$ and $s + t$ can be written in terms of $r$, since
$$ -\frac 32 = rst $$
$$ -\frac 3{2r} = st $$
and $s + t = r$. So substituting those values in, we get
$$ \frac 54 = -\frac 3{2r} + r^2 $$
$$ \frac 54 r = -\frac 32 + r^3 $$
$$ 0 = r^3 - \frac 54 r - \frac 32 $$
$$ 0 = 4r^3 - 5r - 6 $$
at which point we can use synthetic division to solve for $r$ (since all roots are rational). Then we get $r = \frac 32$ as a root, and factoring out $2x - 3$ and using the quadratic formula to solve for the remaining roots, $s = -\frac 12$ and $t = 2$.