diff options
| author | Christian Kolset <christian.kolset@gmail.com> | 2025-05-09 09:53:20 -0600 |
|---|---|---|
| committer | Christian Kolset <christian.kolset@gmail.com> | 2025-05-09 09:53:20 -0600 |
| commit | 0d4e770dc06763d225dce66f82bd49b052bead06 (patch) | |
| tree | 3b4e9fa683c89f8eafb8a7454fc191d9e8739a34 /tutorials/module_3/notebook_3/numerical_methods.ipynb | |
| parent | 3eb4be2a880eed828c983c8a30d73faa8e6f4746 (diff) | |
Added auto-generated (md converted) notebooks to modules. Added module 3 tutorials
Diffstat (limited to 'tutorials/module_3/notebook_3/numerical_methods.ipynb')
| -rw-r--r-- | tutorials/module_3/notebook_3/numerical_methods.ipynb | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/tutorials/module_3/notebook_3/numerical_methods.ipynb b/tutorials/module_3/notebook_3/numerical_methods.ipynb new file mode 100644 index 0000000..e5bf7df --- /dev/null +++ b/tutorials/module_3/notebook_3/numerical_methods.ipynb @@ -0,0 +1,52 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Numerical Methods\n", + "\n", + "Engineering\n", + "\n", + "## What is a numerical method?\n", + "\n", + "Numerical methods are techniques that transform mathematical problems\n", + "into forms that can be solved using arithmetic and logical operations.\n", + "Because digital computers excel at these computations, numerical methods\n", + "are often referred to as computer mathematics.\n", + "\n", + "## Numerical Differentiation\n", + "\n", + "Forwards difference Backwards difference Central Difference method [Read\n", + "More](https://pythonnumericalmethods.studentorg.berkeley.edu/notebooks/chapter20.00-Numerical-Differentiation.html)\n", + "\n", + "## Roots and Optimization\n", + "\n", + "Incremental Search Bisection Modified Secant Newton-Raphson\n", + "\n", + "## System of Equations\n", + "\n", + "Guassian Method LU Decomposition\n", + "\n", + "## Numerical Integration\n", + "\n", + "Midpoint Trapezoidal Romberg Gaussian Simpson’s Rule\n", + "\n", + "[Read\n", + "More](https://pythonnumericalmethods.studentorg.berkeley.edu/notebooks/chapter21.00-Numerical-Integration.html)\n", + "\n", + "## Numerical Solutions of Ordinary Differential Equations\n", + "\n", + "Euler’s Method - Forward - Backwards\n", + "\n", + "Runge-Kutte\n", + "\n", + "[ReadMore](https://pythonnumericalmethods.studentorg.berkeley.edu/notebooks/chapter22.00-ODE-Initial-Value-Problems.html)" + ], + "id": "508fb71a-8f30-4cb3-88f8-28b45a334596" + } + ], + "nbformat": 4, + "nbformat_minor": 5, + "metadata": {} +} |
