Rev 74265 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/base/man/polyroot.Rd% Part of the R package, https://www.R-project.org% Copyright 1995-2018 R Core Team% Distributed under GPL 2 or later\name{polyroot}\title{Find Zeros of a Real or Complex Polynomial}\usage{polyroot(z)}\alias{polyroot}\arguments{\item{z}{the vector of polynomial coefficients in increasing order.}}\description{Find zeros of a real or complex polynomial.}\details{A polynomial of degree \eqn{n - 1},\deqn{p(x) = z_1 + z_2 x + \cdots + z_n x^{n-1}}{p(x) = z1 + z2 * x + \ldots + z[n] * x^(n-1)}is given by its coefficient vector \code{z[1:n]}.\code{polyroot} returns the \eqn{n-1} complex zeros of \eqn{p(x)}using the Jenkins-Traub algorithm.If the coefficient vector \code{z} has zeroes for the highest powers,these are discarded.There is no maximum degree, but numerical stabilitymay be an issue for all but low-degree polynomials.}\value{A complex vector of length \eqn{n - 1}, where \eqn{n} is the positionof the largest non-zero element of \code{z}.}\source{C translation by Ross Ihaka of Fortran code in the reference, withmodifications by the R Core Team.}\references{Jenkins, M. A. and Traub, J. F. (1972).Algorithm 419: zeros of a complex polynomial.\emph{Communications of the ACM}, \bold{15}(2), 97--99.\doi{10.1145/361254.361262}.}\seealso{\code{\link{uniroot}} for numerical root finding of arbitraryfunctions;\code{\link{complex}} and the \code{zero} example in the demosdirectory.}\examples{polyroot(c(1, 2, 1))round(polyroot(choose(8, 0:8)), 11) # guess what!for (n1 in 1:4) print(polyroot(1:n1), digits = 4)polyroot(c(1, 2, 1, 0, 0)) # same as the first}\keyword{math}