How do I find the roots of a complex equation?



Michael Carey wrote:
> I tried factor, but it gave up on a complex equation. eg. x^2-4*x+53.
>
> I assume there is another command to do so? I looked under the
> polynomial section but could not find anything.
>
>   
Use solve.

solve(x^2-4*x+53,x);

Ray