https://github.com/pereirar3/computational-methods
Work and activity required by the Computational Methods discipline at the Federal University of Mato Grosso
https://github.com/pereirar3/computational-methods
computational-methods computer-science-discipline poo python tkinter
Last synced: 7 months ago
JSON representation
Work and activity required by the Computational Methods discipline at the Federal University of Mato Grosso
- Host: GitHub
- URL: https://github.com/pereirar3/computational-methods
- Owner: pereiraR3
- Created: 2024-02-12T03:55:01.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-12T03:55:34.000Z (over 1 year ago)
- Last Synced: 2025-02-05T08:51:43.548Z (8 months ago)
- Topics: computational-methods, computer-science-discipline, poo, python, tkinter
- Language: Python
- Homepage:
- Size: 79.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Computational-Methods-Algorithms
## Overview
- Simple project on IEEE 754 & 2's complement => main.py
- Comparative study of real zero methods for real functions. => ./Zero_FunctionsDevelopment of a program that applies the following computational methods for real zero of real functions:
- M1- Bisection;
- M2- False Position;
- M3 - Newton;
- M4 - Secant;The program should calculate the zeros for the following functions, intervals, and precision:
- **F1:** 7x^3 - x^2 - 28x + 4 for the interval [0, 1] and precisions ε = ε1 = 10^-5 and ε2 = 10^-6.
- **F2:** 6x^4 - 7x^3 - 33x^2 + 35x + 15, for the intervals [-3, -2], [-1, 0], [1, 2], and [2, 3] for precisions ε = ε1 = 10^-7 and ε2 = 10^-7.
Note: In total, for each method, there will be 5 tables, one for each function/interval. Each table should include:
- k, ak, bk, xk, f(ak), f(bk), f(xk), and bk - ak.
Finally, print the chosen x value.
## Technologies Used
The technologies used to develop the project are very simple.
![]()
![]()
## Contact
Project Developer: I am student of the Federal University of Mato Grosso - Class of 2022.| Anthony Ricardo Rodrigues Rezende |
| --- |
||
- **Email:** anthony_rodriguespereira@outlook.com
- **LinkedIn:** [Anthony's LinkedIn](https://www.linkedin.com/in/anthony-ricardo-rodrigues-rezende-486917227/)## Acknowledgments
Useful resources that we would like to give credit for.- IC UFMT [https://www.ic.ufmt.br/](https://www.ic.ufmt.br/)
- Cálculo Numérico - Matemática Universitária [https://www.youtube.com/watch?v=82sOSjmw_aM&list=PLJVeWGwSovVmGe8oZuhBClC-rIYTH9mAZ](https://www.youtube.com/watch?v=82sOSjmw_aM&list=PLJVeWGwSovVmGe8oZuhBClC-rIYTH9mAZ)
##