Let $P,Q,R$ be polynomials of degree less than 2 and $a,b,c \in \mathbb{C}$
such that $D(a,b,c)=\begin{vmatrix}P(a)&&Q(a)&&R(a)\\P(b)&&Q(b)&&R(b)\\P(c)&&Q(c)&&R(c)\end{vmatrix}=1$
Prove that $D(1,b,c)+D(a,1,c)+D(a,b,1)=D(a,b,c)$.
My approach: Consider $P(x)=mx^2+nx+p, Q(x)=dx^2+ex+f, R(x)=rx^2+sx+t$ Then we have $D(a,b,c)=-\begin{vmatrix}m&&n&&p\\ d&&e&&f\\r&&s&&t\end{vmatrix}\dot{}\begin{vmatrix}1&&1&&1\\ a&&b&&c\\a^2&&b^2&&c^2\end{vmatrix}$
Then we need to show that $\begin{vmatrix}1&&1&&1\\ a&&b&&c\\a^2&&b^2&&c^2\end{vmatrix}=\begin{vmatrix}1&&1&&1\\ 1&&b&&c\\1&&b^2&&c^2\end{vmatrix}+\begin{vmatrix}1&&1&&1\\ a&&1&&c\\a^2&&1&&c^2\end{vmatrix}+ \begin{vmatrix}1&&1&&1\\ a&&b&&1\\a^2&&b^2&&1\end{vmatrix}$
I did this by considering the system of equations
$x+y+z=1 \\ ax+by+cz=1 \\a^2x+b^2y+c^2z=1$
and using Cramer rule. I am interested if there is another approach.