summaryrefslogtreecommitdiff
path: root/tutorials/module_3/numerical_methods.md
diff options
context:
space:
mode:
authorChristian Kolset <christian.kolset@gmail.com>2025-04-29 18:32:22 -0600
committerChristian Kolset <christian.kolset@gmail.com>2025-04-29 18:32:22 -0600
commit098fb4a08ca946ed2c8aa234f1a7129abde9fde0 (patch)
tree7b99a3d44742db9c6a63d497a13709f115855398 /tutorials/module_3/numerical_methods.md
parent62e500a9b73c4894a57ce96f47c5c2c290513537 (diff)
Updated Readme Admin section for meeting 2025-24-25
Diffstat (limited to 'tutorials/module_3/numerical_methods.md')
-rw-r--r--tutorials/module_3/numerical_methods.md41
1 files changed, 41 insertions, 0 deletions
diff --git a/tutorials/module_3/numerical_methods.md b/tutorials/module_3/numerical_methods.md
new file mode 100644
index 0000000..6791aff
--- /dev/null
+++ b/tutorials/module_3/numerical_methods.md
@@ -0,0 +1,41 @@
+# 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
+
+[Read More](https://pythonnumericalmethods.studentorg.berkeley.edu/notebooks/chapter20.00-Numerical-Differentiation.html)
+
+## Roots and Optimization
+Incremental Search
+Bisection
+Modified Secant
+Newton-Raphson
+
+
+## Numerical Integration
+
+Trapezoidal
+
+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-Kutta Method
+
+[Read More](https://pythonnumericalmethods.studentorg.berkeley.edu/notebooks/chapter22.00-ODE-Initial-Value-Problems.html)
+
+
+