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 = xk+(a/m)-(xd/(sqrt(x^2+y^2+z^2)ef))==0
eq2 = yl+(b/m)-(yd/(sqrt(x^2+y^2+z^2)ef))==0
eq3 = zn+(c/m)-(zd/(sqrt(x^2+y^2+z^2)ef))==0
print solve([eq1,eq2,eq3],x,y,z)
when I evaluate this, all I get are input equations pretty printed. I am expecting a solution for x, y and z in other constant symbols and that's not happening.
How can I get sage to solve these equations?