You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, we use the bisection method to compute the zero of the function f. Instead, we could implement regula falsi, which is very similar and easy to swap.
A full description is https://en.wikipedia.org/wiki/Regula_falsi but the only part that matters is that instead of
x = (a + b) /2
we use
x = (a * fb - b * fa) / (fb - fa)
The text was updated successfully, but these errors were encountered:
Currently, we use the bisection method to compute the zero of the function f. Instead, we could implement regula falsi, which is very similar and easy to swap.
A full description is https://en.wikipedia.org/wiki/Regula_falsi but the only part that matters is that instead of
we use
The text was updated successfully, but these errors were encountered: