Consider the cubic polynomial $x^3 +px+q$ with $p, q ∈ \mathbb{Q}$. Suppose $α_1, α_2, α_3$ are the roots and thus $$x^3 + px + q = (x − α_1)(x − α_2)(x − α_3).$$
Let $D = (α_1 − α_2)^2(α_1 − α_3)^2(α_2 − α_3)^2$.
(a) Express $p$ and $q$ in terms of $α_1, α_2$ and $α_3$.
(b) Show that $D = −4p^3 − 27q^2$
I have that $p= α_1α_2 + α_1α_3 + α_2α_3 $ and $ q= -α_1α_2α_3$
Is there a more succinct way to prove part (b) without expanding out a ridiculously large polynomial by brute force?
This is simply Cardano's method that you can find here: https://en.m.wikipedia.org/wiki/Cubic_equation. In particular, you have to set $x=u+v$, obtainig: $$(u+v)^3+p(u+v)+q=0$$ Picking up $3uv$, we have: $$u^3+v^3+3uv(u+v)+p(u+v)+q=0$$ And so: $$u^3+v^3+(3uv+p)(u+v)+q=0$$ Now, we impose this condition: $$\left\{\begin{matrix} u^3+v^3=q \\ 3uv=-p \end{matrix}\right.$$ which leads to a quadratic equation of the form $t^2-qt+\frac{p^3}{27}=0$ where $t=v^3$ with: $$\Delta=q^2+\frac{4p^3}{27}=\frac{27q^2+4p^3}{27}$$