summaryrefslogtreecommitdiff
path: root/tutorials/module_3/0_numerical_methods.md
diff options
context:
space:
mode:
authorChristian Kolset <christian.kolset@gmail.com>2025-09-03 13:19:49 -0600
committerChristian Kolset <christian.kolset@gmail.com>2025-09-03 13:19:49 -0600
commit183c55c09e62c069d65b2f5d9f5d7c065ad16228 (patch)
treebb0603094d9418ecb1c04c3b7e9610ff5609ac63 /tutorials/module_3/0_numerical_methods.md
parentb95095e4278ccda691c721bcd902a6d0b5492486 (diff)
Updated entries
Diffstat (limited to 'tutorials/module_3/0_numerical_methods.md')
-rw-r--r--tutorials/module_3/0_numerical_methods.md46
1 files changed, 46 insertions, 0 deletions
diff --git a/tutorials/module_3/0_numerical_methods.md b/tutorials/module_3/0_numerical_methods.md
new file mode 100644
index 0000000..449ece0
--- /dev/null
+++ b/tutorials/module_3/0_numerical_methods.md
@@ -0,0 +1,46 @@
+# Numerical Methods
+Engineering
+
+## What is a numerical method?
+Numerical methods are techniques that transform mathematical problems into forms that can be solved using arithmetic and logical operations. Because digital computers excel at these computations, numerical methods are often referred to as computer mathematics.
+
+
+## Numerical Differentiation
+Forwards difference
+Backwards difference
+Central Difference method
+[Read More](https://pythonnumericalmethods.studentorg.berkeley.edu/notebooks/chapter20.00-Numerical-Differentiation.html)
+
+## Roots and Optimization
+Incremental Search
+Bisection
+Modified Secant
+Newton-Raphson
+
+## System of Equations
+Guassian Method
+LU Decomposition
+
+## Numerical Integration
+
+Midpoint
+Trapezoidal
+Romberg
+Gaussian
+Simpson's Rule
+
+[Read More](https://pythonnumericalmethods.studentorg.berkeley.edu/notebooks/chapter21.00-Numerical-Integration.html)
+
+
+## Numerical Solutions of Ordinary Differential Equations
+
+Euler's Method
+- Forward
+- Backwards
+
+Runge-Kutte
+
+[ReadMore](https://pythonnumericalmethods.studentorg.berkeley.edu/notebooks/chapter22.00-ODE-Initial-Value-Problems.html)
+
+
+