mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 05:21:09 +00:00
Addition of Secant Method (#876)
* Add files via upload * Update secant_method.py * Remove unused import * Remove unused import
This commit is contained in:
parent
3ada8bb580
commit
f8a30b42ce
28
arithmetic_analysis/secant_method.py
Normal file
28
arithmetic_analysis/secant_method.py
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
# Implementing Secant method in Python
|
||||||
|
# Author: dimgrichr
|
||||||
|
|
||||||
|
|
||||||
|
from math import exp
|
||||||
|
|
||||||
|
|
||||||
|
def f(x):
|
||||||
|
"""
|
||||||
|
>>> f(5)
|
||||||
|
39.98652410600183
|
||||||
|
"""
|
||||||
|
return 8 * x - 2 * exp(-x)
|
||||||
|
|
||||||
|
|
||||||
|
def SecantMethod(lower_bound, upper_bound, repeats):
|
||||||
|
"""
|
||||||
|
>>> SecantMethod(1, 3, 2)
|
||||||
|
0.2139409276214589
|
||||||
|
"""
|
||||||
|
x0 = lower_bound
|
||||||
|
x1 = upper_bound
|
||||||
|
for i in range(0, repeats):
|
||||||
|
x0, x1 = x1, x1 - (f(x1) * (x1 - x0)) / (f(x1) - f(x0))
|
||||||
|
return x1
|
||||||
|
|
||||||
|
|
||||||
|
print(f"The solution is: {SecantMethod(1, 3, 2)}")
|
Loading…
Reference in New Issue
Block a user