Question: How to eliminate _Z from solve result of trig problem?

thanks, this worked for me. As for the

eqn1 := u = V * cos(a) * cos(b);

eqn2 := v = V*sin(b);

eqn3 := w = V*sin(a)*cos(b);

res:=solve({eqn1, eqn2, eqn3}, {V,a,b});

map(sin, res[3]);

simplify(%);

gives sin(b) = v / ( RootOf( _Z^2 - v^2 - w^2 - u^2);

map(x->x^2, %);

simplify(%);

gives

sin(b)^2 = v^2 / (v^2 + w^2 + u^2), which has no _Z , but is not right. is there a better way to eliminate _Z ?

Please Wait...