Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download
Project: Math 582b
Views: 597
1
\documentclass{article}
2
3
\usepackage{amsmath,amssymb,amsthm,amsfonts,amscd,tikz}
4
\newcommand{\BB}[1]{\mathbb{#1}} %bold face
5
\newcommand{\ZZ}{\BB{Z}}
6
\theoremstyle{plain}
7
\newtheorem{lemma}{Lemma}
8
9
\title{Homework 5}
10
\author{(due Friday Feb 12, 2016)}
11
12
\begin{document}
13
\maketitle
14
15
\section{Problem 1}
16
17
Prove that if $p^j \geq [K:\mathbf{Q}]$ then $I_p/ p I_p \subset S/pS$ is
18
the kernel of $x\mapsto x^{p^j}$.
19
20
[[If you can't figure it out, the proof is in Cohen's book (page 303).
21
I'm fine if you read the proof, understand
22
it, and write it down here in your own words. It's pretty short. I even
23
scanned the relevant part of Cohen's book in and put it in the directory for the
24
lecture for Feb 5.]]
25
26
\subsection{proof}
27
28
Recall we defined $I_p = \{x\in S : x^m\in pS, \quad m\geq 1 \}$ so $I_p/pI_p$ in $S/pS$ is the nilradical. The claim follows from a more general lemma.
29
30
\begin{lemma}
31
Let $A$ be an $n$-dimensional $k$-algebra and $a\in\sqrt{0}$. Then $a^n = 0$.
32
\end{lemma}
33
\begin{proof}
34
Let $a\in \sqrt{0}$ and consider the map $m_a: A \to A$ given by multiplication by $a$. This is a $k$-linear map so defines an element of $End_k(A)$. Moreover, $m_a^r = 0$ for some $r$ by choice of $a$. Hence the minimal polynomial of $m_a$ must divide $X^r$. By Cayley-Hamilton, the degree of the minimal polynomial is at most the degree of the characteristic polynomial, $n$. Hence the minimal polynomial divides $X^n$. Therefore multiplication by $a^n$ is the zero map which implies $a^n=0$.
35
\end{proof}
36
37
\section{Problem 2}
38
39
Prove that for any number field $K\neq \mathbf{Q}$ there
40
is an order $S$ in $K$ so that we have to run the round 2 algorithm
41
at least $100$ times in order for it to terminate.
42
43
\subsection{proof}
44
45
The round $2$ algorithm can change the index at $p$ by at most $p^n$. If we start with an order $S$ of $K$ then the order $T$ given by one run of the algorithm sits between $S \subseteq T \subseteq \frac{1}{p}S$. Therefore
46
$$
47
[T:S] \leq [\frac{1}{p}S:S] = p^n.
48
$$
49
The last equality is clear from the fact that $S \approx \ZZ^n$ as a $\ZZ$-module so $\frac{1}{p}S/S \approx \left(\ZZ/p\ZZ\right)^n$.
50
51
So the claim follows by choosing an order with index at least $p^{100n}$. For example, in $\ZZ[i]$, if we choose the order $\ZZ[5^{200}i]$ then we would need to run at least $100$ iterations of round 2. This is always possible. We can choose a primitive element which is integral $\alpha$, and then take $\ZZ[p^{100n}\alpha]$.
52
53
\end{document}
54
55