diff --git a/_sources/book/projects/project2.md b/_sources/book/projects/project2.md index 56e0597..75e6c15 100644 --- a/_sources/book/projects/project2.md +++ b/_sources/book/projects/project2.md @@ -57,7 +57,7 @@ $$ (bb_eq_2) where $\hat{x} \equiv x/L$ is a dimensionless (unitless) varible, $\hat{x} \in [0,1]$, and $\lambda = \frac{F L^2}{\gamma}$. (See problem 1.) ```{note} -Here we have been a bit sloppy with our notation. Technically, the functions $u(x)$ and $u(\hat{x})$ are two *different* functions, so we should have used e.g. notation like $u_x(x)$ and $u_{\hat{x}}(\hat{x})$. The key thing is that the functions are related as $u_x(x) = u_{\hat{x}}(\hat{x})$. +Here we have been a bit sloppy with our notation. Technically, due to our change of variable, the functions $u(x)$ and $u(\hat{x})$ are two *different* functions, so we should have used e.g. notation like $u_x(x)$ for the original function and $u_{\hat{x}}(\hat{x})$ for the function after the variable change. The key thing is that the functions are related as $u_{\hat{x}}(\hat{x}(x)) = u_x(x)$. ``` ---- diff --git a/_sources/lecture_notes/2024/README.md b/_sources/lecture_notes/2024/README.md index 25404dc..41905a0 100644 --- a/_sources/lecture_notes/2024/README.md +++ b/_sources/lecture_notes/2024/README.md @@ -64,7 +64,20 @@ - Code example: `error_analysis` - LU decomposition - What it is - - What it's good for + - What it's good for: + - Solving matrix equations + + +### Lecture 7, September 12: + +- Continue discussion LU decomposition + - What it's good for: + - Finding the determinant + - Finding the inverse + - How: algorithm for determining the L and U matrices + - PLU decomposition +- Overview of topics for Project 2 +- Scaling equations diff --git a/book/projects/project2.html b/book/projects/project2.html index 2223cfe..9837bcb 100644 --- a/book/projects/project2.html +++ b/book/projects/project2.html @@ -754,7 +754,7 @@
Note
-Here we have been a bit sloppy with our notation. Technically, the functions \(u(x)\) and \(u(\hat{x})\) are two different functions, so we should have used e.g. notation like \(u_x(x)\) and \(u_{\hat{x}}(\hat{x})\). The key thing is that the functions are related as \(u_x(x) = u_{\hat{x}}(\hat{x})\).
+Here we have been a bit sloppy with our notation. Technically, due to our change of variable, the functions \(u(x)\) and \(u(\hat{x})\) are two different functions, so we should have used e.g. notation like \(u_x(x)\) for the original function and \(u_{\hat{x}}(\hat{x})\) for the function after the variable change. The key thing is that the functions are related as \(u_{\hat{x}}(\hat{x}(x)) = u_x(x)\).
Discretization: We discretize this by dividing our \(\hat{x}\) range into \(n\) parts, i.e. we will have \(n+1\) points \(\hat{x}_0\), \(\hat{x}_1\), \(\ldots\), \(\hat{x}_{n-1}\), \(\hat{x}_{n}\). Thus we have a stepsize
diff --git a/lecture_notes/2024/README.html b/lecture_notes/2024/README.html index 846fbbd..3e99b44 100644 --- a/lecture_notes/2024/README.html +++ b/lecture_notes/2024/README.html @@ -595,6 +595,11 @@LU decomposition
What it is
What it’s good for
What it’s good for:
+Solving matrix equations
Continue discussion LU decomposition
+What it’s good for:
+Finding the determinant
Finding the inverse
How: algorithm for determining the L and U matrices
PLU decomposition
Overview of topics for Project 2
Scaling equations