I have the following problem I'd like to solve (coming from the loop closure equations of a parallel kinematic mechanism) to the unknowns q2 q3 q4 q6 (4 eqns to 4 unknowns). I already found numerical ways to solve the system, however, I'm interested in an analytical solution, since this speeds up calculations (and just because I like analytical solutions ;)). The system is:
$$\begin{align} C_1 &= -L_2 \cos(q_5 + q_6) + L_2 \cos(q_1 + q_2) + L_3 \cos(q_1 + q_2 + q_3) \\ C_2 &= -L_2 \sin(q_5 + q_6) + L_2 \sin(q_1 + q_2) + L_3 \sin(q_1 + q_2 + q_3) \\ C_3 &= \phantom{-}L_2 \cos(q_1 + q_2) + a_5 \cos(q_1 + q_2 + q_3 + q_4) + a_7 \sin(q_1 + q_2 + q_3) + a_9\cos(q_1 +q_2 + q_3) \\ C_4 &= \phantom{-}L_2 \sin(q_1 + q_2) + a_5 \sin(q_1 + q_2 + q_3 + q_4) - a_7 \cos(q_1 + q_2 + q_3) + a_9\sin(q_1 +q_2 + q_3) \end{align}$$
The parameters {$q_1$, $q_5$, $C_1$, $C_2$, $C_3$, $C_4$, $L_2$, $L_3$, $a_5$, $a_7$, $a_9$} are known and nonzero.
Any help would be appreciated in solving this system! There clearly is some symmetry that might be exploited?
I've already tried to use Sympy to obtain a symbolic solution but it keeps running for hours.
EDIT: actually, the case is simplified since $a_5 = L_2$.