Open In App

Python | sympy.as_poly() method

Last Updated : 17 Jul, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

With the help of sympy.as_poly() method, we can make the mathematical function into a polynomial object by using sympy.as_poly() method.

Syntax : sympy.as_poly()
Return : Return the polynomial object.

Example #1 :
In this example we can see that by using sympy.as_poly() method, we are able to get the polynomial from mathematical operation.




# import sympy
from sympy import *
  
# Use sympy.as_poly() method
x = symbols('x')
gfg = (x**2 + 4 * x + 16).as_poly()
  
print(gfg)


Output :

Poly(x**2 + 4*x + 16, x, domain=’ZZ’)

Example #2 :




# import sympy
from sympy import *
  
# Use sympy.as_poly() method
x = symbols('x')
gfg = (x + 5 * x + 6).as_poly()
  
print(gfg)


Output :

Poly(6*x + 6, x, domain=’ZZ’)


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads