blob: 737d69d5179b8f3e3e0ab1a2982797ec77917bab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
\section{Numerical Methods}\label{numerical-methods}
Engineering
\subsection{What is a numerical
method?}\label{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.
\subsection{Numerical Differentiation}\label{numerical-differentiation}
Forwards difference Backwards difference
\href{https://pythonnumericalmethods.studentorg.berkeley.edu/notebooks/chapter20.00-Numerical-Differentiation.html}{Read
More}
\subsection{Roots and Optimization}\label{roots-and-optimization}
Incremental Search Bisection Modified Secant Newton-Raphson
\subsection{Numerical Integration}\label{numerical-integration}
Trapezoidal
Simpson's Rule
\href{https://pythonnumericalmethods.studentorg.berkeley.edu/notebooks/chapter21.00-Numerical-Integration.html}{Read
More}
\subsection{Numerical Solutions of Ordinary Differential
Equations}\label{numerical-solutions-of-ordinary-differential-equations}
Euler's Method - Forward - Backwards
Runge-Kutta Method
\href{https://pythonnumericalmethods.studentorg.berkeley.edu/notebooks/chapter22.00-ODE-Initial-Value-Problems.html}{Read
More}
|