Abstract Algebra 16 Finish

This commit is contained in:
Nathan Nguyen
2024-12-08 17:04:38 -06:00
parent 5a0574a6e6
commit eaa055d59a
2 changed files with 25 additions and 2 deletions

View File

@@ -143,3 +143,27 @@ $$
Thus, $ab \in P$. By symnetry, assume $a \notin P$. Thus, $b \in P$ by the definition of a prime ideal, so $b + P = 0 + P$, meaning $R/P$ is an integral domain. Thus, $ab \in P$. By symnetry, assume $a \notin P$. Thus, $b \in P$ by the definition of a prime ideal, so $b + P = 0 + P$, meaning $R/P$ is an integral domain.
**Theorem**. 16.40: In a commutative ring with identity, every maximal ideal is also a prime ideal. **Theorem**. 16.40: In a commutative ring with identity, every maximal ideal is also a prime ideal.
## Section 16.5 - Applications to Computer Science
**Lemma**. Let $m, n \in \mathbb{B}$ be given. Then, for any $a, b \in \mathbb{Z}$, there exists some $x$ that satisfies
$$
\begin{align}
x &\equiv a \pmod{m} \\
x &\equiv b \pmod{n}
\end{align}
$$
**Theorem**. Chineese Remainer Theorem. Let $n_1, \ldots, n_k \in \mathbb{N}$ be given such that $\gcd(n_i, n_j) = 1$. Then, for any integers $a_1, \ldots, a_k$, the system
$$
\begin{align}
x &\equiv a_1 \pmod{n_1} \\
x &\equiv a_2 \pmod{n_2} \\
\vdots
x &\equiv a_k \pmod{n_k}
\end{align}
$$
has a solution. Additionally, all systems are congruent modulo $n_1 n_2 \ldots n_k$.

View File

@@ -1,4 +1,4 @@
# Dummit & Foote Chapter 10 Chapter 12 - Modules over Principal Ideal Domains # Dummit & Foote Chapter 12 - Modules over Principal Ideal Domains
## Section 12.1 The Basic Theory ## Section 12.1 The Basic Theory
@@ -50,4 +50,3 @@ Additionally, if $R$ is a PID, as $\Ann_R(N)$ is an ideal, $\Ann(N) = (n)R$ and
1. $N$ is a free submodule with rank $n \leq m$. 1. $N$ is a free submodule with rank $n \leq m$.
2. There exists a basis $y_1, y_2, \ldots, y_m$ of $M$ so that $r_1 y_1, r_2 y_2, \ldots, r_m y_n$ is a basis of $N$ for some $r_i \in R$ and $r_1 | r_2 | \ldots | r_n$ 2. There exists a basis $y_1, y_2, \ldots, y_m$ of $M$ so that $r_1 y_1, r_2 y_2, \ldots, r_m y_n$ is a basis of $N$ for some $r_i \in R$ and $r_1 | r_2 | \ldots | r_n$