KNOWN:
- Length DC
- Alpha
- Beta
- Surface S
NEEDED:
- Height h
For an algorithm, I require a way to solve this for any trapezoid. Sort of like this question (Given a known isosceles Trapezoid find height of another with same angles & one base but different area) but not with the isosceles restriction.
Just like in that question, I effectively have all information about a larger trapezoid with identical angles and DC as well, but I think the only gain I get from that are the angles.
Have mattered my brain a while now without success. Going off of the formula for surface: S = h * ((AB + DC)/2) I could end up for the formula: h = (2*S) / (AB + DC) But this hardly helps because I do not know AB. Formulas based on the angles also always required both DC and AB, or alternatively the lengths of the legs.
Another idea I had was to split trapezoid into two right triangles and one square because solving the problem appears to be easier for each in particular. But after implementing half of that, I realized that I have no way of knowing what the desired surface area of each figure would be...
Is there a known solution to this? Huuge thanks in advance!
