If I have a triangle with sides A B and C, how can I scale the triangle down to one that has sides A + B = 1?
E.g, if I have the triangle ABC where length of A = 45, length of B = 55 and length of C = sqrt(45^2 + 55^2), how can I scale that down to a triangle where A + B = 1? Especially if A + B doesnt conveniently add up to 100.
Sorry, i've not come across this problem before.
It strikes me as something quite simple, like similar triangles, i just cant see it
You are looking to scale down a triangle by dividing each side by some value $x$ such that
$$\frac Ax+\frac Bx=\frac{A+B}x=1$$.
It quickly follows that $x=A+B$.