Find the condition for the three equations $a_rx^2+b_rx+c_r=0$; $r=1,2,3$ to have a common root.
My attempt is as follows:
\begin{equation} a_1x^2+b_1x+c_1=0\tag{1} \end{equation}
\begin{equation} a_2x^2+b_2x+c_2=0\tag{2} \end{equation}
\begin{equation} a_3x^2+b_3x+c_3=0\tag{3} \end{equation}
Step $1$: Eliminate $c_1,c_2,c_3$
Multiplying $(1)$ with $c_2c_3$, $(2)$ with $c_1c_3$, $(3)$ with $2c_1c_2$.
Adding $(1)$ and $(2)$:
\begin{equation} (a_1c_2c_3+a_2c_1c_3)x^2+(b_1c_2c_3+b_2c_1c_3)x+2c_1c_2c_3=0\tag{4} \end{equation}
Subtracting $(3)$ from $(4)$:
$$(a_1c_2c_3+a_2c_1c_3-2a_3c_1c_2)x^2+(b_1c_2c_3+b_2c_1c_3-2b_3c_1c_2)x=0$$ $$x=\frac{2b_3c_1c_2-b_1c_2c_3-b_2c_1c_3}{a_1c_2c_3+a_2c_1c_3-2a_3c_1c_2}$$ $$x=\frac{c_2(b_3c_1-b_1c_3)+c_1(b_3c_2-b_2b_3)}{c_2(a_1c_3-a_3c_1)+c_1(a_2c_3-a_3c_2)}\tag{5}$$
Step $2$: Eliminate $a_1,a_2,a_3$
Multiplying $(1)$ with $a_2a_3$, $(2)$ with $a_1a_3$, $(3)$ with $2a_1a_2$.
Adding $(1)$ and $(2)$: $$2a_1a_2a_3x^2+(a_2a_3b_1+a_1a_3b_2)x+(a_2a_3c_1+a_1a_3c_2)=0\tag{6}$$
Subtracting $(3)$ from $(6)$:
$$x(a_2a_3b_1+a_1a_3b_2-2a_1a_2b_3)+(a_2a_3c_1+a_1a_3c_2-2a_1a_2c_3)=0$$
$$x=\frac{2a_1a_2c_3-a_2a_3c_1-a_1a_3c_2}{a_2a_3b_1+a_1a_3b_2-2a_1a_2b_3}$$
$$x=\frac{a_2(a_1c_3-a_3c_1)+a_1(a_2c_3-a_3c_2)}{a_2(a_3b_1-a_1b_3)+a_1(a_3b_2-a_2b_3)}\tag{7}$$
Equating $(5)$ and $(7)$, we get
$$\frac{a_2(a_1c_3-a_3c_1)+a_1(a_2c_3-a_3c_2)}{a_2(a_3b_1-a_1b_3)+a_1(a_3b_2-a_2b_3)}=\frac{c_2(b_3c_1-b_1c_3)+c_1(b_3c_2-b_2b_3)}{c_2(a_1c_3-a_3c_1)+c_1(a_2c_3-a_3c_2)}\tag{8}$$
Now equation $8$ is a monster equation, is there any easy way to solve this?
Actual answer is following $$(c_1a_2-c_2a_1)^2=(b_1c_2-b_2c_1)(a_1b_2-a_2b_1) \text{ and } \begin{vmatrix} a_1 & b_1 & c_1 \\ a_2 & b_2 & c_2 \\ a_3 & b_3 & c_3 \end{vmatrix}=0$$
A more direct way.
If those three equations have a common root, it means that the linear combination of the three vectors
$$v_a=\begin{pmatrix} a_1\\ a_2\\ a_3 \end{pmatrix}, \, v_b=\begin{pmatrix} b_1\\ b_2\\ b_3 \end{pmatrix}, \, v_c=\begin{pmatrix} c_1\\ c_2\\ c_3 \end{pmatrix}, \,$$
with the coefficients $(x^2, x, 1)$ is equal to zero. Hence those three vectors are linearly dependent and their determinant vanishes.
Bonus question: is the converse true?