I am trying to solve a general cubic without complicated substitutions:
$$ ax^3+bx^2+cx +d = 0 $$
Assuming nonzero $a$, after dividing both sides by $a$, moving the $\frac{d}{a}$ term to the RHS and performing further simplifications I get:
$$ (x + \frac{b}{3a}) [ (x+\frac{b}{3a})^2 - \frac{b^2-3ac}{3a^2} ] = \frac{9abc-27a^2d-2b^3}{27a^3} $$
On the LHS I seem to have a product of a linear function and a quadratic function in a vertex form, however I am stuck as to how to proceed next because of the RHS term.
I notice that the $b^2-3ac$ term is $\Delta_0$ and the $9abc-27a^2d-2b^3$ term is, in my case, $-\Delta_1$ from Wikipedia's general formula of the cubic function.
How can I take it further from here?