diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-12-08 09:21:32 -0700 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-12-08 09:21:32 -0700 |
commit | b5ad184c1bcef78e7c2b052bcffc71f4c7381bcb (patch) | |
tree | f060afc8dc7e896ad48731b58b5414b4c6ab627b /homeworks/hw-8.org | |
parent | b8c662456f2caf219de2a21f137f8fd61e34b0b2 (diff) | |
download | cmath-b5ad184c1bcef78e7c2b052bcffc71f4c7381bcb.tar.gz cmath-b5ad184c1bcef78e7c2b052bcffc71f4c7381bcb.zip |
hw8 checkpoint
Diffstat (limited to 'homeworks/hw-8.org')
-rw-r--r-- | homeworks/hw-8.org | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/homeworks/hw-8.org b/homeworks/hw-8.org new file mode 100644 index 0000000..42d9dac --- /dev/null +++ b/homeworks/hw-8.org @@ -0,0 +1,17 @@ +#+TITLE: Homework 7 +#+AUTHOR: Elizabeth Hunt +#+LATEX_HEADER: \notindent \notag \usepackage{amsmath} \usepackage[a4paper,margin=1in,portrait]{geometry} +#+LATEX: \setlength\parindent{0pt} +#+OPTIONS: toc:nil + +TODO: Update LIZFCM org file with jacobi solve, format_matrix_into, rand + +* Question One +See ~UTEST(jacobi, solve_jacobi)~ in ~test/jacobi.t.c~ and the entry +~Jacobi -> solve_jacobi~ in the LIZFCM API documentation. +* Question Two +A problem arises when using the Jacobi method to solve for the previous population +distribution, $n_k$, from $Ln_{k} = n_{k+1}$, because a Leslie matrix is not diagonally +dominant and will cause a division by zero. Likewise, we cannot factor it into $L$ +and $U$ terms and apply back substitution because pivot points are zero. +* Question Three |