I am trying to calculate the interior angles of a Quadrilateral when given the lengths of the sides and an equal angle constraint.
Here is the diagram: 
The Equations I have so far as follows (mostly the cosine rule, but also the constraint that I want to use): $$ \theta_a + \theta_b + \theta_c +\theta_d = 2\pi \\ e^2 = a^2 + b^2 - 2 a\times b\times \cos\theta_b \\ e^2 = c^2 + d^2 - 2 c\times d\times \cos\theta_d \\ f^2 = b^2 + c^2 - 2 b\times c\times \cos\theta_c \\ f^2 = a^2 + d^2 - 2 a\times d\times \cos\theta_a \\ \theta_b = \theta_c $$ I have 6 equations and 6 unknowns so I think it is possible but I am struggling to re-arrange them to calculate the thetas.
I have to admit its been a while since I have done any trigonometry. This is for a 4DOF robot leg that I am trying to work out the inverse kinematics for.
It is virtually certain that all those simultaneous quadratics will give a multitude of answers, most of which will be physically impossible.
Perhaps you could provide a set of initial conditions and use a perturbation approach to continuously solve a set of linearised equations as the leg moves.