Skip to content

Commit 3212543

Browse files
committed
small changes
1 parent 67ed924 commit 3212543

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
11
# Root_Finding_Techniques
2-
Utilizing techniques such as Bisection Method, Fixed-Point Method, and Newton's Method to solve for the roots of functions
2+
Utilizing root solving techniques such as:
3+
* Bisection Method
4+
* Fixed-Point Method
5+
* Newton's Method
6+
7+
Demonstrates numerical methods used to find solutions of nonlinear equations. Each script has a nonlinear function and error tolerance built into it, but both can be changed by the user.

bisection.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
#!/usr/bin/env python2.7
22

3-
# Will Fritz
43
# 9/28/2017
54
# Finds the root, or solution, of the form f(x) = 0. It uses:
6-
# abs((w(n)-w(n-q))/w(n)) <= 10^-5
5+
# abs((w(n)-w(n-q))/w(n)) <= 10^-5 as the tolerance
76

87
import math
98

0 commit comments

Comments
 (0)