Hi,
is there any way to find out diagonals of quadrilateral if I only know the four sides - no angles?
I understand I could calculate it with the law of cosines:
p = sqrt( a^2 + b^2 - 2*a*b*cos(α) ) q = sqrt( b^2 + c^2 - 2*b*c*cos(β) ) // or whatever you name these angles
but I don't know the angles! So I'm kind of stuck here.
Thanks in advance, Martin