next up previous contents index
suivant: Exact bounds for real monter: Exact roots of a précédent: Exact roots of a   Table des matières   Index


Exact bounds for complex roots of a polynomial :
complexroot

complexroot takes 2 or 4 arguments : a polynomial and a real number $ \epsilon$ and optionnally two complex numbers $ \alpha$,$ \beta$.
complexroot returns a list of vectors. To find the roots of x3 + 1, input:
complexroot(x^3+1,0.1)
Output :
[[-1,1],[[(4-7*i)/8,(8-13*i)/16],1],[[(8+13*i)/16,(4+7*i)/8],1]]
Hence, for x3 + 1 : To find the roots of x3 + 1 lying inside the rectangle of opposite vertices -1, 1 + 2*i, input:
complexroot(x^3+1,0.1,-1,1+2*i)
Output :
[[-1,1],[[(8+13*i)/16,(4+7*i)/8],1]]


next up previous contents index
suivant: Exact bounds for real monter: Exact roots of a précédent: Exact roots of a   Table des matières   Index
giac documentation written by Renée De Graeve and Bernard Parisse