Question: Solving a system

I put the following into Maple (12) A := 2*x*z+2*z*y+x*y V := x*y*z sys := {A= S, diff(V, x) = lambda*(diff(A, x)), diff(V, y) = lambda*(diff(A, y)), diff(V, z) = lambda*(diff(A, z))} S being a constant solve(sys, [x, y, z, lambda]); and got: [[x = RootOf(3*_Z^2-S, label = _L1), y = RootOf(3*_Z^2-S, label = _L1), z = (1/2)*RootOf(3*_Z^2-S, label = _L1), lambda = (1/4)*RootOf(3*_Z^2-S, label = _L1)]] which makes no sense to me... How can I enter this system into maple and get an answer? (the system is gradA=gradV and A=S, S being a constant, which is shown above) Thanks! Jeremy
Please Wait...