Polynomials & Taylor Series
===========================

Tools for polynomial evaluation and Taylor series expansion.

English API (Aliases)
---------------------

.. autofunction:: numpyy.poly_evaluate
.. autofunction:: numpyy.poly_derivative
.. autofunction:: numpyy.poly_integral
.. autofunction:: numpyy.horner
.. autofunction:: numpyy.horner_steps
.. autofunction:: numpyy.taylor

Backend French API
------------------

.. automodule:: numpyy.polynomes
   :members:

Example: Horner's Method
------------------------

.. code-block:: python

   import numpyy as ny
   # P(x) = x^3 - 6x^2 + 11x - 6
   ny.horner([1, -6, 11, -6], 4)
