Hi,
I am a bit rusty in the math department and I have been puzzeling with a problem I could use a hand with.
Imagine a triangle divided into two sub triangles.
I know A and B as well as a and b. I also know that a and b are the same length.
My approach has been to write up the law of sines for the three triangles (the two inner and the outer)
sin(A)/a = sin(C)/c = sin(D)/d
sin(B)/b = sin(E)/e = sin(F)/f
sin(A+B)/(a+b) = sin(C)/e = sin(F)/d
as well as eliminating the variables that are identical
c = f
a = b
This leaves me with
sin(A)/b = sin(C)/f = sin(D)/d
sin(B)/b = sin(E)/e = sin(F)/f
sin(A+B)/(2*b) = sin(C)/e = sin(F)/d
I have a hard time getting further, and I am unaware if the problem is underconstrained.
Ultimately I am seeking to know d, f and e. Ideally as a function like:
def calculate(A,B,b):
return (d,f,e)
How would you attack the problem?
Kind regards
Jesper