This is an extension of a previous question involving geometric positioning. I've been able to reduce this problem to a system of three quadratic equations but I need to implement a generalized solution for this that I can solve via computer program for a variety of constants.
I can solve this using Wolfram Alpha - but I need to implement the code to solve this on the fly in a computer program. I DO know the approximate values of A, B and C (and I know they are all positive values for my desired geometric solution) so I can rule out some of the multiple solutions.
I believe this is solved with the Newtonian method using a Jacobian matrix - but I do not know how to reduce this to a format I can program within a computer.
If someone can point me in the right direction I would be grateful.
I am new to this forum so if my means of asking questions is inappropriate I apologize.
Problem - A generalized computer algorithm to solve the following system of equations for a, b and c where K1-K6 are constants.
$a^2+b^2-a*b*k1-k2=0$
$b^2+c^2-b*c*k3-k4=0$
$c^2+a^2-c*a*k5-k6=0$