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
Copy file name to clipboardExpand all lines: README.md
+18-4Lines changed: 18 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ Equation Solver is a tool built using Python and Tkinter that allows users to so
6
6
7
7
-**Trial and Error:** this method adds or subtracts until it reaches the solution(s).
8
8
-**Bisection**: this method involves repeatedly bisecting the interval in which the solution resides.
9
-
-**Regula Falsi:** this method approximates the solution(s) by linear interpolation between the values of the function at the endpoints of an interval.
9
+
-**Iterations:** this method approximates the solution(s) by linear interpolation between the values of the function at the endpoints of an interval.
10
10
-**Newton-Raphson:** This method approximates the solution(s) by using the function and its derivative to iteratively improve an initial guess.
11
11
-**Secant:** this method approximates the solution(s) by using a line that passes through two points on the graph of the function.
12
12
-**Steffensen:** this method approximates the solution(s) by using a fixed point iteration method with an additional acceleration step using the function's second derivative.
@@ -19,9 +19,9 @@ All methods use a random generation function to get the initial numbers of the c
19
19
20
20
Equation Solver was built using the following technologies:
0 commit comments