Skip to content

Bug Fixed in newton_raphson_method.py #1634

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 19 commits into from
Dec 15, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixed newton_raphson_method.py 5
  • Loading branch information
rohitjoshi21 committed Dec 14, 2019
commit 6a407548ffa135a76a8e18dc776b5c17b076ad55
4 changes: 3 additions & 1 deletion arithmetic_analysis/newton_raphson_method.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
from sympy import diff
from decimal import Decimal
from math import sin,log,exp
# noqa, flake8 issue


a,b,c = sin(10),log(10),exp(10)

PRECISION = 10 ** -10

Expand Down