Skip to content

Commit 8aa8ab6

Browse files
committed
Update readme screenshots
1 parent e3a2552 commit 8aa8ab6

1 file changed

Lines changed: 18 additions & 4 deletions

File tree

README.md

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Equation Solver is a tool built using Python and Tkinter that allows users to so
66

77
- **Trial and Error:** this method adds or subtracts until it reaches the solution(s).
88
- **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.
1010
- **Newton-Raphson:** This method approximates the solution(s) by using the function and its derivative to iteratively improve an initial guess.
1111
- **Secant:** this method approximates the solution(s) by using a line that passes through two points on the graph of the function.
1212
- **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
1919

2020
Equation Solver was built using the following technologies:
2121

22-
- Tkinter
23-
- Python
24-
- Tcl
22+
- [Tkinter](https://docs.python.org/3/library/tkinter.html)
23+
- [Python](https://www.python.org/)
24+
- [Tcl](https://www.tcl.tk/)
2525

2626
## Libraries
2727

@@ -108,3 +108,17 @@ python main.py
108108
```
109109

110110
This will start the program and open the GUI window. From there, you can use the various options and features of the program.
111+
112+
## Screenshots
113+
114+
Here are some screenshots of the Equation Solver in action:
115+
116+
![Screenshot 1](https://github.com/Jotaherrera/Equation-Solver/blob/main/public/github/Screenshot1.png)
117+
118+
![Screenshot 2](https://github.com/Jotaherrera/Equation-Solver/blob/main/public/github/Screenshot2.png)
119+
120+
![Screenshot 3](https://github.com/Jotaherrera/Equation-Solver/blob/main/public/github/Screenshot3.png)
121+
122+
![Screenshot 4](https://github.com/Jotaherrera/Equation-Solver/blob/main/public/github/Screenshot4.png)
123+
124+
![Screenshot 5](https://github.com/Jotaherrera/Equation-Solver/blob/main/public/github/Screenshot5.png)

0 commit comments

Comments
 (0)