2024-10-11 09:06:45

This commit is contained in:
Isaac Shoebottom 2024-10-11 09:06:46 -03:00
parent 74db3d2a4e
commit 13fd819082

View File

@ -6,3 +6,11 @@
- -
- Machine epsilon - Machine epsilon
- Loss of significant bit. Truncation - Loss of significant bit. Truncation
Methods of root finding
| Bisection | Final point | Newton | Secant |
| --------- | ------------- | ------------- | ------------- |
| Guarentee | Not Guarentee | Not guarentee | Not guarentee |
| Linear | linear | quatdratic | super linear |
| Slow | | Fast | Fast |