How to solve this analytically(not a numerical solution)?
For given real and symmetric matrices $A_1,A_2,A_3,A_4\in\mathbb{R}^{4\times4}$ find $0\neq x\in\mathbb{R}^4$
$$x^TA_1x=0$$ $$x^TA_2x=0$$ $$x^TA_3x=0$$ $$x^TA_4x=0$$
Example:
Solve the system:
\begin{align} a^2+b^2+c &=3.95 \\ ab+bc+c^2 &=4.57 \\ ac+b &=2.63 \\ \end{align} Denoting: \begin{equation} x = \begin{bmatrix}a & b & c & 1\end{bmatrix}^T \end{equation}
Then the matrices, $A_k$ can be build from the equations, for example to form $A_1$, we rewrite the first equation in matrix form $x^TB_1x=0$ where: \begin{equation} B_1 = \begin{bmatrix} 1&0&0&0\\0&1&0&0\\0&0&0&1\\0&0&0&-3.95\\ \end{bmatrix} \end{equation}
Then, since from $x^TB_1x=0$ transpose leads to $x^TB_1^Tx=0$, the sum is:
$x^T(B_1+B_1^T)x=0$
denoting the matrix as $A_1=(B_1+B_1^T)$, it is symmetric and $x^TA_1x=0$
Four equations, but since they are homogeneous there are just three degrees of freedom (say on the unit sphere). So you'll have to be lucky to get any nontrivial solutions at all. Try solving three of these together with $x_1^2 + x_2^2 + x_3^2 + x_4^2 = 1$, and then seeing if the solutions satisfy the fourth equation.