Ask Your Question
0

System of 3 equations in 3 variables with symbolic coefficients

asked 2015-02-10 03:40:02 +0200

dhathri gravatar image

updated 2015-02-10 13:15:40 +0200

slelievre gravatar image

Here is my Sage code:

a, b, c, d, e, f, k, l, m, n, x, y, z = var('a, b, c, d, e, f, k, l, m, n, x, y, z')
eq1 = x*k+(a/m)-(x*d/(sqrt(x^2+y^2+z^2)*e*f))==0
eq2 = y*l+(b/m)-(y*d/(sqrt(x^2+y^2+z^2)*e*f))==0
eq3 = z*n+(c/m)-(z*d/(sqrt(x^2+y^2+z^2)*e*f))==0
print solve([eq1,eq2,eq3],x,y,z)

When I evaluate this, all I get are my original input equations, pretty-printed.

I am expecting a solution for x, y and z in terms of the other constant symbols and that's not happening.

How can I get Sage to solve these equations?

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2015-02-10 10:23:06 +0200

I very much doubt that there are closed form solutions for such a system. It looks like this would imply that univariate polynomial equations of arbitrary degrees have a closed form solution, which is well-known not to be the case.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 2015-02-10 03:40:02 +0200

Seen: 548 times

Last updated: Feb 10 '15