![]() |
VOOZH | about |
In this article, we will make a NumPy program to divide one polynomial to another. Two polynomials are given as input and the result is the quotient and remainder of the division.
If p(x) = A3 x2 + A2 x + A1 and g(x) = B3 x2 + B2 x + B1 then result is q(x) = p(x) // g(x) and r(x) = p(x) % g(x) and the output is coefficients of remainder and the coefficients of quotient.
This can be calculated using the polydiv() method. This method evaluates the division of two polynomials and returns the quotient and remainder of the polynomial division.
Syntax:
numpy.polydiv(p1, p2)
Below is the implementation with some examples :
Example 1 :
Output :
[-12. 5.] [ 29.]
Example 2 :
Output :
[ 1. 2.] [ 0.]