added defination (#1244)

This commit is contained in:
Shubham garg 2019-10-04 01:01:11 +05:30 committed by Christian Clauss
parent 0e2d6b2963
commit 03aba96c0a

View File

@ -1,6 +1,7 @@
# Implementing Newton Raphson method in Python # Implementing Newton Raphson method in Python
# Author: Syed Haseeb Shah (github.com/QuantumNovice) # Author: Syed Haseeb Shah (github.com/QuantumNovice)
#The Newton-Raphson method (also known as Newton's method) is a way to
#quickly find a good approximation for the root of a real-valued function
from sympy import diff from sympy import diff
from decimal import Decimal from decimal import Decimal