Definition ๐(WIKI):
Numerical analysis is the study of algorithms that use numerical approximation for the problems of mathematical analysis. Numerical analysis finds application in all fields of engineering and the physical sciences, and in the 21st century also the life and social sciences, medicine, business and even the arts.
X | 1.0 | 1.3 | 1.5 |
Y | 0.841 | 0.964 | 0.997 |
X | 0 | 2 | 4 |
Y | 1 | 5 | 17 |
Then
- Let
$x_0$ be an initial approximation to the eigenvector. - For
$k=1,2,3,\ldots$ do- Compute
$x_k=Ax_{k-1}$ , - Normalize
$x_k=x_k/|x_k|_\infty$
- Compute
- Stop when tolerance is
$t$
where
* To get the version Excute:
$ python --version
Python 3.9.6
if not installed watch the following video
* To get the version Excute:
$ git --version
git version 2.28.0.windows.1
if not installed watch the following video
3. Execute the following commands in your terminal after changing your directory to the desired path
$ mkdir Numerical-Methods
$ python -m venv venv```
For Windows Users:
$ venv\Scripts\activate.bat
For Linux Users:
$ source venv/bin/activate
Then
$ git clone https://github.com/michaelehab/Numerical-Methods && cd Numerical-Methods
$ pip install -r requirements.txt