Fix mypy errors for arithmetic analysis algorithms (#4053)

This commit is contained in:
Dhruv Manilawala
2020-12-23 15:22:43 +05:30
committed by GitHub
parent 2ff2ccbeec
commit ad5108d6a4
5 changed files with 90 additions and 60 deletions

View File

@ -1,28 +1,29 @@
# 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)}")
"""
Implementing Secant method in Python
Author: dimgrichr
"""
from math import exp
def f(x: float) -> float:
"""
>>> f(5)
39.98652410600183
"""
return 8 * x - 2 * exp(-x)
def secant_method(lower_bound: float, upper_bound: float, repeats: int) -> float:
"""
>>> secant_method(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
if __name__ == "__main__":
print(f"Example: {secant_method(1, 3, 2) = }")