summaryrefslogtreecommitdiff
path: root/tutorials
diff options
context:
space:
mode:
authorChristian Kolset <christian.kolset@gmail.com>2025-04-10 15:54:41 -0600
committerChristian Kolset <christian.kolset@gmail.com>2025-04-10 15:54:41 -0600
commit9c2f54ecef9c12d660bb7afda8882ae6e25bf959 (patch)
tree4d5adcab1dadd09e447f2c5b1ec6af01990cbbfc /tutorials
parent62b36d8f969d3892b406353a3f68630200b6c040 (diff)
Added Numerical methods list to tutorial
Diffstat (limited to 'tutorials')
-rw-r--r--tutorials/module_2/2_01_intro_to_numerical_methods.md32
1 files changed, 25 insertions, 7 deletions
diff --git a/tutorials/module_2/2_01_intro_to_numerical_methods.md b/tutorials/module_2/2_01_intro_to_numerical_methods.md
index 39f83b5..6791aff 100644
--- a/tutorials/module_2/2_01_intro_to_numerical_methods.md
+++ b/tutorials/module_2/2_01_intro_to_numerical_methods.md
@@ -1,23 +1,41 @@
-# Introduction to Numerical Methods
-
+# 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.
-## Error
+## 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
-## Root-finding
+Trapezoidal
+Simpson's Rule
-## Interpolation and Curve Fitting
+[Read More](https://pythonnumericalmethods.studentorg.berkeley.edu/notebooks/chapter21.00-Numerical-Integration.html)
-## Numerical Differentiation and Integration
+## Numerical Solutions of Ordinary Differential Equations
+Euler's Method
+- Forward
+- Backwards
+Runge-Kutta Method
-## Numerical Solution of Ordinary Differential Equations
+[Read More](https://pythonnumericalmethods.studentorg.berkeley.edu/notebooks/chapter22.00-ODE-Initial-Value-Problems.html)