Friday, July 24, 2026
HomeLanguagesPython | Numpy np.polyroots() method

Python | Numpy np.polyroots() method

np.polyroots() method is used to compute the roots of a polynomial series.Return the roots of the polynomial.

Syntax : np.polyroots(c)
Parameters:
c :[array_like] 1-D arrays of polynomial series coefficients.

Return : [ndarray] Array of the roots of the series. If all the roots are real, then out is also real, otherwise it is complex.

Code #1 :




# Python program explaining
# numpy.polyroots() method 
    
# importing numpy as np  
# and numpy.polynomial.polynomial module as geek 
import numpy as np 
import numpy.polynomial.polynomial as geek
    
# Input polynomial series coefficients
  
s = (2, 4, 8) 
     
# using np.polyroots() method 
res = geek.polyroots(s) 
  
# Resulting polynomial series coefficient
print (res) 


Output:

[-0.25-0.4330127j -0.25+0.4330127j]

 

Code #2 :




# Python program explaining
# numpy.polyroot() method 
    
# importing numpy as np  
# and numpy.polynomial.polynomial module as geek 
import numpy as np 
import numpy.polynomial.polynomial as geek
    
# polynomial series coefficients
s = (1, 2, 3, 4, 5) 
  
    
# using np.polyroots() method 
res = geek.polyroots(s) 
  
# Resulting polynomial series
print (res) 


Output:

[-0.53783227-0.35828469j -0.53783227+0.35828469j  0.13783227-0.67815439j
  0.13783227+0.67815439j]

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32520 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6902 POSTS0 COMMENTS
Nicole Veronica
12017 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12115 POSTS0 COMMENTS
Shaida Kate Naidoo
7023 POSTS0 COMMENTS
Ted Musemwa
7265 POSTS0 COMMENTS
Thapelo Manthata
6980 POSTS0 COMMENTS
Umr Jansen
6971 POSTS0 COMMENTS