Renormalize files

This commit is contained in:
2025-01-07 19:27:29 -04:00
parent 2bf7d29931
commit f34e528b5a
112 changed files with 12951 additions and 12951 deletions

View File

@@ -1,16 +1,16 @@
# Definitions and Concepts
- Floating point number
- Convergence, conditioning, complexity
- Why is it important? We make the numerical methods to approximate the real answer (Convergence). For condition, when an approximation is made, when we make minor modifications to the input, we expect not a lot of variance in the in output. Complexity is the amount of time (CPU?) that a computer will need to use a method (Big O?)
- Main components of a floating point number?
-
- Machine epsilon
- 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 |
# Definitions and Concepts
- Floating point number
- Convergence, conditioning, complexity
- Why is it important? We make the numerical methods to approximate the real answer (Convergence). For condition, when an approximation is made, when we make minor modifications to the input, we expect not a lot of variance in the in output. Complexity is the amount of time (CPU?) that a computer will need to use a method (Big O?)
- Main components of a floating point number?
-
- Machine epsilon
- 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 |