Subject: How do I find the roots of a complex equation?
From: Raymond Toy
Date: Fri, 05 Dec 2008 23:27:38 -0500
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