there's this determinant problem I've been working on for several days now whose answer I can't quite get to:
$$ D = \left| \begin{array}{ccc} a^3+a^2 & a & 1\\ b^3+b^2 & b & 1\\ c^3+c^2 & c & 1\\ \end{array} \right| $$
Express the determinant as the product of four linear factors.
The given answer is $(a-b)(b-c)(c-a)(a+b+c+1)$ but I'm stuck after getting the first two factors, $(a-b)$ and $(b-c)$:
$$ D= (a-b)(b-c) \left| \begin{array}{ccc} a^2+ab+b^2 & a-b & 0\\ b^2+bc+c^2 & b-c & 0\\ c^3+c^2 & c & 1\\ \end{array} \right| $$
whose determinant transposes into:
$$ D=(a-b)(b-c) \left| \begin{array}{ccc} a^2+ab+b^2 & b^2+bc+c^2 & c^3+c^2\\ 1 & 1 & c\\ 0 & 0 & 1\\ \end {array} \right| \\ \Rightarrow D=(a-b)(b-c))1(a^2+ab+b^2)-1(b^2+bc+c^2))\\ =(a-b)(b-c)(a^2+ab+bc+c^2) $$
This is where I am stuck.