Für Vorlesungen, bitte die Webseite verwenden. https://flavigny.de/lecture
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2204 line
102KB

  1. \documentclass{arbeit}
  2. \author{Christian Merten}
  3. \title{Auflösung unbeschränkter Komplexe}
  4. \usepackage{tikz-cd}
  5. \usepackage{amssymb}
  6. \usepackage{hyperref}
  7. \usepackage{graphicx}
  8. %\newcommand{\smallbullet}{\tikz \draw (0,0) circle (1.5pt);}
  9. \newcommand{\com}[1]{#1^{\text{\scalebox{0.7}{\textbullet}}}}
  10. \newcommand{\K}{\mathcal{K}}
  11. \newcommand{\colim}{\underset{\longrightarrow}{\text{colim }}}
  12. \renewcommand{\lim}{\underset{\longleftarrow}{\text{lim }}}
  13. \newcommand{\final}[1]{\underset{\rightarrow}{#1}}
  14. \begin{document}
  15. \maketitle
  16. \section{Einleitung}
  17. \section{Derivierte Kategorien und abgeleitete Funktoren}
  18. Seien $\mathcal{A}, \mathcal{B}$ abelsche Kategorien und sei $F\colon \mathcal{A} \to
  19. \mathcal{B}$ ein Funktor. Das Ziel ist es in natürlicher Weise für jedes Objekt
  20. $X \in \mathcal{A}$ einen Komplex $\text{R}F(X)$ zu definieren, dessen Kohomologiegruppen,
  21. falls $F$ linksexakt ist,
  22. mit den klassischen Rechtsableitungen von $F$ bei $X$ übereinstimmen.
  23. Allgemeiner definieren wir $\text{R}F(\com{X})$
  24. für jeden Komplex $\com{X}$ in $\mathcal{A}$. Genauer gesagt konstruieren wir einen
  25. Funktor $\text{R}F$ von der derivierten Kategorie $\mathcal{D}(\mathcal{A})$ von
  26. $\mathcal{A}$ in die derivierte Kategorie $\mathcal{D}(\mathcal{B})$ von $\mathcal{B}$.
  27. Die derivierte Kategorie $\mathcal{D}(\mathcal{A})$ erhalten wir durch Lokalisierung,
  28. analog zum gleichnamigen Vorgang in der kommutativen Algebra: Wir starten mit der Kategorie
  29. $\mathcal{K}(\mathcal{A})$, der Komplexkategorie von $\mathcal{A}$, wobei die Morphismen
  30. Homotopieäquivalenzklassen von Komplexhomomorphismen sind. Daraus erhalten
  31. wir dann $\mathcal{D}(\mathcal{A})$ indem alle Quasiisomorphismen in
  32. $\mathcal{K}(\mathcal{A})$, das heißt Komplexhomomorphismen, die Isomorphismen auf den
  33. Kohomologiegruppen induzieren, in $\mathcal{D}(\mathcal{A})$ zu Isomorphismen erklärt werden.
  34. Dieser Lokalisierungsprozess wird im Folgenden skizziert. Die Vorgehensweise orientiert
  35. sich an Kapitel 1 von \cite{hartshorne}.
  36. \subsection{Triangulierte Kategorien}
  37. Auch wenn $\mathcal{A}$ eine abelsche Kategorie ist, sind $\mathcal{K}(\mathcal{A})$
  38. und $\mathcal{D}(\mathcal{A})$ im Allgemeinen nicht abelsch; sie genügen jedoch einer
  39. anderen Struktur, die einer triangulierten Kategorie.
  40. \begin{definition}[Triangulierte Kategorie]
  41. Eine triangulierte Kategorie ist eine additive Kategorie $\mathcal{T}$ mit
  42. \begin{enumerate}[(a)]
  43. \item einem additiven Kategorienautomorphismus
  44. $T\colon \mathcal{T} \to \mathcal{T}$, dem Verschiebefunktor, und
  45. \item einer Klasse von Sextupeln $(X, Y, Z, u, v, w)$, den ausgezeichneten Dreiecken von $\mathcal{T}$, wobei
  46. $X, Y, Z \in \mathcal{T}$ und $u\colon X \to Y$, $v\colon Y \to Z$, $w\colon Z \to T(X)$ Morphismen sind.
  47. \end{enumerate}
  48. Ein Morphismus von ausgezeichneten Dreiecken
  49. $(X, Y, Z, u, v, w) \to (X', Y', Z', u', v', w')$ ist ein kommutatives Diagramm
  50. \[
  51. \begin{tikzcd}
  52. X \arrow{r}{u} \arrow{d} & Y \arrow{r}{v} \arrow{d} & Z \arrow{r}{w} \arrow{d} & T(X) \arrow{d} \\
  53. X' \arrow{r}{u'} & Y' \arrow{r}{v'} & Z' \arrow{r}{w'} & T(X') \\
  54. \end{tikzcd}
  55. .\]
  56. Weiter unterliegen diese Daten den folgenden Axiomen:
  57. \begin{enumerate}[(TR1), leftmargin=14mm]
  58. \item Jedes zu einem ausgezeichneten Dreieck
  59. isomorphe Sextupel $(X, Y, Z, u, v, w)$ wie oben, ist ein ausgezeichnetes Dreieck. Jeder
  60. Morphismus $u\colon X \to Y$ kann in ein ausgezeichnetes Dreieck $(X, Y, Z, u, v, w)$ eingebettet werden
  61. und das Sextupel $(X, X, 0, \text{id}_X, 0, 0)$ ist ein ausgezeichnetes Dreieck für alle $X \in \mathcal{T}$.
  62. \item $(X, Y, Z, u, v, w)$ ist ein ausgezeichnetes Dreieck genau dann wenn $(Y, Z, T(X), v, w, -T(u))$ ein
  63. ausgezeichnetes Dreieck ist.
  64. \item Für zwei ausgezeichnete Dreiecke $(X, Y, Z, u, v, w)$ und $(X', Y', Z', u', v', w')$, und
  65. Morphismen $f\colon X \to X'$, $g\colon Y \to Y'$, die mit $u$ und $u'$ kommutieren, existiert
  66. ein nicht notwendig eindeutiger Morphismus $h\colon Z \to Z'$, sodass $(f, g, h)$ ein Morphismus
  67. von ausgezeichneten Dreiecken ist.
  68. \end{enumerate}
  69. \label{TR2}
  70. \end{definition}
  71. \begin{bem}
  72. Streng genommen ist die hier definierte Triangulierte Kategorie nur eine Pretriangulierte Kategorie. Für
  73. eine vollständig triangulierte Kategorie fehlt noch das Oktaheder Axiom
  74. (TR4 in \cite{hartshorne}), das wir im Folgenden jedoch nicht benötigen.
  75. \end{bem}
  76. \begin{definition}
  77. Sei $\mathcal{T}$ eine triangulierte Kategorie mit Verschiebefunktor $T$.
  78. Eine Unterkategorie $\mathcal{R}$ von $\mathcal{T}$ heißt
  79. triangulierte Unterkategorie, wenn gilt
  80. \begin{enumerate}[(i)]
  81. \item für jedes Objekt $X \in \mathcal{T}$ ist $X \in \mathcal{R}$, genau dann wenn
  82. $T(X) \in \mathcal{R}$ ist, und
  83. \item falls zwei Punkte eines ausgezeichneten Dreiecks in $\mathcal{T}$ in $\mathcal{R}$ liegen, so auch
  84. der dritte.
  85. \end{enumerate}
  86. \label{def:triangulated-subcategory}
  87. \end{definition}
  88. \begin{definition}[Triangulierter Funktor]
  89. Ein additiver (kovarianter) Funktor $F\colon \mathcal{T} \to \mathcal{S}$ zwischen triangulierten Kategorien
  90. heißt trianguliert, wenn er ausgezeichnete Dreiecke in ausgezeichnete Dreiecke überführt und mit dem
  91. Verschiebefunktor kommutiert.
  92. \end{definition}
  93. \begin{definition}[Kohomologischer Funktor]
  94. Ein additiver (kovarianter) Funktor $H\colon \mathcal{T} \to \mathcal{A}$ von einer triangulierten Kategorie
  95. in eine abelsche Kategorie heißt (kovarianter) kohomologischer Funktor, wenn für jedes
  96. ausgezeichnete Dreieck $(X, Y, Z, u, v, w)$ von $\mathcal{T}$ die lange Folge
  97. \[
  98. \begin{tikzcd}
  99. \cdots \arrow{r} & H(T^{i}X) \arrow{r} & H(T^{i}Y) \arrow{r} & H(T^{i}Z) \arrow{r} & H(T^{i+1}X) \arrow{r}
  100. & \cdots
  101. \end{tikzcd}
  102. \] exakt ist. Wenn $H$ ein kohomologischer Funktor ist, dann schreiben wir auch $H^{i}(X)$ für $H(T^{i}X)$
  103. für $i \in \Z$.
  104. \end{definition}
  105. \begin{lemma}
  106. Sei $\mathcal{T}$ eine triangulierte Kategorie und $X \in \mathcal{T}$.
  107. Dann sind $\text{Mor}_{\mathcal{T}}(X, -)$ und $\text{Mor}_{\mathcal{T}}(-, X)$ kohomologische Funktoren.
  108. \label{hom-cohom-func}
  109. \end{lemma}
  110. \begin{proof}
  111. siehe Proposition 1.1 in \cite{hartshorne}.
  112. \end{proof}
  113. \subsection{Homotopiekategorie}
  114. Das kanonische Beispiel für eine triangulierte Kategorie ist die Homotopiekategorie einer additiven Kategorie $\mathcal{C}$.
  115. \begin{definition}[Homotopiekategorie]
  116. Sei $\mathcal{C}$ eine additive Kategorie. Dann ist die Homotopiekategorie
  117. $\mathcal{K}(\mathcal{C})$ von $\mathcal{C}$, die Kategorie, deren Objekte
  118. Komplexe mit Objekten aus $\mathcal{C}$ sind und
  119. deren Morphismen Homotopieäquivalenzklassen von Komplexhomomorphismen sind.
  120. \end{definition}
  121. %\begin{bem}
  122. In der Homotopiekategorie haben wir einen natürlichen Kategorienautomorphismus
  123. $T\colon \mathcal{K}(\mathcal{C}) \to \mathcal{K}(\mathcal{C})$, der
  124. durch Verschieben nach links gegeben ist, das
  125. heißt für $\com{X} \in \mathcal{K}(\mathcal{C})$ durch
  126. \begin{equation}
  127. T(\com{X})^{i} = X^{i+1} \text{ und } d_{T(\com{X})} = - d_{\com{X}}
  128. \label{eq:shift-functor}
  129. \end{equation}
  130. %\end{bem}
  131. \begin{bem}[Notation]
  132. Für $\com{X} \in \mathcal{K}(\mathcal{C})$ schreiben wir auch
  133. \[
  134. \com{X}[n] = T^{n}(\com{X})
  135. .\]
  136. \end{bem}
  137. Um die ausgezeichneten Dreiecke in $\mathcal{K}(\mathcal{C})$ zu erklären, benötigen wir
  138. den Abbildungskegel eines Morphismus in $\mathcal{K}(\mathcal{C})$:
  139. \begin{definition}[Abbildungskegel]
  140. Seien $\com{X}, \com{Y} \in \mathcal{K}$ zwei Komplexe und $f\colon \com{X} \to \com{Y}$ ein
  141. Komplexhomomorphismus. Dann sei der Abbildungskegel
  142. $\com{C}_f \in \mathcal{K}(\mathcal{C})$ definiert durch
  143. \[
  144. C_f^{n} = X^{n+1} \oplus Y^{n}
  145. \] mit Differential
  146. \[
  147. d_{\com{C}_f} = \begin{pmatrix}
  148. d_{\com{X}[1]} & 0 \\
  149. f[1] & d_{\com{Y} }
  150. \end{pmatrix}
  151. .\]
  152. \label{def:mapping-cone}
  153. \end{definition}
  154. \begin{bem}
  155. \begin{enumerate}[(1)]
  156. \item In der Situation von \ref{def:mapping-cone} haben wir kanonische Morphismen
  157. $i\colon \com{Y} \to \com{C}_{f}$ und $p\colon \com{C}_{f} \to \com{X}[1]$.
  158. \item Oft wird auch die Notation $\com{C}_f = \com{X}[1] \oplus \com{Y}$ verwendet.
  159. Man beachte jedoch, dass der Abbildungskegel \emph{nicht} das Koprodukt
  160. von $\com{X}[1]$ und $\com{Y}$ ist.
  161. \end{enumerate}
  162. \end{bem}
  163. \begin{satz}[Homotopiekategorie ist trianguliert]
  164. Sei $\mathcal{C}$ eine additive Kategorie. Dann ist die Homotopiekategorie $\mathcal{K}(\mathcal{C})$
  165. mit den folgenden Daten trianguliert:
  166. \begin{enumerate}[(a)]
  167. \item Der Verschiebefunktor $T\colon \mathcal{K}(\mathcal{C}) \to \mathcal{K}(\mathcal{C})$ wie in \ref{eq:shift-functor}.
  168. \item Ein Sextupel $(\com{X}, \com{Y}, \com{Z}, u, v, w)$
  169. wie in \ref{TR2} in $\mathcal{K}(\mathcal{C})$
  170. ist ein ausgezeichnetes Dreieck,
  171. genau dann wenn
  172. es im Sinne von ausgezeichneten Dreiecken isomorph ist zu einem Sextupel
  173. der Form
  174. $(\com{X}, \com{Y}, \com{C_{f}}, f, i, p)$,
  175. wobei $f\colon \com{X} \to \com{Y} $ ein Morphismus
  176. in $\mathcal{K}(\mathcal{C})$ ist und $i\colon \com{Y} \to \com{C_{f}}$,
  177. $p\colon \com{C}_{f} \to \com{X}[1]$ die kanonischen Morphismen sind.
  178. \end{enumerate}
  179. \end{satz}
  180. \begin{proof}
  181. siehe Kapitel 1, §2 in \cite{hartshorne}.
  182. \end{proof}
  183. Sei nun $\mathcal{A}$ eine abelsche Kategorie und $\mathcal{K} = \mathcal{K}(\mathcal{A})$ die Homotopiekategorie.
  184. \begin{lemma}
  185. Der Funktor $H\colon \mathcal{K} \to \mathcal{A}b$ der einen Komplex $\com{A}$
  186. auf seine nullte Kohomologiegruppe abbildet, ist ein kohomologischer Funktor.
  187. \label{lemma:cohom-is-cohom-functor}
  188. \end{lemma}
  189. \begin{proof}
  190. siehe Kapitel 1, §2 in \cite{hartshorne}.
  191. \end{proof}
  192. Daraus erhalten wir insbesondere folgendes Kriterium, ob ein Komplexhomomorphismus ein Quasiisomorphismus ist:
  193. \begin{lemma}[]
  194. Seien $\com{A}, \com{B} \in \mathcal{K}$ und $f\colon \com{A} \to \com{B} $ ein Komplexhomomorphismus.
  195. Dann ist $f$ ein Quasiisomorphismus, genau dann wenn $\com{C}_f$ exakt ist.
  196. \label{mapping-cone-exact-for-qis}
  197. \end{lemma}
  198. \begin{proof}
  199. Es ist $(\com{A}, \com{B}, \com{C}_f, f, \iota, \rho)$ ein ausgezeichnetes Dreieck in $\mathcal{K}$ mit
  200. $\iota\colon \com{B} \to \com{C}_f$ und $\rho\colon \com{C}_f \to \com{A}[1]$ die natürlichen
  201. Morphismen. Also
  202. erhalten wir mit \ref{lemma:cohom-is-cohom-functor} für $i \in \Z$ eine exakte Folge
  203. \[
  204. \begin{tikzcd}
  205. H^{i-1}(\com{C}_f) \arrow{r}
  206. & H^{i}(\com{A}) \arrow{r}{H^{i}(f)}
  207. & H^{i}(\com{B}) \arrow{r}
  208. & H^{i}(\com{C}_f) \arrow{r}
  209. & H^{i+1}(\com{A}) \arrow{r}{H^{i+1}(f)}
  210. & H^{i+1}(\com{B})
  211. \end{tikzcd}
  212. .\] Die Exaktheit liefert nun die Äquivalenz.
  213. \end{proof}
  214. \begin{bem}
  215. Falls in der Situation von \ref{mapping-cone-exact-for-qis},
  216. $H^{i}(f)$ ein Isomorphismus ist für $i \gg 0$ (bzw. $i \ll 0$), folgt aus der exakten Folge im Beweis,
  217. dass $H^{i}(\com{C}_f) = 0$ für $i \gg 0$ (bzw. $i \ll 0$).
  218. \label{bem:mapping-cone-h-bounded}
  219. \end{bem}
  220. \begin{korollar}
  221. Sei $\mathcal{B}$ eine weitere abelsche Kategorie und
  222. $F\colon \mathcal{K}(\mathcal{A}) \to \mathcal{K}(\mathcal{B})$
  223. ein triangulierter Funktor.
  224. Dann erhält $F$ genau dann Exaktheit von Komplexen, wenn $F$ Quasiisomorphismen erhält.
  225. \label{kor:exactness-preserver-preserves-qis}
  226. \end{korollar}
  227. \begin{proof}
  228. ($\Rightarrow$) Seien $\com{X}, \com{Y} \in \mathcal{K}(\mathcal{A})$
  229. und $f\colon \com{X} \to \com{Y}$ ein Quasiisomorphismus. Dann ist
  230. \[
  231. \begin{tikzcd}
  232. \com{X} \arrow{r}{f} & \com{Y} \arrow{r} & \com{C}_f \arrow{r} & \com{X}[1]
  233. \end{tikzcd}
  234. \] ein ausgezeichnetes Dreieck in $\mathcal{K}(\mathcal{A})$, wobei $\com{C}_f$
  235. nach \ref{mapping-cone-exact-for-qis} exakt ist. Nach Voraussetzung ist
  236. \[
  237. \begin{tikzcd}
  238. F(\com{X}) \arrow{r}{F(f)} & F(\com{Y}) \arrow{r} & F(\com{C}_f) \arrow{r} & \com{X}[1]
  239. \end{tikzcd}
  240. \] ebenfalls ein ausgezeichnetes Dreieck und wir erhalten für $i \in \Z$ die exakte Folge:
  241. \[
  242. \begin{tikzcd}
  243. H^{i-1}(F(\com{C}_f)) \arrow{r} & H^{i}(F(\com{X})) \arrow{r} & H^{i}(F(\com{Y})) \arrow{r} &
  244. H^{i}(F(\com{C}_f))
  245. \end{tikzcd}
  246. .\] Die äußeren Terme sind $0$, weil $F$ Exaktheit erhält. Aus der Exaktheit der Folge, folgt damit
  247. der gewünschte Isomorphismus.
  248. ($\Leftarrow$) Sei $\com{X} \in \mathcal{K}(\mathcal{A})$ exakt. Dann ist $\com{X} \to \com{0}$
  249. ein Quasiisomorphismus, also auch $F(\com{X}) \to F(\com{0} )$. Da $F$ additiv ist, folgt $F(\com{0}) = \com{0}$ und damit
  250. die Behauptung.
  251. \end{proof}
  252. \subsection{Lokalisierung von Kategorien}
  253. Wie anfangs erwähnt, ist die derivierte Kategorie $\mathcal{D}(\mathcal{A})$ einer
  254. abelschen Kategorie $\mathcal{A}$
  255. eine Lokaliserung der Homotopiekategorie $\mathcal{K}(\mathcal{A})$.
  256. Diese funktioniert analog zum gleichnamigen Prozess in der kommutativen Algebra, was
  257. uns zu folgendem Begriff führt:
  258. \begin{definition}[Multiplikatives System]
  259. Sei $\mathcal{C}$ eine Kategorie. Eine Klasse $\mathcal{S}$ von Morphismen von $\mathcal{C}$ heißt
  260. multiplikatives System, wenn es die folgenden Axiome erfüllt:
  261. \begin{enumerate}[(FR1), leftmargin=14mm]
  262. \item Wenn $f, g \in \mathcal{S}$, sodass $fg$ existiert, ist $fg \in \mathcal{S}$. Für
  263. alle $X \in \mathcal{C}$ ist $\text{id}_{X}\in \mathcal{S}$.
  264. \item Jedes Diagramm in $\mathcal{C}$
  265. \[
  266. \begin{tikzcd}
  267. & Z \arrow{d}{s} \\
  268. X \arrow{r}{u} & Y \\
  269. \end{tikzcd}
  270. \] mit $s \in \mathcal{S}$ kann zu einem kommutativen Diagramm
  271. \[
  272. \begin{tikzcd}
  273. W \arrow{r}{v} \arrow{d}{t} & Z \arrow{d}{s} \\
  274. X \arrow{r}{u} & Y
  275. \end{tikzcd}
  276. \] mit $t \in \mathcal{S}$ ergänzt werden. Analog gilt die selbe Aussage mit allen Pfeilen umgedreht.
  277. \item Für $f, g \colon X \to Y$ Morphismen in $\mathcal{C}$, sind die folgenden Bedingungen äquivalent:
  278. \begin{enumerate}[(i)]
  279. \item Es existiert ein $s\colon Y \to Y'$ in $\mathcal{S}$, sodass $sf = sg$.
  280. \item Es existiert ein $t\colon X \to X'$ in $\mathcal{S}$, sodass $ft = gt$.
  281. \end{enumerate}
  282. \end{enumerate}
  283. \label{def:mult-system}
  284. \end{definition}
  285. \begin{definition}[Lokalisierung]
  286. Seien $\mathcal{C}$ eine Kategorie und $\mathcal{S}$ eine Klasse von Morphismen in $\mathcal{C}$. Dann
  287. ist die Lokalisierung von $\mathcal{C}$ in Bezug auf $\mathcal{S}$ eine Kategorie $\mathcal{C}_{\mathcal{S}}$
  288. zusammen mit einem Funktor $Q\colon \mathcal{C} \to \mathcal{C}_{\mathcal{S}}$, sodass
  289. \begin{enumerate}[(a)]
  290. \item $Q(s)$ ein Isomorphismus ist für alle $s \in \mathcal{S}$ und
  291. \item jeder Funktor $F\colon \mathcal{C} \to \mathcal{D}$, sodass $F(s)$ ein Isomorphismus ist
  292. für alle $s \in \mathcal{S}$, eindeutig über $Q$ faktorisiert.
  293. \end{enumerate}
  294. \label{def:localisation}
  295. \end{definition}
  296. \begin{definition}
  297. Sei $\mathcal{C}$ eine Kategorie und $\mathcal{S}$ ein multiplikatives System in $\mathcal{C}$. Dann definiere
  298. die Kategorie $\mathcal{C}_{\mathcal{S}}$ durch
  299. \begin{enumerate}[(a)]
  300. \item $ob(\mathcal{C}) = ob(\mathcal{C}_{\mathcal{S}})$.
  301. \item Für $X, Y \in \mathcal{C}$ setze
  302. $\text{Mor}_{\mathcal{C}_{\mathcal{S}}}(X, Y) = \{ (f, Z, s) \mid f \colon Z \to Y,
  303. s \colon Z \to X \text{ mit } s \in \mathcal{S}\} / \sim $ wobei
  304. $(f, Z, s) \sim (f', Z', s')$ genau dann wenn ein kommutatives Diagramm
  305. \[
  306. \begin{tikzcd}
  307. & Z \arrow{dl}{s} \arrow{dr}{f} & \\
  308. X & W \arrow{l}{t} \arrow{u}{g} \arrow{d}{h} & Y \\
  309. & \arrow{ul}{s'} Z' \arrow{ur}{f'} &
  310. \end{tikzcd}
  311. \] mit $t \in \mathcal{S}$ in $\mathcal{C}$ existiert.
  312. \item Für $(f, U, s) \in \text{Mor}_{\mathcal{C}_{\mathcal{S}}}(X, Y)$,
  313. $(g, V, t) \in \text{Mor}_{\mathcal{C}_{\mathcal{S}}}(Y, Z)$ sei
  314. die Komposition definiert durch die äußeren Morphismen des kommutativen Diagramms
  315. \[
  316. \begin{tikzcd}
  317. & & \arrow[dashed]{dl}{r} W \arrow[dashed]{dr}{h} & & \\
  318. & \arrow{dl}{s} U \arrow{dr}{f} & & \arrow{dl}{t} V \arrow{dr}{g} & \\
  319. X & & Y & & Z
  320. \end{tikzcd}
  321. .\] Die gestrichelten Morphismen existieren wegen \hyperref[def:mult-system]{FR2}.
  322. \item Für $X \in \mathcal{C}$ ist die Identität $X \to X$ in $\mathcal{C}_{\mathcal{S}}$
  323. gegeben durch das Tripel $(\text{id}_X, X, \text{id}_X)$.
  324. \end{enumerate}
  325. \label{constr:localisation}
  326. \end{definition}
  327. \begin{satz}
  328. Sei $\mathcal{C}$ eine Kategorie und $\mathcal{S}$ ein multiplikatives System, dann ist
  329. die in \ref{constr:localisation} konstruierte Kategorie $\mathcal{C}_{\mathcal{S}}$
  330. wohldefiniert und eine Lokalisierung von $\mathcal{C}$ bezüglich $\mathcal{S}$. Der kanonische
  331. Funktor $Q\colon \mathcal{C} \to \mathcal{C}_{\mathcal{S}}$ ist dann gegeben durch
  332. $Q(X) = X$ für $X \in \mathcal{C}$ und $Q(f) = (f, X, \text{id}_{X})$ für $f\colon X \to Y$ in $\mathcal{C}$.
  333. \label{satz:existence-localisation}
  334. \end{satz}
  335. \begin{proof}
  336. siehe Proposition 3.1 in \cite{hartshorne}.
  337. \end{proof}
  338. \begin{bem}
  339. \begin{enumerate}[(a)]
  340. \item Da $\mathcal{S}$ eine echte Klasse sein kann, das heißt keine Menge, ist im
  341. Allgemeinen auch $\text{Mor}_{\mathcal{C}_{\mathcal{S}}}(X, Y)$ für
  342. $X, Y \in \mathcal{C}_{\mathcal{S}}$
  343. keine Menge. Das
  344. heißt streng genommen ist $\mathcal{C}_{\mathcal{S}}$ im Allgemeinen nur
  345. eine große Kategorie. In unseren Anwendungsfällen kann man jedoch zeigen, dass $\mathcal{C}_{\mathcal{S}}$
  346. eine (echte) Kategorie ist. Für Details
  347. siehe Bemerkung 10.3.6 in \cite{set-theoretic}.
  348. Wir nehmen im Folgenden stillschweigend an, dass $\mathcal{C}_{\mathcal{S}}$
  349. eine (echte) Kategorie ist.
  350. \item Die Lokalisierung $\mathcal{C}_{\mathcal{S}}$ einer Kategorie $\mathcal{C}$
  351. kann auch dual, dass heißt durch Umdrehen aller Pfeile,
  352. konstruiert werden. Wenn im Folgenden der Kontext klar ist, dann schreiben wir auch einfach
  353. $X$ für $Q(X)$ für ein Objekt $X \in \mathcal{C}$. Ebenso schreiben wir für $X, Y \in \mathcal{C}$ auch
  354. $s^{-1}f$ bzw. in der dualen Konstruktion $fs^{-1}$ für die Äquivalenzklasse des Tripels
  355. $(f, Z, s) \in \text{Mor}_{\mathcal{C}_{\mathcal{S}}}(X, Y)$. In dieser Notation ist
  356. dann $Q(f) = \text{id}^{-1}f$ bzw. $Q(f) = f\text{id}^{-1}$ für $f\colon X \to Y$ in $\mathcal{C}$.
  357. \end{enumerate}
  358. \end{bem}
  359. Falls $\mathcal{T}$ eine triangulierte Kategorie ist und $\mathcal{S}$ ein multiplikatives
  360. System, stellt sich die Frage, ob sich
  361. die Triangulation von $\mathcal{C}$
  362. in natürlicher Weise auf $\mathcal{C}_{\mathcal{S}}$ ausdehnt. Dazu fordern wir zusätzlich
  363. an $\mathcal{S}$:
  364. \begin{definition}[Mit Triangulation kompatibles multiplikatives System]
  365. Sei $\mathcal{T}$ eine triangulierte Kategorie mit Verschiebefunktor $T$
  366. und $\mathcal{S}$ ein multiplikatives System
  367. von Morphismen. Wir nennen $\mathcal{S}$ kompatibel mit der Triangulation, wenn die folgenden
  368. Axiome erfüllt sind:
  369. \begin{enumerate}[(FR1), leftmargin=14mm]
  370. \setcounter{enumi}{3}
  371. \item $s \in \mathcal{S} \iff T(s) \in \mathcal{S}$.
  372. \item \hyperref[TR2]{TR3} unter der zusätzlichen Annahme, dass $f, g \in \mathcal{S}$
  373. und der zusätzlichen Forderung, dass $h \in \mathcal{S}$ ist.
  374. \end{enumerate}
  375. \end{definition}
  376. \begin{satz}
  377. Sei $\mathcal{T}$ eine triangulierte Kategorie und $\mathcal{S}$ ein
  378. mit der Triangulation kompatibles
  379. multiplikatives System. Dann hat $\mathcal{T}_{\mathcal{S}}$ eine eindeutige
  380. triangulierte Struktur, sodass $Q$ ein triangulierter Funktor ist und
  381. die universelle Eigenschaft b) aus \ref{def:localisation} für triangulierte Funktoren in triangulierte
  382. Kategorien erfüllt.
  383. \label{satz:existence-triangulated-localisation}
  384. \end{satz}
  385. \begin{proof}
  386. siehe Proposition 3.2 in \cite{hartshorne}.
  387. \end{proof}
  388. \subsection{Derivierte Kategorie}
  389. Sei im Folgenden $\mathcal{A}$ eine feste abelsche Kategorie und $\mathcal{K} = \mathcal{K}(\mathcal{A})$ die
  390. Homotopiekategorie. Wir bezeichnen im Folgenden die Klasse
  391. der Quasiisomorphismen in $\mathcal{K}$ als $\mathcal{Q}is$.
  392. \begin{lemma}[$\mathcal{Q}is$ ist multiplikativ]
  393. $\mathcal{Q}is$ ist ein mit der Triangulation von $\mathcal{K}$ kompatibles multiplikatives System.
  394. \label{lemma:qis-mult}
  395. \end{lemma}
  396. \begin{proof}
  397. siehe Proposition 4.1 in \cite{hartshorne}.
  398. \end{proof}
  399. Nach \ref{satz:existence-localisation}, \ref{satz:existence-triangulated-localisation} und \ref{lemma:qis-mult} angewendet
  400. auf $\mathcal{K}$ und $\mathcal{Q}is$, existiert die triangulierte Kategorie $\mathcal{K}_{\mathcal{Q}is}$.
  401. \begin{definition}[Derivierte Kategorie]
  402. Wir bezeichnen die triangulierte Lokalisierung $\mathcal{K}_{\mathcal{Q}is}$
  403. als die derivierte Kategorie $\mathcal{D} = \mathcal{D}(\mathcal{A})$ von $\mathcal{A}$.
  404. \end{definition}
  405. \begin{bem}[]
  406. Im Folgenden bezeichne $Q = Q_{\mathcal{A}}\colon \mathcal{K}(\mathcal{A}) \to \mathcal{D}(\mathcal{A})$
  407. den kanonischen Lokalisierungsfunktor.
  408. \end{bem}
  409. Um zu verstehen, wann zwei Morphismen in $\mathcal{K}$ den selben Morphismus in $\mathcal{D}$ induzieren, hilft
  410. das folgende Lemma:
  411. \begin{lemma}
  412. Seien $\com{X}, \com{Y} \in \mathcal{K}$ und $f\colon \com{X} \to \com{Y}$. Dann
  413. sind die folgenden Bedingungen äquivalent:
  414. \begin{enumerate}[(i)]
  415. \item $\text{id}^{-1}f = 0$ in $\mathcal{D}$.
  416. \item Es existiert ein Quasiisomorphismus $t\colon \com{X'} \to \com{X} $,
  417. sodass $ft = 0$ in $\mathcal{K}$.
  418. \item Es existiert ein Quasiisomorphismus $s\colon \com{Y} \to \com{Y'} $,
  419. sodass $sf = 0$ in $\mathcal{K}$.
  420. \end{enumerate}
  421. \label{derived-cat-morphism-null}
  422. \end{lemma}
  423. \begin{proof}
  424. Wegen \hyperref[def:mult-system]{FR3} und \ref{lemma:qis-mult} genügt es
  425. die Äquivalenz von
  426. (i) und (ii) zu zeigen. Es ist $\text{id}^{-1}f = 0$, genau dann wenn
  427. ein kommutatives Diagram
  428. \[
  429. \begin{tikzcd}
  430. & \com{X} \arrow{dl}{\text{id}} \arrow{dr}{f} & \\
  431. \com{X} & \arrow[dashed]{l}{t} \com{X'} \arrow[dashed]{d} \arrow[dashed]{u} & \com{Y} \\
  432. & \com{X} \arrow{ul}{\text{id}} \arrow{ur}{0} &
  433. \end{tikzcd}
  434. \] mit $t$ Quasiisomorphismus existiert. Das zeigt die Behauptung.
  435. \end{proof}
  436. Wir möchten nun Ableitungen von Funktoren im Kontext von
  437. derivierten Kategorien betrachten.
  438. Seien dafür $\mathcal{A}$ und $\mathcal{B}$ abelsche Kategorien und
  439. $F\colon \mathcal{K}(\mathcal{A}) \to \mathcal{K}(\mathcal{B})$ ein triangulierter
  440. (kovarianter) Funktor.
  441. Das ist zum Beispiel der Fall, wenn $F$ induziert ist von einem additiven Funktor
  442. $F\colon \mathcal{A} \to \mathcal{B}$.
  443. Falls $F$ exakt ist werden Quasiisomorphismen auf Quasiisomorphismen geschickt und $F$ induziert daher
  444. einen Funktor von $\mathcal{D}(\mathcal{A})$ nach $\mathcal{D}(\mathcal{B})$.
  445. Im Allgemeinen ist das nicht der Fall und wir konstruieren dann, unter bestimmten
  446. Voraussetzungen an $F$ und die beteiligten Kategorien, einen Funktor
  447. $\text{R}F\colon \mathcal{D}(\mathcal{A}) \to \mathcal{D}(\mathcal{B})$:
  448. \begin{definition}[Abgeleiteter Funktor]
  449. Seien $\mathcal{A}, \mathcal{B}$ abelsche Kategorien. Der rechts abgeleitete Funktor von $F$ ist
  450. ein triangulierter Funktor
  451. \[
  452. \text{R}F\colon \mathcal{D}(\mathcal{A}) \to \mathcal{D}(\mathcal{A})
  453. \] zusammen mit einer natürlichen Transformation
  454. \[
  455. \xi\colon Q_{\mathcal{B}} \circ F \to \text{R}F \circ Q_{\mathcal{A}}
  456. \] von Funktoren von $\mathcal{K}(\mathcal{A})$ nach $\mathcal{D}(\mathcal{B})$ mit
  457. der folgenden universellen Eigenschaft: Für jeden triangulierten Funktor
  458. \[
  459. G\colon \mathcal{D}(\mathcal{A}) \to \mathcal{D}(\mathcal{B})
  460. \]
  461. und jede natürliche Transformation
  462. \[
  463. \zeta\colon Q_{\mathcal{B}} \circ F \to G \circ Q_{\mathcal{A}}
  464. \] existiert eine eindeutige natürliche Transformation
  465. \[
  466. \eta\colon \text{R}F \to G
  467. \] von Funktoren von $\mathcal{D}(\mathcal{A})$ nach $\mathcal{D}(\mathcal{B})$, sodass
  468. das folgende Diagramm kommutiert:
  469. \[
  470. \begin{tikzcd}
  471. Q_{\mathcal{B}} \circ F \arrow{r}{\xi} \arrow{dr}{\zeta}
  472. & \text{R}F \circ Q_{\mathcal{A}} \arrow[dashed]{d}{\eta} \\
  473. & G \circ Q_{\mathcal{A}}
  474. \end{tikzcd}
  475. .\]
  476. \end{definition}
  477. \begin{bem}[]
  478. \begin{enumerate}[(a)]
  479. \item Falls $\text{R}F$ existiert, ist dieser bis auf eindeutige natürliche Transformationen eindeutig.
  480. \item Wir schreiben $R^{i}F$ für $H^{i}(\text{R}F)$ und wenn $F$ induziert ist von einem
  481. links-exakten Funktor $F\colon \mathcal{A} \to \mathcal{B}$ und $\mathcal{A}$ genügend Injektive hat, sind
  482. das genau die klassischen rechts-abgeleiteten Funktoren von $F$.
  483. \item Es gibt den analogen Begriff der Linksableitung $\text{L}F$ (kovarianter)
  484. Funktoren, bei dem sich die Pfeile der natürlichen Transformationen umdrehen.
  485. \end{enumerate}
  486. \label{bem:derived-functors}
  487. \end{bem}
  488. \begin{satz}
  489. Seien $\mathcal{A}, \mathcal{B}$ abelsche Kategorien und
  490. $F\colon \mathcal{K}(\mathcal{A}) \to \mathcal{K}(\mathcal{B})$ ein triangulierter Funktor. Angenommen es
  491. existiert eine triangulierte Unterkategorie $\mathcal{L} \subset \mathcal{K}(\mathcal{A})$, sodass
  492. \begin{enumerate}[(i)]
  493. \item Jeder Komplex in $\mathcal{K}(\mathcal{A})$ besitzt einen Quasiisomorphismus in einen
  494. Komplex aus $\mathcal{L}$.
  495. \item $F|_{\mathcal{L}}$ ist exakt.
  496. \end{enumerate}
  497. Dann existiert der Funktor $\text{R}F\colon \mathcal{D}(\mathcal{A}) \to \mathcal{D}(\mathcal{B})$ und
  498. für die natürliche Transformation $\xi\colon Q_{\mathcal{B}} \circ F \to \text{R}F \circ Q_{\mathcal{A}}$ gilt, dass
  499. für alle $\com{I} \in \mathcal{L}$ die Abbildung
  500. \[
  501. \xi(\com{I})\colon Q_{\mathcal{B}}(F(\com{I})) \to \text{R}F(Q_{\mathcal{A}}(\com{I}))
  502. \] ein Isomorphismus in $\mathcal{D}(A)$ ist.
  503. \label{satz:existence-derived-functors}
  504. \end{satz}
  505. \begin{proof}
  506. siehe Theorem 5.1 in \cite{hartshorne}.
  507. \end{proof}
  508. Die Voraussetzungen von \ref{satz:existence-derived-functors} sind im Allgemeinen schwer zu erfüllen. Deshalb betrachtet man häufig gewisse Unterkategorien
  509. von $\mathcal{K}(\mathcal{A})$, beispielsweise die Kategeorie
  510. $\mathcal{K}^{+}(\mathcal{A})$ der nach unten beschränkten Komplexe. Dies genügt,
  511. um den Fall (b) aus \ref{bem:derived-functors} zu studieren.
  512. Für unbeschränkte Komplexe liegt die Schwierigkeit darin eine geeignete
  513. Unterkategorie $\mathcal{L}$ zu finden, die die Bedingungen aus
  514. \ref{satz:existence-derived-functors} erfüllt.
  515. Ziel
  516. dieser Arbeit ist es herauszuarbeiten, dass im Falle von $\mathcal{A} = A\text{-Mod}$
  517. für einen kommutativen
  518. Ring $A$, die Bedingungen für die im Folgenden definierten Funktoren $\com{\text{Hom}}(\com{M}, -)$,
  519. $\com{\text{Hom}}(-, \com{M})$ und $\com{M} \otimes_A -$ erfüllt sind. Das
  520. wird uns erlauben das klassische Adjunktionsresultat
  521. \[
  522. - \otimes_A M \dashv \text{Hom}_{A\text{-Mod}}(M, -)
  523. \] für einen $A$-Modul $M$ auf die abgeleiteten Funktoren zu übertragen.
  524. \begin{definition}
  525. Seien $\com{X}, \com{Y} \in \mathcal{K}$ zwei Komplexe in einer beliebigen abelschen Kategorie $\mathcal{A}$.
  526. Dann sei $\com{\text{Hom}}(\com{X}, \com{Y}) \in \mathcal{K}(\mathcal{A}b)$ definiert durch
  527. \[
  528. \text{Hom}^{n}(\com{X}, \com{Y}) = \prod_{i \in \Z} \text{Hom}(X^{i}, Y^{i+n})
  529. \] mit Differentialen
  530. \[
  531. d^{n}(f) = d_{\com{Y} } f - (-1)^{n} f d_{\com{X}}
  532. \] für $f \in \text{Hom}^{n}(\com{X}, \com{Y})$.
  533. \label{def:hom-compl}
  534. \end{definition}
  535. \begin{definition}
  536. Sei $A$ ein kommutativer Ring und
  537. seien $\com{M}, \com{N} \in \mathcal{K}(A\text{-Mod})$. Dann sei
  538. $\com{M} \otimes_A \com{N} \in \mathcal{K}(A\text{-Mod})$ definiert durch
  539. \[
  540. (\com{M} \otimes_A \com{N})^{n} = \bigoplus_{i \in \Z} M^{i} \otimes_A N^{n-i}
  541. \] mit Differentialen
  542. \[
  543. d^{n}(m \otimes n) = d_{\com{M} }(m) \otimes n + (-1)^{i} m \otimes d_{\com{N} }(n)
  544. \] für $m \in M^{i}, n \in N^{n-i}$.
  545. \label{def:tor-compl}
  546. \end{definition}
  547. \begin{bem}
  548. \begin{enumerate}[(a)]
  549. \item Die Konstruktionen in \ref{def:hom-compl} und \ref{def:tor-compl} sind
  550. funktoriell in beiden Variablen und induzieren daher entsprechende Funktoren.
  551. \item
  552. Wie für das klassiche Tensorprodukt von $A$-Moduln, existieren für
  553. $\com{M}, \com{N}, \com{P} \in \mathcal{K}(A\text{-Mod})$
  554. natürliche Isomorphismen
  555. \[
  556. \com{M} \otimes_A \com{N} = \com{N} \otimes_A \com{M} \text{ und }
  557. (\com{M} \otimes_A \com{N}) \otimes_A \com{P} = \com{M} \otimes_A (\com{N} \otimes_A \com{P})
  558. .\]
  559. \end{enumerate}
  560. \end{bem}
  561. Die Kohomologiegruppen von $\com{\text{Hom}}(\com{X}, \com{Y})$ für Komplexe
  562. $\com{X}, \com{Y} \in \mathcal{K}$ lassen sich explizit bestimmen:
  563. \begin{lemma}
  564. Seien $\com{X}, \com{Y} \in \mathcal{K}$ zwei Komplexe. Dann gilt für $n \in \Z$:
  565. \[
  566. H^{n}\com{\text{Hom}}(\com{X}, \com{Y}) = \text{Mor}_{\mathcal{K}}(\com{X}, \com{Y}[n])
  567. .\]\label{hom-compl-cohomgroups}
  568. \end{lemma}
  569. \begin{proof}
  570. Sei $(f^i)_{i \in \Z} \in \prod_{i \in \Z} \text{Hom}(X^{i}, Y^{i+n})$. Dann ist:
  571. \[
  572. (f^{i})_{i \in \Z} \in \text{ker } d^{n} \iff (-1)^{n} d_{\com{Y}}^{i+n} f^i = f^{i+1} d_{\com{X} }^{i}
  573. \text{ für } i \in \Z
  574. .\] Wegen $d_{\com{Y}[n]} = (-1)^{n}d_{\com{Y}}$, induziert $(f^i)_{i \in \Z}$ also genau dann
  575. einen Komplexhomomorphismus $\com{X} \to \com{Y}[n]$, wenn $(f^{i})_{i \in \Z} \in \text{ker } d^{n}$.
  576. Weiter ist $(f^{i})_{i \in \Z} \in \text{im } d^{n-1}$, genau dann wenn eine Familie
  577. $(k^{i})_{i \in \Z}\in \prod_{i \in \Z}^{} \text{Hom}(X^{i}, Y^{i+n-1})$ existiert, sodass
  578. %\[
  579. % f^{i} = d_{\com{Y}}^{i+n-1} k^{i} - (-1)^{n-1} k^{i+1} d_{\com{X} }^{i}
  580. % = d_{\com{Y}}^{i+n-1} k^{i} + (-1)^{n} k^{i+1} d_{\com{X} }^{i}
  581. %.\]
  582. \[
  583. (-1)^{n}f^{i} = (-1)^{n} d_{\com{Y}}^{i+n-1} k^{i} + k^{i+1} d_{\com{X} }^{i}
  584. .\] Erneut wegen $d_{\com{Y} [n]} = (-1)^{n} d_{\com{Y} }$, ist also für $(f_i)_{i \in \Z} \in \text{ker } d^{n}$
  585. der induzierte Komplexhomomorphismus $f\colon \com{X} \to \com{Y} $ genau dann nullhomotop,
  586. wenn $(f^{i})_{i \in \Z} \in \text{im }d^{n-1}$.
  587. \end{proof}
  588. \begin{lemma}[$\com{\text{Hom}}(-, -)$ und (Co)limites]
  589. Sei $\com{X} \in \mathcal{K}$ und seien $(\com{S} _n)_{n \in \N}$ bzw. $(\com{T} _n)_{n \in \N}$
  590. direkte bzw. inverse Systeme in $\mathcal{K}$. Dann sind die natürlichen Homomorphismen
  591. \[
  592. \com{\text{Hom}}(\colim \com{S}_n, \com{X}) \longrightarrow \lim \com{\text{Hom}}(\com{S}_n, \com{X})
  593. \] und
  594. \[
  595. \com{\text{Hom}}(\com{X}, \lim \com{T}_n) \longrightarrow \lim \com{\text{Hom}}(\com{X}, \com{T}_n)
  596. \] Isomorphismen.
  597. \label{lemma:inner-hom-commutes-with-limits}
  598. \end{lemma}
  599. \begin{proof}
  600. Das gilt gradweise nach Definition von $\lim$ und man verifiert, dass die gradweisen Homomorphismen
  601. Komplexhomomorphismen bilden.
  602. \end{proof}
  603. \begin{lemma}[Tensorprodukt ist trianguliert]
  604. Sei $\com{M} \in \mathcal{K}(A\text{-Mod})$.
  605. Dann ist $- \otimes_A \com{M}$ (und $\com{M} \otimes_A -$) ein triangulierter Funktor von $\mathcal{K}(A\text{-Mod})$
  606. nach $\mathcal{K}(A\text{-Mod})$.
  607. \label{satz:tor-is-triangulated}
  608. \end{lemma}
  609. \begin{proof}
  610. Nach der Definition von ausgezeichneten Dreiecken in $\mathcal{K}$ genügt es nachzurechnen, dass
  611. für $f\colon \com{X} \to \com{Y} $ in $\mathcal{K}$ und $\com{S} \in \mathcal{K}$ gilt:
  612. \[
  613. \com{C}_f \otimes_A \com{S} = \com{C}_{f \otimes \text{id}_{\com{S}}}
  614. .\] Das rechnet man gradweise nach und zeigt, dass die Differentiale übereinstimmen.
  615. \end{proof}
  616. \begin{satz}[Adjunktion der Hom- und Tensorproduktkomplexe]
  617. Seien $\com{M}, \com{N}, \com{P} \in \mathcal{K}(A\text{-Mod})$. Dann existiert
  618. ein natürlicher Isomorphismus, der funktoriell in allen Variablen ist:
  619. \[
  620. \com{\text{Hom}}(\com{M} \otimes_A \com{N}, \com{P})
  621. = \com{\text{Hom}}(\com{M},\com{\text{Hom}} (\com{N} , \com{P} ))
  622. .\]
  623. \label{satz:adjunction-hom-tor-comp}
  624. \end{satz}
  625. \begin{proof}
  626. Das gilt gradweise, weil für beliebige $A$-Moduln $M, N, P$ ein natürlicher Isomorphismus
  627. \[
  628. \text{Hom}_{A}(M \otimes_A N, P) \to \text{Hom}_{A}(M, \text{Hom}_{A}(N, P))
  629. \] existiert. Man verifiziert, dass die gradweisen Isomorphismen Komplexhomomorphismen bilden.
  630. \end{proof}
  631. % TODO: verstehe ich nicht aber habe alternative
  632. %\begin{lemma}[]
  633. % Sei $\com{A} \in \mathcal{K}$ und $\mathcal{G}$ eine Klasse von Objekten
  634. % von $\mathcal{A}$, sodass jedes Objekt von $\mathcal{A}$ eine Einbettung
  635. % in ein Objekt aus $\mathcal{G}$ besitzt. Angenommen
  636. % $\com{\text{Hom}}(\com{A}, E) \in \mathcal{K}(\mathcal{A}b)$ ist exakt für alle
  637. % $E \in \mathcal{G}$. Dann ist $\com{A} $ exakt.
  638. % \label{lemma:0.10}
  639. %\end{lemma}
  640. \newpage
  641. \section{K-injektive und K-projektive Auflösungen}
  642. Sei $\com{Y} \in \mathcal{K}$.
  643. Um die Bedingungen von \ref{satz:existence-derived-functors} für
  644. $\com{\text{Hom}}(\com{Y}, -)$ (bzw. $\com{\text{Hom}}(-, \com{Y})$)
  645. zu erfüllen, benötigen wir
  646. eine Unterkategorie $\mathcal{L}$ von Komplexen in $\mathcal{K}$, sodass
  647. \begin{enumerate}[(i)]
  648. \item für jeden Komplex $\com{X} \in \mathcal{K}$ ein Quasiisomorphismus
  649. $\com{X} \to \com{I}$ mit $\com{I} \in \mathcal{L}$
  650. (bzw. $\com{P} \to \com{X} $ mit $\com{P} \in \mathcal{L}$)
  651. existiert, und
  652. \item $\com{\text{Hom}}(\com{Y}, -)$ (bzw. $\com{\text{Hom}}(-, \com{Y})$) Exaktheit
  653. von Komplexen aus $\mathcal{L}$ erhält.
  654. \end{enumerate}
  655. Dazu definieren wir:
  656. \begin{definition}[K-injektiv]
  657. Ein Komplex $\com{I} \in \mathcal{K}$ heißt K-injektiv, wenn der Funktor
  658. $\com{\text{Hom}}(-, \com{I})$ Exaktheit von Komplexen erhält. Eine K-injektive
  659. Auflösung eines Komplexes $\com{X} \in \mathcal{K}$ ist
  660. ein Quasiisomorphismus $\com{X} \to \com{I} $ mit
  661. $\com{I} \in \mathcal{K}$ K-injektiv.
  662. \end{definition}
  663. \begin{definition}[K-projektiv]
  664. Ein Komplex $\com{P} \in \mathcal{K}$ heißt K-projektiv, wenn der Funktor
  665. $\com{\text{Hom}}(\com{P}, -)$ Exaktheit von Komplexen erhält. Eine K-projektive
  666. Auflösung eines Komplexes $\com{X} \in \mathcal{K}$ ist
  667. ein Quasiisomorphismus $\com{P} \to \com{X} $ mit
  668. $\com{P} \in \mathcal{K}$ K-projektiv.
  669. \end{definition}
  670. Das Ziel dieses Abschnitts ist das folgende Resultat:
  671. \begin{satz}
  672. Sei $R$ ein Ring und $\mathcal{A}$ die Kategorie der $R$ (links-)Moduln. Dann
  673. hat jeder Komplex in $\mathcal{A}$ eine K-injektive und eine K-projektive
  674. Auflösung.
  675. \label{satz:r-mod-existence-k-proj-and-k-inj-resolutions}
  676. \end{satz}
  677. Die Vorgehensweise orientiert sich dabei an \cite{spaltenstein}.
  678. \subsection{Elementare Eigenschaften von K-injektiven und K-projektiven Komplexen}
  679. Zunächst werden einige grundlegenden Eigenschaften von K-injektiven und K-projektiven
  680. Komplexen entwickelt.
  681. \begin{lemma}[]
  682. Sei $\com{X} \in \mathcal{K}$. Es gilt
  683. \begin{align*}
  684. \com{X} \text{ K-injektiv} &\iff \text{Mor}_{\mathcal{K}}(\com{S} , \com{X} ) = 0 \quad \forall \com{S} \in \mathcal{K} \text{ exakt}\\
  685. \com{X} \text{ K-projektiv} &\iff \text{Mor}_{\mathcal{K}}(\com{X} , \com{S} ) = 0 \quad \forall \com{S} \in \mathcal{K} \text{ exakt}
  686. .\end{align*}
  687. \label{lemma:mork-crit-for-k-inj}
  688. \end{lemma}
  689. \begin{proof}
  690. Mit \ref{hom-compl-cohomgroups} ist $\com{X}$
  691. genau dann K-injektiv, wenn für jeden exakten Komplex
  692. $\com{S} \in \mathcal{K}$ gilt, dass
  693. $\text{Mor}_{\mathcal{K}}(\com{S}[i] , \com{X}) = 0$ $\forall i \in \Z$.
  694. Da Verschieben Exaktheit erhält folgt die Behauptung. Die duale Aussage folgt durch Umdrehen der Pfeile.
  695. \end{proof}
  696. \begin{lemma}
  697. Ein exakter K-projektiver oder K-injektiver Komplex $\com{X} \in \mathcal{K}$
  698. ist zusammenziehbar, das heißt ist nullhomotop, also in $\mathcal{K}$ isomorph zum Nullkomplex.
  699. \label{lemma:k-inj-exact-contractible}
  700. \end{lemma}
  701. \begin{proof}
  702. Betrachte $\mathrm{id}_{\com{X}} \in \mathrm{Mor}_{\K}(\com{X} , \com{X})
  703. \stackrel{\ref{hom-compl-cohomgroups}}{=} \mathrm{H}^0 \com{\mathrm{Hom}}(\com{X}, \com{X}) = 0$. Also ist $\mathrm{id}_{\com{X} } = 0$ und damit
  704. $\com{X} \stackrel{\sim }{=} 0$ in $\K$.
  705. \end{proof}
  706. \begin{bem}
  707. Aus \ref{lemma:k-inj-exact-contractible} folgt, dass für einen exakten und K-injektiven Komplex
  708. $\com{I} \in \mathcal{K}$ und
  709. einen beliebigen Komplex $\com{X} \in \mathcal{K}$,
  710. der Komplex $\com{\text{Hom}}(\com{X}, \com{I})$ exakt ist, denn
  711. \[
  712. H^{i}(\com{\text{Hom}}(\com{X}, \com{I})) = \text{Mor}_{\mathcal{K}}(\com{\text{Hom}}(\com{X}, \com{I}[i]))
  713. \stackrel{\ref{lemma:k-inj-exact-contractible}}{=} \text{Mor}_{\mathcal{K}}(\com{\text{Hom}}(\com{X}, 0)) = 0
  714. .\] Analog gilt die duale Version für exakte K-projektive Komplexe.
  715. \label{satz:hom-exact-for-k-inj}
  716. %auch $\com{\text{Hom}}(\com{X}, \com{I})$ exakt ist für alle $\com{M} \in \mathcal{K}$.
  717. \end{bem}
  718. Für ein Objekt $X \in \mathcal{A}$ stellt sich die Frage, ob Injektivität (bzw. Projektivität) von $X$ in $\mathcal{A}$
  719. mit K-injektivität (bzw. K-projektivität) des Komplexes $\com{X}$, wobei $X^{i} = 0$ für alle $i \neq 0$ und
  720. $X^{0} = X$, zusammenhängt. Die folgende Aussage stellt diesen Zusammenhang her:
  721. \begin{satz}
  722. Sei $\com{X} \in \K$ mit $X^{i} = 0$ $\forall i \neq 0$. Dann ist $\com{X} $ K-projektiv (bzw. K-injektiv) genau
  723. dann wenn $X^{0}$ projektiv (bzw. injektiv) in $\mathcal{A}$ ist.
  724. \label{satz:single-degree-compl-k-proj}
  725. \end{satz}
  726. \begin{proof}
  727. Wir zeigen nur den K-projektiven Fall. Der K-injektive folgt dann durch Umdrehen
  728. aller Pfeile.
  729. ($\Leftarrow$) Sei $\com{X} $ K-projektiv und $\com{S} = [0 \to M \to N \to P \to 0]$ eine kurze exakte Folge in $\mathcal{A}$. Sei
  730. $f\colon X^{0} \to P$. Das induziert einen Komplexhomomorphismus $\com{X} \to \com{S}$:
  731. \[\begin{tikzcd}
  732. 0 \arrow{d} \arrow{r} & 0 \arrow{d} \arrow{r} & X^0 \arrow{d}{f} \arrow[dashed]{dl}{k} \arrow{r}
  733. & 0 \arrow{d} \arrow[dashed]{dl}\\
  734. M \arrow{r} & N \arrow[twoheadrightarrow]{r}{v} & P \arrow{r} & 0
  735. \end{tikzcd}\]
  736. Nach Voraussetzung ist dieser nullhomotop, das heißt es existiert ein $k \colon X^{0} \to N$, sodass $f = vk$. Also ist
  737. $v_{*}\colon \text{Hom}(X^{0}, N) \to \text{Hom}(X^{0}, P)$ surjektiv und damit $X^{0}$ projektiv.
  738. ($\Rightarrow$) Sei nun $X^{0}$ projektiv, $\com{S} \in \mathcal{K}$ exakt und $f\colon \com{X} \to \com{S}$
  739. Komplexhomomorphismus. Dann betrachte
  740. \[
  741. \begin{tikzcd}
  742. 0 \arrow[from=1-1,to=1-3] \arrow{d} & & X^{0} \arrow{r}
  743. \arrow[dashed, from=1-3,to=2-1]{}{k^{0}}
  744. \arrow[dashed]{dl} \arrow{d}{f^{0}} & 0 \arrow{d} \\
  745. S^{-1} \arrow[twoheadrightarrow]{r}{d^{-1}} & \text{im }d^{-1} \arrow{r} & S^{0} \arrow{r}{d^{0}} & S^{1}
  746. \end{tikzcd}
  747. .\]
  748. Da $d^{0}f^{0} = 0$, faktorisiert $f^{0}$ über $\text{ker } d^{0} = \text{im }d^{-1}$. Weil
  749. $X^0$ projektiv ist, existiert $k^{0}\colon X^{0} \to S^{-1}$, sodass $f^{0} = d^{-1} k^{0}$.
  750. \end{proof}
  751. \begin{satz}[]
  752. Die volle Unterkategorie der K-projektiven (bzw. K-injektiven) Komplexe in $\mathcal{K}$ ist
  753. eine triangulierte Unterkategorie.
  754. \label{satz:k-proj-triangulated}
  755. \end{satz}
  756. \begin{proof}
  757. Wir zeigen Bedingungen (i) und (ii) aus \ref{def:triangulated-subcategory} in
  758. der K-projektiven Version, die duale Aussage folgt durch Umdrehen der Pfeile.
  759. \begin{enumerate}[(i)]
  760. \item Das folgt aus \ref{lemma:mork-crit-for-k-inj}
  761. und daraus, dass für $\com{X}, \com{S} \in \mathcal{K}$ gilt: $\com{S} $ exakt $\iff \com{S} [-1]$
  762. exakt und
  763. \[
  764. \text{Mor}_{\mathcal{K}}(\com{X}, \com{S}[-1]) = \text{Mor}_{\mathcal{K}}(\com{X}[1], \com{S})
  765. .\]
  766. \item Sei $(\com{X}, \com{Y}, \com{Z}, u, v, w)$ ein ausgezeichnetes Dreieck in $\mathcal{K}$
  767. mit $\com{X}, \com{Y} $ K-projektiv
  768. und $\com{S} \in \mathcal{K}$ ein exakter Komplex. Nach Anwenden von $\text{Mor}_{\mathcal{K}}(-, \com{S})$
  769. ist dann mit \ref{hom-cohom-func} die Folge
  770. \[
  771. \begin{tikzcd}
  772. \underbrace{\text{Mor}_{\mathcal{K}}(\com{X}[1], \com{S})}_{= 0} \arrow{r}
  773. & \text{Mor}_{\mathcal{K}}(\com{Z}, \com{S} ) \arrow{r}
  774. &
  775. \underbrace{\text{Mor}_{\mathcal{K}}(\com{Y}, \com{S} )}_{= 0}
  776. \end{tikzcd}
  777. .\]
  778. \[
  779. \] exakt und die äußeren Terme $0$ nach Voraussetzung und (i). Also folgt
  780. $\text{Mor}_{\mathcal{K}}(\com{Z}, \com{S}) = 0$, und damit $\com{Z} $ K-projektiv.
  781. Der allgemeine Fall folgt nun mit \hyperref[TR2]{TR2}.
  782. \end{enumerate}
  783. \end{proof}
  784. \begin{satz}
  785. Sei $\com{P} \in \mathcal{K}$. Dann sind äquivalent
  786. \begin{enumerate}[(i)]
  787. \item $\com{P} $ K-projektiv
  788. \item Für $\com{X} \to \com{Y} $ Quasiisomorphismus in $\mathcal{K}$ ist der natürliche Homomorphismus
  789. \[
  790. \text{Mor}_{\mathcal{K}}(\com{P} , \com{X} ) \to \text{Mor}_{\mathcal{K}}(\com{P} , \com{Y} )
  791. \] ein Isomorphismus.
  792. \item Für $\com{S} \in \mathcal{K}$ ist der natürliche Homomorphismus
  793. \[
  794. \text{Mor}_{\mathcal{K}}(\com{P} , \com{S} ) \to \text{Mor}_{\mathcal{D}}(\com{P} , \com{S} )
  795. \] ein Isomorphismus.
  796. \end{enumerate}
  797. \label{satz:mork=mord-for-kproj}
  798. \end{satz}
  799. \begin{proof}
  800. (i)$\implies$(ii): Sei $f\colon \com{X} \to \com{Y} $ ein Quasiisomorphismus. Dann ist
  801. \[
  802. \begin{tikzcd}
  803. \com{X} \arrow{r}{f} & \com{Y} \arrow{r} & \com{C_f} \arrow{r} & \com{X}[1]
  804. \end{tikzcd}
  805. \] ein ausgezeichnetes Dreieck und $\com{C_f}$ ist nach \ref{mapping-cone-exact-for-qis} exakt. Anwenden von
  806. $\text{Mor}_{\mathcal{K}}(\com{P} , -) $ liefert mit \ref{hom-cohom-func} eine exakte Folge:
  807. \[
  808. \begin{tikzcd}
  809. \underbrace{\text{Mor}_{\mathcal{K}}(\com{P} , \com{C_f}[-1]) \arrow{r}}_{= 0} &
  810. \text{Mor}_{\mathcal{K}}(\com{P} , \com{X} ) \arrow{r} &
  811. \text{Mor}_{\mathcal{K}}(\com{P} , \com{Y} ) \arrow{r} &
  812. \underbrace{\text{Mor}_{\mathcal{K}}(\com{P}, \com{C_f} ) }_{= 0}
  813. \end{tikzcd}
  814. .\] Die äußeren Terme sind 0, da $\com{P} $ K-projektiv ist, also folgt der behauptete Isomorphismus.
  815. (ii)$\implies$(iii): Injektivität: Sei $f\colon \com{P} \to \com{S} $, sodass $\text{id}^{-1}f = 0$. Nach
  816. \ref{derived-cat-morphism-null} existiert ein Quasiisomorphismus $t\colon \com{S} \to \com{T} $ , sodass $tf= 0$.
  817. Nach (ii) ist $t_{*}\colon \text{Mor}_{\mathcal{K}}(\com{P} , \com{S} ) \to \text{Mor}_{\mathcal{K}}(\com{P} , \com{T} ) $
  818. injektiv, also folgt $f = 0$. Surjektivität: Sei $a \in \text{Mor}_{\mathcal{D}}(\com{P} , \com{S} ) $. Dann
  819. ist $a$ ein Diagramm in $\mathcal{K}$
  820. \[
  821. \begin{tikzcd}
  822. & \com{Y} & \\
  823. \com{P} \arrow{ur}{f} & & \arrow{ul}{s} \com{S}
  824. \end{tikzcd}
  825. \] mit $s$ Quasiisomorphismus. Nach (ii) ist $s_{*}\colon \text{Mor}_{\mathcal{K}}(\com{P} , \com{S} ) \to \text{Mor}_{\mathcal{K}}(\com{P} , \com{Y} ) $ surjektiv, also existiert ein $g\colon \com{P} \to \com{S} $, sodass $sg = f$. Also
  826. kommutiert
  827. \[
  828. \begin{tikzcd}
  829. & \com{S} \arrow{d}{s} & \\
  830. \com{P} \arrow{dr}{f} \arrow{ur}{g} & \com{Y} & \arrow{l}{s} \arrow{ul}{\text{id}} \com{S} \arrow{dl}{s}\\
  831. & \com{Y} \arrow{u}{\text{id}} & \\
  832. \end{tikzcd}
  833. .\] Damit folgt $a = g\text{id}^{-1}$.
  834. (iii)$\implies$(i): Sei $\com{S} $ exakt. Dann ist $\com{S} \to 0$ ein Quasiisomorphismus, also
  835. $\com{S} \stackrel{\sim }{=} 0$ in $\mathcal{D}$, also
  836. \[
  837. \text{Mor}_{\mathcal{K}}(\com{P} , \com{S} )
  838. \stackrel{\text{(ii)}}{=} \text{Mor}_{\mathcal{D}}(\com{P} , \com{S} )
  839. = \text{Mor}_{\mathcal{D}}(\com{P} , \com{0} ) = 0
  840. .\]
  841. \end{proof}
  842. \begin{satz}
  843. Sei $\com{P} \in \mathcal{K}$. Dann sind äquivalent
  844. \begin{enumerate}[(i)]
  845. \item $\com{P} $ K-projektiv.
  846. \item Für alle Diagramme in $\mathcal{K}$
  847. \[
  848. \begin{tikzcd}
  849. & \com{X} \arrow{d}{s} \\
  850. \com{P} \arrow{r}{f} & \com{Y}\\
  851. \end{tikzcd}
  852. \] mit $s$ Quasiisomorphismus, existiert genau ein $g\colon \com{P} \to \com{X} $, sodass
  853. $sg= f$ in $\mathcal{K}$.
  854. \item Für alle Quasiisomorphismen $s\colon \com{S} \to \com{P} $ in $\mathcal{K}$ existiert ein
  855. $g\colon \com{P} \to \com{S} $, sodass $sg = \text{id}_{\com{P} }$ in $\mathcal{K}$.
  856. \end{enumerate}
  857. \end{satz}
  858. \begin{proof}
  859. (i)$\implies$(ii): Betrachte das gegebene Diagramm in $\mathcal{D}$:
  860. \[
  861. \begin{tikzcd}
  862. & \com{X} \arrow{d}{\text{id}^{-1}s} \\
  863. \com{P} \arrow[dashed]{ur}{g} \arrow{r}{\text{id}^{-1}f} & \com{Y}
  864. \end{tikzcd}
  865. .\] Da $s$ ein Quasiisomorphismus ist, induziert $s$ einen Isomorphismus in $\mathcal{D}$.
  866. Also existiert genau ein
  867. $g\colon \com{P} \to \com{X} $ in $\mathcal{D}$, sodass das Diagramm kommutiert. \ref{satz:mork=mord-for-kproj}
  868. (iii) liefert das gewünschte Diagramm in $\mathcal{K}$.
  869. (ii)$\implies$(iii): Betrachte
  870. \[
  871. \begin{tikzcd}
  872. & \com{S} \arrow{d}{s} \\
  873. \com{P} \arrow{r}{\text{id}} & \com{P}
  874. \end{tikzcd}
  875. .\] Da $s$ ein Quasiisomorphismus ist,
  876. existiert mit (ii) ein $g\colon \com{P} \to \com{S}$, sodass $sg = \text{id}_{\com{P} }$.
  877. (iii)$\implies$(i): Erneut mit \ref{satz:mork=mord-for-kproj} genügt es zu zeigen, dass für
  878. $\com{S} \in \mathcal{K}$
  879. $\text{Mor}_{\mathcal{K}}(\com{P} , \com{S} ) \to \text{Mor}_{\mathcal{D}}(\com{P} , \com{S} ) $ bijektiv ist.
  880. Injektivität: Sei $f\colon \com{P} \to \com{S} $ mit $\text{id}^{-1}f = 0$ in $\mathcal{D}$. Dann
  881. existiert nach \ref{derived-cat-morphism-null} ein Quasiisomorphismus $t\colon \com{T} \to \com{P} $
  882. mit $ft = 0$.
  883. Also existiert mit (iii) ein $g\colon \com{P} \to \com{T} $, sodass $tg = \text{id}_{\com{P} }$, also
  884. \[
  885. f = f \text{id}_{\com{P} } = \underbrace{ft}_{=0}g = 0
  886. .\]
  887. Surjektivität: Sei $a \colon \com{P} \to \com{S} $ in $\mathcal{D}$. Dann ist $a$ gegeben durch ein Diagramm
  888. \[
  889. \begin{tikzcd}
  890. & \com{Q} \arrow{dr}{f} \arrow{dl}{s} & \\
  891. \com{P} & & \com{S}
  892. \end{tikzcd}
  893. \] in $\mathcal{K}$ mit $s$ Quasiisomorphismus. Nach (iii) existiert ein $t\colon \com{P} \to \com{Q}$ mit
  894. $st = \text{id}_{\com{P} }$. Dann ist
  895. \[
  896. \begin{tikzcd}
  897. & \com{Q} \arrow{dl}{s} \arrow{dr}{f} & \\
  898. \com{P} & \com{P} \arrow{l}{\text{id}} \arrow{u}{t} \arrow{d}{\text{id}} & \com{S} \\
  899. & \com{P} \arrow{ul}{\text{id}} \arrow{ur}{ft} & \\
  900. \end{tikzcd}
  901. \] ein kommutatives Diagramm in $\mathcal{K}$, also folgt $s^{-1}f = \text{id}^{-1}(ft)$ in $\mathcal{D}$.
  902. \end{proof}
  903. Durch Umdrehen aller Pfeile erhalten wir analog:
  904. \begin{satz}[]
  905. Für jeden Komplex $\com{I} \in \mathcal{K}$ sind äquivalent:
  906. \begin{enumerate}[(i)]
  907. \item $\com{I}$ K-injektiv
  908. \item Für $\com{S} \in \mathcal{K}$ ist der natürliche Homomorphismus
  909. \[
  910. \text{Mor}_{\mathcal{K}}(\com{S} , \com{I} ) \to \text{Mor}_{\mathcal{D}}(\com{S} , \com{I} )
  911. \] ein Isomorphismus.
  912. \item Für jedes Diagramm in $\mathcal{K}$
  913. \[
  914. \begin{tikzcd}
  915. \com{Y} \arrow{r}{f} \arrow{d}{s} & \com{I} \\
  916. \com{X}
  917. \end{tikzcd}
  918. \] mit $s$ Quasiisomorphismus, existiert genau ein $g\colon \com{X} \to \com{I} $, sodass das Diagramm
  919. kommutiert.
  920. \item Für jeden Quasiisomorphismus $s\colon \com{I} \to \com{S} $ in $\mathcal{K}$ existiert ein
  921. $g\colon \com{S} \to \com{I} $, sodass $gs = \text{id}_{\com{I} }$ in $\mathcal{K}$.
  922. \end{enumerate}
  923. \label{satz:mork=mord-for-k-inj}
  924. \end{satz}
  925. \subsection{Spezielle inverse und direkte Systeme}
  926. Nun stellt sich die Aufgabe für jeden Komplex $\com{A} \in \mathcal{K}$ eine K-injektive und eine K-projektive
  927. Auflösung zu konstruieren. Dies machen wir mit sogenannten speziellen inversen bzw. direkten Systemen.
  928. \begin{definition}[Spezielles inverses System]
  929. Sei $\mathcal{J} \subset \mathcal{K}$ eine Klasse von Komplexen.
  930. \begin{enumerate}[(a)]
  931. \item Ein inverses System $(\com{I}_n)_{n \in \N}$ in $\mathcal{K}$ heißt
  932. $\mathcal{J}$-spezielles inverses System, falls folgende Bedingungen erfüllt sind:
  933. \begin{enumerate}[(i)]
  934. \item Falls $n = 1$, dann ist $\com{I}_n = 0$.
  935. \item Falls $n > 1$, dann sei $\com{C}_n$ der Kern der natürlichen Abbildung
  936. $\com{I} _n \to \com{I}_{n-1}$. Dann ist $\com{C}_n \in \mathcal{J}$ und
  937. die kurze exakte Folge
  938. \[
  939. 0 \to \com{C}_n \to \com{I}_n \to \com{I} _{n-1} \to 0
  940. \] zerfällt stufenweise.
  941. \end{enumerate}
  942. \item Die Klasse $\mathcal{J}$ heißt abgeschlossen unter speziellen inversen Limites, falls jedes
  943. $\mathcal{J}$-spezielle inverse System in $\mathcal{K}$ einen Limes in $\mathcal{J}$ besitzt und jeder
  944. Komplex in $\mathcal{K}$, der isomorph ist zu einem Komplex in $\mathcal{J}$, bereits in $\mathcal{J}$ ist.
  945. \end{enumerate}
  946. \label{def:special-inv-system}
  947. \end{definition}
  948. % TODO: beispiel funktioniert nicht mit N als indexmenge, wird nicht benoetigt
  949. %\item Sei $\mathcal{J}$ eine Klasse von Komplexen abgeschlossen unter speziellen inversen Limites mit
  950. % $\com{A} \in \mathcal{J} \iff \com{A}[1] \in \mathcal{J}$. Dann ist für $\com{A}, \com{B} \in \mathcal{J}$
  951. % und $u \colon \com{A} \to \com{B} $, auch $\com{C}_u$ in $\mathcal{J}$. Denn
  952. % \[
  953. % \com{C}_u \to \com{A}[1] \to 0
  954. % \] ist ein $\mathcal{J}$-spezielles inverses System mit Limes $\com{C}_u$.
  955. \begin{lemma}
  956. Sei $\mathcal{J}_0$ eine Klasse von Objekten von $\mathcal{A}$. Sei weiter $\mathcal{J}$ eine
  957. unter speziellen inversen Limites abgeschlossene Klasse
  958. von Objekten in $\mathcal{K}$, sodass jeder Komplex $\com{A} \in \mathcal{K}$ mit nur einem nicht-null
  959. Term und mit $A^{i} \in \mathcal{J}_0$ für $i \in \Z$, in $\mathcal{J}$ enthalten ist. Dann
  960. ist jeder nach unten beschränkte Komplex $\com{A} \in \mathcal{K}$ mit $A^{i} \in \mathcal{J}_0$
  961. für $i \in \Z$ in $\mathcal{J}$ enthalten.
  962. \label{lemma:bounded-compl-in-complete-class}
  963. \end{lemma}
  964. \begin{proof}
  965. Sei $\com{A} \in \mathcal{K}$ nach unten beschränkt mit
  966. $A^{i} \in \mathcal{J}_0$ für alle $i \in \Z$. Ohne Einschränkung
  967. sei $A^{i} = 0$ für alle $i < 0$. Dann sind die Spalten des nachstehenden Diagramms ein
  968. $\mathcal{J}$-spezielles inverses System $(\com{S}_n)_{n \in \N}$ mit
  969. Übergangsabbildungen $p_n$,
  970. \[
  971. \begin{tikzcd}
  972. \cdots \arrow{r} & 0 \arrow{r} \arrow{d} & 0 \arrow{r} \arrow{d} & 0 \arrow{r} \arrow{d} & 0 \arrow{d}\\
  973. \cdots\arrow{r} & A^{0} \arrow{d} \arrow{r} & A^{0} \arrow{d} \arrow{r} & A^{0} \arrow{d} \arrow{r} & 0 \arrow{d}\\
  974. \cdots\arrow{r} & A^{1} \arrow{d} \arrow{r} & A^{1} \arrow{d} \arrow{r} & 0 \arrow{d} \arrow{r} & 0 \arrow{d}\\
  975. \cdots\arrow{r} & A^{2} \arrow{d} \arrow{r} & 0 \arrow{d} \arrow{r} & 0 \arrow{d} \arrow{r} & 0 \arrow{d} \\
  976. & \vdots & \vdots & \vdots & \vdots \\
  977. \end{tikzcd}
  978. \] denn für $n > 1$ ist $\com{\text{ker } p}_n$ = $[\cdots \to 0 \to \underbrace{A^{n-2}}_{\in \mathcal{J}_0} \to 0 \to \cdots ]$. Nach
  979. Voraussetzung ist also $\text{ker } p_n$ in $\mathcal{J}$ und die kurze exakte Folge
  980. $0 \to \com{\text{ker } p}_n \to \com{S}_n \to \com{S}_{n-1} \to 0$ zerfällt gradweise. Also folgt
  981. $\com{A} = \lim \com{S}_n \in \mathcal{J}$.
  982. \end{proof}
  983. Im Folgenden zeigen wir, dass die Klasse der K-injektiven Komplexe
  984. abgeschlossen unter speziellen inversen Limites ist. Dazu zeigen wir zunächst, dass dies für die Klasse
  985. der exakten Komplexe gilt. Da der inverse Limes im Allgemeinen nicht exakt ist, benötigen wir dafür ein
  986. technisches Hilfswerkzeug für inverse Systeme in $\mathcal{A}b$.
  987. \begin{definition}
  988. %Wir sagen eine totalgeordnete Indexmenge $(I, \le)$ genüge der Bedingung (S), wenn eine ordnungserhaltende
  989. %Bijektion $\iota\colon I \to \N$ existiert. Für $i \in I$ bezeichne, falls dieser existiert, mit $i+1$ bzw. $i-1$, den
  990. %von $\iota$ induzierten Vorgänger bzw. Nachfolger von $i$.
  991. Ein inverses System $(M_n)_{n \in \N}$ in $\mathcal{A}b$ genüge der Bedingung
  992. (R), wenn folgende Eigenschaften erfüllt sind:
  993. \begin{enumerate}[(i)]
  994. \item $M_1 = 0$.
  995. \item Für $n > 1$ ist die Abbildung $M_n \to M_{n-1}$ surjektiv.
  996. \end{enumerate}
  997. %Weiter sagen wir ein inverses System $(M_i)_{i \in I}$ in $\mathcal{A}b$ genüge der Bedingung
  998. %(R), wenn folgende Eigenschaften erfüllt sind:
  999. %\begin{enumerate}[(i)]
  1000. % \item $I$ genügt Bedingung (S).
  1001. % \item $M_1 = 0$.
  1002. % \item Für $i > I_{\text{min}}$ ist die Abbildung $M_i \to M_{i-1}$ surjektiv.
  1003. %\end{enumerate}
  1004. \label{def:cond-r}
  1005. \end{definition}
  1006. \begin{bsp}
  1007. Spezielle inverse Systeme erfüllen (R).
  1008. \end{bsp}
  1009. \begin{lemma}
  1010. Seien
  1011. $(A_n)_{n \in \N}$, $(B_{n})_{n \in \N}$, $(C_n)_{n \in \N}$ und $(D_n)_{n \in \N}$
  1012. inverse Systeme in $\mathcal{A}b$, die (R) erfüllen und seien
  1013. \begin{equation}
  1014. \begin{tikzcd}
  1015. (A_n)_{n \in \N} \arrow{r}{(f_n)_{n \in \N}} & (B_n)_{n \in \N} \arrow{r}{(g_n)_{n \in \N}} &
  1016. (C_n)_{n \in \N} \arrow{r}{(h_n)_{n \in \N}} & (D_n)_{n \in \N}
  1017. \end{tikzcd}
  1018. \label{eq:0.11-inv-systems}
  1019. \end{equation}
  1020. Morphismen von inversen Systemen mit $g_n \circ f_n = 0 = h_n \circ g_n$
  1021. für $n \in \N$ und sei
  1022. \[
  1023. \begin{tikzcd}
  1024. A \arrow{r}{f} & B \arrow{r}{g} & C \arrow{r}{h} & D
  1025. \end{tikzcd}
  1026. \] der Limes von \eqref{eq:0.11-inv-systems}. Für $n \in \N$ mit $n > 1$
  1027. seien $A_n'$, $B_n'$, $C_n'$ und $D_n'$ die jeweiligen Kerne
  1028. der Übergangsabbildungen $A_n \to A_{n-1}$, $B_n \to B_{n-1}$, $C_n \to C_{n-1}$
  1029. und $D_n \to D_{n-1}$.
  1030. Sei weiter $N \in \N$, sodass für alle $n > N$ die Folge
  1031. \[
  1032. \begin{tikzcd}
  1033. A_n' \arrow{r} & B_n' \arrow{r} & C_n' \arrow{r} & D_n'
  1034. \end{tikzcd}
  1035. \] exakt ist.
  1036. Dann ist die natürliche Abbildung
  1037. \[
  1038. \text{ker } g / \text{im } f \longrightarrow \text{ker } g_N / \text{im } f_N
  1039. \] ein Isomorphismus.
  1040. \label{0.11}
  1041. \end{lemma}
  1042. \begin{proof}
  1043. Sei
  1044. $N \in \N$ mit der beschriebenen Eigenschaft. Dann betrachte das folgende kommutative Diagramm und
  1045. mache Diagrammjagd.
  1046. \begin{equation}
  1047. \begin{tikzcd}
  1048. A \arrow[twoheadrightarrow]{r}{f} \arrow{d} & \text{im } f \arrow[hookrightarrow]{r}
  1049. & \text{ker } g \arrow[hookrightarrow]{r} \arrow{d}
  1050. & B \arrow{r}{g} \arrow{d}
  1051. & C \arrow{r}{h} \arrow{d}
  1052. & D \arrow{d} \\
  1053. A_N \arrow[twoheadrightarrow]{r}{f_N} & \text{im } f_N \arrow[hookrightarrow]{r}
  1054. & \text{ker } g_N \arrow[hookrightarrow]{r}
  1055. & B_N \arrow{r}{g_N}
  1056. & C_N \arrow{r}{h_N}
  1057. & D_N \\
  1058. A_{N+1} \arrow[twoheadrightarrow]{r}{f_{N+1}} \arrow[twoheadrightarrow]{u}{p_{A}}
  1059. & \text{im } f_{N+1} \arrow[hookrightarrow]{r} \arrow{u}
  1060. & \text{ker } g_{N+1} \arrow[hookrightarrow]{r} \arrow{u}
  1061. & B_{N+1} \arrow{r}{g_{N+1}} \arrow[twoheadrightarrow]{u}{p_B}
  1062. & C_{N+1} \arrow{r}{h_{N+1}} \arrow[twoheadrightarrow]{u}{p_C}
  1063. & D_{N+1} \arrow[twoheadrightarrow]{u}{p_D} \\
  1064. \text{ker } p_{A} \arrow[from=4-1, to=4-4] \arrow[hookrightarrow]{u} & &
  1065. & \text{ker } p_{B} \arrow{r} \arrow[hookrightarrow]{u}
  1066. & \text{ker } p_{C} \arrow{r} \arrow[hookrightarrow]{u}
  1067. & \text{ker } p_{D} \arrow[hookrightarrow]{u} \\
  1068. \end{tikzcd}
  1069. \label{eq:0.11-diag}
  1070. \end{equation}
  1071. Injektivität: Sei $(b_n)_{n \in \N} \in \text{ker } g$, sodass $b_N \in \text{im }f_N$.
  1072. Dann existiert ein $a_N \in A_N$, sodass $f_N(a_N) = b_N$. Da $p_A$ surjektiv ist,
  1073. existiert ein $x \in A_{N+1}$, sodass $p_A(x) = a_N$. Sei
  1074. $y = f_{N+1}(x)$. Weil \eqref{eq:0.11-diag} kommutativ ist,
  1075. folgt
  1076. \[
  1077. p_B(y) = p_B(f_{N+1}(x)) = f_N(p_A(x)) = f_N(a_N) = b_N
  1078. .\] Da $(b_n)_{n \in \N}$ ein kompatibles
  1079. System ist, gilt zudem $p_{B}(b_{N+1}) = b_N$. Also ist
  1080. $b_{N+1} - y \in \text{ker } p_{B}$. Weil $y, b_{N+1} \in \text{ker } g_{N+1}$,
  1081. existiert aufgrund der Exaktheit der unteren Zeile ein $\tilde{x} \in \text{ker } p_A$,
  1082. sodass $f_{N+1}(\tilde{x}) = b_{N+1} - y$. Nun
  1083. setze $a_{N+1} \coloneqq \tilde{x} + x$. Dann ist
  1084. \[
  1085. f_{N+1}(a_{N+1}) = f_{N+1}(\tilde{x} + x) = b_{N+1} - y + y = b_{N+1}
  1086. \]
  1087. und
  1088. \[
  1089. p_{A}(a_{N+1}) = p_{A}(\tilde{x} + x) = p_{A}(x) = a_N
  1090. ,\] denn $\tilde{x} \in \text{ker } p_{A}$. Konstruiere so induktiv eine kompatible
  1091. Familie $(a_{n})_{n\ge N}$ mit $f(a_n) = b_n$ für alle $n \ge N$. Für $n < N$ setze
  1092. $a_n \coloneqq p_{A_{n+1}}(a_{n+1})$. Die Kommutativität von \eqref{eq:0.11-diag}
  1093. liefert dann, dass $(a_n)_{n \in \N}$ ein kompatibles System ist mit $f(a_{n}) = b_n$ für alle $n \in \N$.
  1094. Surjektivität: Sei $b \in \text{ker } g_N$. Weil $p_B$ surjektiv ist, existiert ein
  1095. $y \in B_{N+1}$, sodass $p_B(y) = b$. Sei $z = g_{N+1}(y)$.
  1096. Aufgrund der Kommutativität von
  1097. \eqref{eq:0.11-diag} ist dann
  1098. \[
  1099. p_C(z) = p_C(g_{N+1}(y)) = g_N(p_B(y)) = g_N(b) = 0
  1100. ,\]
  1101. also
  1102. folgt $z \in \text{ker } p_C$. Da $h_{N+1} \circ g_{N+1} = 0$ folgt
  1103. \[
  1104. h_{N+1}(z) = h_{N+1}(g_{N+1}(z)) = 0
  1105. .\]
  1106. Da die untere Zeile exakt ist, existiert nun
  1107. ein $\tilde{y} \in \text{ker } p_B$, sodass $g_{N+1}(\tilde{y}) = z$. Also ist
  1108. $y - \tilde{y} \in \text{ker } g_{N+1}$ und
  1109. \[
  1110. p_B(y - \tilde{y}) = p_B(y) = b
  1111. .\]
  1112. Setze $b_{N+1} \coloneqq y - \tilde{y}$ und $b_N \coloneqq b$.
  1113. Dann konstruiere induktiv eine kompatible
  1114. Familie $(b_n)_{n \ge N}$ mit $b_n \in \text{ker } g_{n}$ für alle $n \ge N$. Für $n < N$ setze wie
  1115. oben $b_n \coloneqq p_{B_{n+1}}(b_{n+1})$. Erneut liefert die Kommutativität von
  1116. \eqref{eq:0.11-diag}, dass $(b_n)_{n \in \N} \in \text{ker } g$ ein kompatibles System mit $b_N = b$ ist.
  1117. \end{proof}
  1118. \begin{bem}
  1119. Falls in der Situation von \ref{0.11}, $N= 1$ gewählt werden kann, folgt wegen $A_1 = B_1 = C_1 = D_1 = 0$,
  1120. dass die Folge
  1121. \[
  1122. \begin{tikzcd}
  1123. A \arrow{r}{f} & B \arrow{r}{g} & C
  1124. \end{tikzcd}
  1125. \] exakt ist.
  1126. \end{bem}
  1127. \begin{korollar}
  1128. Die Klasse $\mathcal{E}$ der exakten Komplexe in $\mathcal{K}(\mathcal{A}b)$ ist abgeschlossen unter speziellen inversen Limites.
  1129. \label{lemma:exact-comp-complete-inv}
  1130. \end{korollar}
  1131. \begin{proof}
  1132. Sei $(\com{S}_n)_{n \in \N}$ ein $\mathcal{E}$-spezielles inverses System in $\mathcal{K}(\mathcal{A}b)$. Für $i \in \Z$
  1133. erfüllt $(S_n^{i})_{n \in \N}$ die Bedingung (R) aus \ref{def:cond-r}. Sei also $i \in \Z$ beliebig. Dann erfüllt
  1134. \[
  1135. (S_n^{i-1})_{n \in \N} \to (S_n^{i})_{n \in \N} \to (S_n^{i+1})_{n \in \N} \to (S_n^{i+2})_{n \in \N}
  1136. \] die Bedingungen von \ref{0.11} für $N = 1$,
  1137. da nach Voraussetzung für alle $n > 1$ der Komplex $\text{ker}(\com{S}_n \to \com{S}_{n-1})$
  1138. exakt ist. Also ist die Folge
  1139. \[
  1140. \begin{tikzcd}
  1141. \lim S_n^{i-1} \arrow{r} \arrow{d}{=} & \lim S_n^{i} \arrow{d}{=} \arrow{r} & \lim S_n^{i+1} \arrow{d}{=}\\
  1142. (\lim S_n)^{i-1} \arrow{r} & (\lim S_n)^{i} \arrow{r} & (\lim S_n)^{i+1}
  1143. \end{tikzcd}
  1144. \] exakt. Da $i \in \Z$ beliebig war, folgt dass $\lim S_n$ exakt ist.
  1145. \end{proof}
  1146. \begin{satz}
  1147. Sei $\mathcal{B}$ eine weitere abelsche Kategorie und $\mathcal{J} \subset \mathcal{K}(B)$ abgeschlossen
  1148. unter speziellen inversen Limites. Angenommen inverse Limites existieren in $\mathcal{A}$ und sei
  1149. $F\colon \mathcal{K}(A) \to \mathcal{K}(B)$ ein kovarianter Funktor, der mit inversen Limites vertauscht und
  1150. gradweise zerfallende kurze exakte Folgen erhält.
  1151. Dann ist $F^{-1}(\mathcal{J}) \subset \mathcal{K}(\mathcal{A})$ abgeschlossen unter speziellen inversen Limites.
  1152. \label{satz:complete-inv-system-functor}
  1153. \end{satz}
  1154. \begin{proof}
  1155. Sei $(\com{S}_n)_{n \in \N}$ ein $F^{-1}(\mathcal{J})$-spezielles inverses System. Dann ist
  1156. $(F(\com{S}_n))_{n \in \N}$ ein $\mathcal{J}$-spezielles inverses System, denn
  1157. \begin{enumerate}[(i)]
  1158. \item $F(S_1) = F(0) = 0$, da $F$ mit inversen Limites vertauscht und die Null der (inverse)
  1159. Limes des leeren Diagramms
  1160. ist.
  1161. \item Für $n > 1$ ist nach Voraussetzung
  1162. \[
  1163. \begin{tikzcd}
  1164. 0 \arrow{r} & \text{ker } \com{p}_n \arrow{r} & \com{S}_n \arrow{r}{p_n} & \com{S}_{n-1} \arrow{r} & 0
  1165. \end{tikzcd}
  1166. \]
  1167. exakt, zerfällt gradweise und $\text{ker } \com{p}_n$ ist in $F^{-1}(\mathcal{J})$. Nach Voraussetzung ist damit
  1168. \[
  1169. \begin{tikzcd}
  1170. 0 \arrow{r} & F(\text{ker } \com{p}_n) \arrow{r} & F(\com{S}_n) \arrow{r}{F(p_n)} & F(\com{S}_{n-1}) \arrow{r} & 0
  1171. \end{tikzcd}
  1172. \] exakt und zerfällt gradweise. Aus der Exaktheit folgt damit auch
  1173. $\text{ker } F(p_n) = F(\text{ker } p_n)$, also $\text{ker } F(p_n) \in \mathcal{J}$.
  1174. \end{enumerate}
  1175. Also ist $F(\lim \com{S}_n) = \lim F(\com{S}_n) \in \mathcal{J}$ und damit $\lim \com{S}_n \in F^{-1}(\mathcal{J})$.
  1176. \end{proof}
  1177. \begin{korollar}
  1178. Sei $\mathcal{I}$ eine Klasse von Komplexen und angenommen in $\mathcal{A}$ existieren inverse Limites.
  1179. Dann ist die Klasse aller Komplexe $\com{A} \in \mathcal{K}$, sodass
  1180. $\com{\text{Hom}}(\com{T}, \com{A})$ exakt ist für alle $\com{T} \in \mathcal{I}$, abgeschlossen unter speziellen
  1181. inversen Limites. Insbesondere ist die Klasse der K-injektiven Komplexe abgeschlossen unter speziellen inversen
  1182. Limites.
  1183. \end{korollar}
  1184. \begin{proof}
  1185. Sei $\mathcal{E}$ die Klasse der exakten Komplexe und für $\com{T} \in \mathcal{I}$ sei
  1186. $\mathcal{H}_{\com{T}}$ die Klasse der Komplexe $\com{A} $, sodass
  1187. $\com{\text{Hom}}(\com{T}, \com{A})$ exakt ist. Dann
  1188. ist $\mathcal{H}_{\com{T}} = \com{\text{Hom}}(\com{T}, -)^{-1}(\mathcal{J})$.
  1189. $\mathcal{E}$ mit $\com{\text{Hom}}(\com{T}, -)$ erfüllt
  1190. die Voraussetzungen von \ref{satz:complete-inv-system-functor}, denn:
  1191. \begin{enumerate}[(i)]
  1192. \item Nach \ref{lemma:exact-comp-complete-inv} ist
  1193. $\mathcal{E}$ abgeschlossen unter speziellen inversen Limites.
  1194. \item Wegen \ref{lemma:inner-hom-commutes-with-limits} vertauscht $\com{\text{Hom}} (\com{T}, -)$ mit Limites.
  1195. Außerdem ist $\com{\text{Hom}}(\com{T}, -)$ gradweise additiv, erhält also
  1196. gradweise zerfallende Folgen.
  1197. \end{enumerate}
  1198. Also ist $\mathcal{H}_{\com{T}}$ und damit $\bigcap_{\com{T} \in \mathcal{I}} \mathcal{H}_{\com{T} }$
  1199. abgeschlossen unter speziellen inversen Limites.
  1200. Das Insbesondere folgt wenn $\mathcal{I} = \mathcal{E}$ gesetzt wird.
  1201. \end{proof}
  1202. Für die Klasse der K-injektiven Komplexe betrachten wir die duale Version von \ref{def:special-inv-system}:
  1203. \begin{definition}[Spezielles direktes System]
  1204. Sei $\mathcal{P} \subset \mathcal{K}$ eine Klasse von Komplexen.
  1205. \begin{enumerate}[(a)]
  1206. \item Ein direktes System $(\com{P}_n)_{n \in \N}$ in $\mathcal{K}$ heißt $\mathcal{P}$-spezielles
  1207. direktes System, falls folgende Bedingungen erfüllt sind:
  1208. \begin{enumerate}[(i)]
  1209. \item Falls $n = 1$, dann ist $\com{P}_n = 0$.
  1210. \item Falls $n > 1$, dann sei $\com{C}_n$ der Kokern der natürlichen Abbildung
  1211. $\com{P}_{n-1} \to \com{P}_{n}$. Dann ist $\com{C}_n \in \mathcal{P}$ und
  1212. die kurze exakte Folge
  1213. \[
  1214. 0 \to \com{P}_{n-1} \to \com{P}_{n} \to \com{C}_n \to 0
  1215. \] zerfällt stufenweise.
  1216. \end{enumerate}
  1217. \item Die Klasse $\mathcal{P}$ heißt abgeschlossen unter speziellen direkten Colimites, falls jedes
  1218. $\mathcal{P}$-spezielle direkte System in $\mathcal{K}$ einen Colimes in $\mathcal{P}$ besitzt und jeder
  1219. Komplex in $\mathcal{K}$, der isomorph ist zu einem Komplex in $\mathcal{P}$, bereits in $\mathcal{P}$ ist.
  1220. \end{enumerate}
  1221. \end{definition}
  1222. Durch Umdrehen aller Pfeile, erhalten wir die duale Version von \ref{lemma:bounded-compl-in-complete-class}
  1223. und insbesondere die folgenden Ergebnisse:
  1224. % brauche ich nicht
  1225. %\begin{lemma}
  1226. % Die Klasse der exakten Komplexe in $\mathcal{K}(\mathcal{A}b)$ ist abgeschlossen unter speziellen direkten Colimites.
  1227. %
  1228. % \label{lemma:exact-comp-complete-inv}
  1229. %\end{lemma}
  1230. %
  1231. %\begin{proof}
  1232. %
  1233. %\end{proof}
  1234. \begin{satz}
  1235. Sei $\mathcal{B}$ eine weitere abelsche Kategorie und $\mathcal{J} \subset \mathcal{K}(B)$ abgeschlossen
  1236. unter speziellen inversen Limites. Angenommen direkte Colimites existieren in $\mathcal{A}$ und sei
  1237. $F\colon \mathcal{K}(A) \to \mathcal{K}(B)$ ein kontravarianter Funktor, der direkte Colimites in
  1238. inverse Limites überführt und gradweise zerfallende kurze exakte Folgen erhält.
  1239. Dann ist $F^{-1}(\mathcal{J}) \subset \mathcal{K}(\mathcal{A})$ abgeschlossen unter speziellen direkten Colimites.
  1240. \label{satz:complete-dir-system-functor}
  1241. \end{satz}
  1242. \begin{korollar}[]
  1243. Sei $\mathcal{I}$ eine Klasse von Komplexen und angenommen in $\mathcal{A}$ existieren direkte Colimites.
  1244. Dann ist die Klasse aller Komplexe $\com{A} \in \mathcal{K}$, sodass
  1245. $\com{\text{Hom}}(\com{A}, \com{T})$ exakt ist für alle $\com{T} \in \mathcal{I}$, abgeschlossen unter speziellen
  1246. direkten Colimites. Insbesondere ist die Klasse der K-projektiven Komplexe abgeschlossen unter speziellen direkten
  1247. Colimites.
  1248. \label{kor:k-proj-closed}
  1249. \end{korollar}
  1250. \begin{definition}[]
  1251. Angenommen inverse (bzw. direkte) Limites existieren in $\mathcal{K}$ und sei $\mathcal{G}$ eine Klasse von
  1252. Komplexen in $\mathcal{K}$. Dann nennen wir $\underset{\leftarrow}{\mathcal{G}}$
  1253. (bzw. $\underset{\rightarrow}{\mathcal{G}})$ die kleinste Klasse von Komplexen in $\mathcal{K}$, die abgeschlossen
  1254. unter speziellen inversen Limites (bzw. direkten Colimites) ist und $\mathcal{G}$ enthält.
  1255. \end{definition}
  1256. \subsection{Existenz von K-projektiven und K-injektiven Auflösungen}
  1257. Das Ziel dieses Abschnittes ist es nun Satz \ref{satz:r-mod-existence-k-proj-and-k-inj-resolutions}
  1258. zu beweisen. Dazu verallgemeinern wir zunächst die Begriffe K-injektive und K-projektive Auflösungen:
  1259. \begin{definition}[Auflösungen]
  1260. Sei $\com{X} \in \mathcal{K}$ und $\mathcal{J}$ eine Klasse von Komplexen aus $\mathcal{K}$. Dann
  1261. ist eine $\mathcal{J}$-Linksauflösung ein Quasiisomorphismus $\com{J} \to \com{X} $
  1262. mit $\com{J} \in \mathcal{J}$. Analog ist eine $\mathcal{J}$-Rechtsauflösung
  1263. ein Quasiisomorphismus $\com{X} \to \com{J} $ mit $\com{J} \in \mathcal{J}$.
  1264. \end{definition}
  1265. \subsubsection{Linksauflösungen}
  1266. Sei $\mathcal{P}$ eine Klasse von Komplexen in $\mathcal{K}$.
  1267. %\begin{enumerate}[(L1)]
  1268. % \item Jeder nach oben beschränkte Komplex $\com{A} \in \mathcal{K}$ hat eine
  1269. % $\mathcal{P}$-Linksauflösung.
  1270. %\end{enumerate}
  1271. \begin{lemma}[]
  1272. Die folgenden Bedingungen an $\mathcal{P}$ sind äquivalent:
  1273. \begin{enumerate}[(i)]
  1274. \item Jeder nach oben beschränkte Komplex $\com{A} \in \mathcal{K}$
  1275. hat eine $\mathcal{P}$-Linksauflösung.
  1276. %\item Jeder nach oben beschränkte Komplex $\com{A} \in \mathcal{K}$ hat eine
  1277. % Linksauflösung $\com{P} \to \com{A} $ durch einen nach oben beschränkten
  1278. % Komplex $\com{P} \in \mathcal{P}$.
  1279. \item Für alle $\com{A} \in \mathcal{K} $ und $n \in \Z$, existiert ein $\com{P} \in \mathcal{P}$ mit
  1280. $H^{i}(\com{P}) = 0$ für $i > n$ und ein Komplexhomomorphismus $f\colon \com{P} \to \com{A} $, der
  1281. einen Isomorphismus $H^{i}(\com{P}) \to H^{i}(\com{A})$ induziert für $i \le n$.
  1282. \end{enumerate}
  1283. \label{lemma:class-compl-cond}
  1284. \end{lemma}
  1285. \begin{proof}
  1286. (i)$\implies$(ii):
  1287. Sei $\com{A} \in \mathcal{K}$ und $n \in \Z$.
  1288. Dann ist $\tau_{\le n} \com{A}$ nach oben beschränkt, also existiert
  1289. ein $\com{P} \in \mathcal{P}$ und ein Quasiisomorphismus
  1290. $s\colon \com{P} \to \tau_{\le n}\com{A}$. Durch Komposition mit dem natürlichen
  1291. Komplexhomomorphismus $\tau_{\le n}\com{A} \to \com{A}$ erhalten
  1292. wir ein $f\colon \com{P} \to \com{A} $. Für $i > n$ ist nun
  1293. $H^{i}(\com{P}) = H^{i}(\tau_{\le n}\com{A}) = 0 $. Für $i \le n$ ist
  1294. $H^{i}(\tau_{\le n}\com{A}) = H^{i}(\com{A})$, also induziert $f$ den gewünschten Isomorphismus.
  1295. (ii)$\implies$(i):
  1296. Sei $\com{A} \in \mathcal{K}$ nach oben beschränkt.
  1297. Ohne Einschränkung ist $A^{i} = 0$ für alle $i > 0$.
  1298. Wähle $n= 0$ in (iii). Dann existiert ein $f\colon \com{P} \to \com{A} $ mit
  1299. $\com{P} \in \mathcal{P}$ und $f$ induziert
  1300. $H^{i}(\com{P}) \xrightarrow[\sim]{0 = H^{i}(f)} 0 = H^{i}(\com{A})$ für $i > 0$ und
  1301. $H^{i}(\com{P})\xrightarrow[\sim]{H^{i}(f)} H^{i}(\com{A})$ für $i \le 0$. Also ist
  1302. $f$ ein Quasiisomorphismus.
  1303. \end{proof}
  1304. \begin{bem}[]
  1305. Sei $\com{A} \in \mathcal{K}$. Angenommen $\mathcal{P}$ genügt den äquivalenten Bedingungen
  1306. von \ref{lemma:class-compl-cond} und es existiert ein $n \in \Z$, sodass
  1307. für alle $i > n$, $H^{i}(\com{A}) = 0$ ist. Dann hat $\com{A} $ eine
  1308. $\mathcal{P}$-Linksauflösung, denn nach \ref{lemma:class-compl-cond} (ii) existiert dann
  1309. ein $\com{P} \in \mathcal{P}$ und ein Komplexhomomorphismus $f\colon \com{P} \to \com{A}$, sodass
  1310. $H^{i}(\com{P}) = 0 = H^{i}(\com{A})$ für $i > n$ und
  1311. $H^{i}(f)$ ein Isomorphismus ist für $i \le n$. Also ist $f$ ein Quasiisomorphismus.
  1312. \label{bem:p-left-resolutions-for-h-bounded}
  1313. \end{bem}
  1314. \begin{bsp}
  1315. %Falls $\mathcal{A}$ genügend Projektive hat, können wir $\mathcal{P}$ als
  1316. %die Klasse
  1317. %der nach oben beschränkten Komplexe $\com{P} \in \mathcal{K}$ mit $P^{i}$
  1318. %projektiv für alle $i \in \Z$ wählen.
  1319. Sei $\mathcal{P}$ die Klasse
  1320. der nach oben beschränkten Komplexe $\com{P} \in \mathcal{K}$ mit $P^{i}$
  1321. projektiv für alle $i \in \Z$. Falls $\mathcal{A}$ genügend Projektive hat, erfüllt
  1322. $\mathcal{P}$ die äquivalenten Bedingungen aus \ref{lemma:class-compl-cond}.
  1323. Ein solches $\com{P}$ ist K-projektiv, denn: Für alle eingradigen Komplexe $\com{Q}$ mit
  1324. $Q^{i}$ projektiv für alle $i \in \Z$ ist $\com{Q} $ nach \ref{satz:single-degree-compl-k-proj} K-projektiv. Da
  1325. nach \ref{kor:k-proj-closed} die Klasse der K-projektiven
  1326. abgeschlossen unter speziellen direkten Colimites ist, folgt mit dem Dual von
  1327. \ref{lemma:bounded-compl-in-complete-class}, dass $\com{P} $ K-projektiv ist.
  1328. Erneut nach \ref{kor:k-proj-closed} sind die Komplexe in $\underset{\rightarrow}{\mathcal{P}}$ damit ebenfalls
  1329. $K$-projektiv.
  1330. \label{bsp:bounded-above-projectives}
  1331. \end{bsp}
  1332. \begin{lemma}
  1333. Sei $\com{A} \in \mathcal{K}$. Dann existiert ein $\mathcal{P}$-spezielles direktes System $(\com{P}_n)_{n \in \N}$ und
  1334. ein direktes System von Kettenhomomorphismen $f_n \colon \com{P}_n \to \tau_{\le n}\com{A}$, sodass
  1335. $f_n$ ein Quasiisomorphismus ist für alle $n \ge 2$.
  1336. \label{lemma:constr-dir-system}
  1337. \end{lemma}
  1338. \begin{proof}
  1339. Wir gehen induktiv vor. Setze $\com{P}_{1} = 0$ und $f_{1} = 0$.
  1340. Nach den äquivalenten Bedingungen von \ref{lemma:class-compl-cond} existiert ein Quasiisomorphismus
  1341. $f_2 \colon \com{P}_2 \to \tau_{\le 2}\com{A}$ mit $\com{P}_2 \in \mathcal{P}$.
  1342. Sei nun $n \ge 3$ und seien $\com{P}_{1}, \ldots, \com{P}_{n-1}$ und $f_{1}, \ldots, f_{n-1}$
  1343. konstruiert wie im Lemma. Dann
  1344. setze $\com{P} = \com{P}_{n-1}$ und $\com{B} = \tau_{\le n} \com{A} $. Es sei
  1345. $a_{n-1}\colon \tau_{\le n-1}\com{A} \to \tau_{\le n} \com{A} $ der natürliche Komplexhomomorphismus
  1346. und $f = a_{n-1}f_{n-1}\colon \com{P} \to \com{B}$. Es gilt dann
  1347. \begin{equation}
  1348. f d_P = d_B f
  1349. \label{eq:f-comp-hom}
  1350. \end{equation}
  1351. Da $\com{B}$ nach oben beschränkt ist
  1352. und $H^{i}(\com{P}) \stackrel{\sim }{=} H^{i}(\tau_{\le n-1}\com{A}) = 0$ für $i \gg 0$, folgt
  1353. nach \ref{bem:mapping-cone-h-bounded}
  1354. $H^{i}(\com{C}_f) = 0$ für $i \gg 0$.
  1355. Also existiert nach \ref{bem:p-left-resolutions-for-h-bounded} ein Quasiisomorphismus
  1356. $g\colon \com{Q} \to \com{C}_f[-1]$ mit $\com{Q}[1] \in \mathcal{P}$. Da
  1357. $C_f^{i}[-1] = P^{i} \oplus B^{i-1}$ für $i \in \Z$, ist $g$ gradweise
  1358. gegeben durch Morphismen $g'_i\colon Q^{i} \to P^{i} $ und $g''_i\colon Q^{i} \to B^{i-1}$
  1359. in $\mathcal{A}$.
  1360. Betrachte für $i \in \Z$ das folgende kommutative Diagramm:
  1361. \begin{equation}
  1362. \begin{tikzcd}
  1363. \cdots \arrow{r} & Q^{i} \arrow{r}{d_{Q}} \arrow{d}{(g', g'')}
  1364. & Q^{i+1} \arrow{r} \arrow{d}{(g', g'')} & \cdots\\
  1365. \cdots \arrow{r} & P^{i} \oplus B^{i-1} \arrow{r}{d_{C_f[-1]}} &
  1366. P^{i+1} \oplus B^{i} \arrow{r} & \cdots
  1367. \label{eq:1}
  1368. \end{tikzcd}
  1369. \end{equation}
  1370. In Matrixnotation ist
  1371. \begin{align*}
  1372. d_{C_f} = \begin{pmatrix} d_{P[1]} & 0 \\ f[1] & d_{B} \end{pmatrix}
  1373. = \begin{pmatrix} - d_{P} & 0 \\ f & d_{B} \end{pmatrix}
  1374. \intertext{Also folgt}
  1375. d_{C_f}[-1] = - d_{C_f} = \begin{pmatrix} d_{P} & 0 \\ -f & -d_{B} \end{pmatrix}
  1376. .\end{align*}
  1377. Auswerten der Kommutativität von \eqref{eq:1} in beiden Summanden liefert nun
  1378. \begin{align}
  1379. d_P g' &= g' d_Q \label{eq:g'-comp-hom} \\
  1380. -fg' - d_Bg'' &= g''d_Q \label{eq:g''}
  1381. .\end{align}
  1382. Aus \eqref{eq:g'-comp-hom} folgt, dass $g'\colon \com{Q} \to \com{P} $ ein
  1383. Komplexhomomorphismus ist. Setze nun
  1384. $h\colon \com{C}_{-g'} \to \com{B} $ durch
  1385. \[
  1386. h(x,y) = g''[1](x) + f(y)
  1387. .\]
  1388. Betrachte für $i \in \Z$ das folgende Diagramm:
  1389. \[
  1390. \begin{tikzcd}
  1391. \cdots \arrow{r} & Q^{i+1} \oplus P^{i} \arrow{r}{d_{C_{-g'}}} \arrow{d}{h} & Q^{i+2} \oplus P^{i+1} \arrow{r} \arrow{d}{h}
  1392. & \cdots \\
  1393. \cdots \arrow{r} & B^{i} \arrow{r}{d_{B}} & B^{i+1} \arrow{r} & \cdots
  1394. \end{tikzcd}
  1395. .\] In Matrixnotation ist
  1396. \begin{salign*}
  1397. h d_{C_{-g'}} &= \begin{pmatrix} g'' & f \end{pmatrix}
  1398. \begin{pmatrix} -d_Q & 0 \\ -g' & d_P \end{pmatrix} \\
  1399. &= \begin{pmatrix}
  1400. -g'' d_Q - f g' & f d_P
  1401. \end{pmatrix} \\
  1402. &\stackrel{\eqref{eq:g''}}{=}
  1403. \begin{pmatrix}
  1404. d_B g'' & f d_P
  1405. \end{pmatrix} \\
  1406. &\stackrel{\eqref{eq:f-comp-hom}}{=}
  1407. \begin{pmatrix}
  1408. d_B g'' & d_B f
  1409. \end{pmatrix} \\
  1410. &= d_B h
  1411. .\end{salign*}
  1412. %\begin{salign*}
  1413. % h d_{C_{-g'}} &= \begin{pmatrix} g''[1] & f \end{pmatrix}
  1414. % \begin{pmatrix} d_Q[1] & 0 \\ -g'[1] & d_P \end{pmatrix} \\
  1415. % &= \begin{pmatrix}
  1416. % g''[1] d_Q[1] - f g'[1] & f d_P
  1417. % \end{pmatrix} \\
  1418. % &\stackrel{\eqref{eq:g''}}{=}
  1419. % \begin{pmatrix}
  1420. % d_B g'' & f d_P
  1421. % \end{pmatrix} \\
  1422. % &\stackrel{\eqref{eq:f-comp-hom}}{=}
  1423. % \begin{pmatrix}
  1424. % d_B g'' & d_B f
  1425. % \end{pmatrix} \\
  1426. % &= d_B h
  1427. %.\end{salign*}
  1428. Also ist $h$ ein Komplexhomomorphismus. Bleibt zu zeigen, dass $h$ ein Quasiisomorphismus
  1429. ist. Dafür genügt es nach \ref{mapping-cone-exact-for-qis} zu zeigen, dass $\com{C}_h$
  1430. exakt ist. Behauptung: $\com{C}_h = \com{C}_{-g}[1]$.
  1431. Es ist gradweise für $ i \in \Z$
  1432. \[
  1433. C_h^{i} = C_{-g'}^{i+1} \oplus B^{i} = (Q^{i+2} \oplus P^{i+1}) \oplus B^{i}
  1434. = Q^{i+2} \oplus (P^{i+1} \oplus B^{i})
  1435. = Q^{i+2} \oplus C_f^i
  1436. = C_{-g}^{i}[1]
  1437. .\] Für die Differentiale gilt, wieder in Matrixnotation:
  1438. \begin{align*}
  1439. d_{C_h} = \begin{pmatrix}
  1440. d_{C_{-g'}[1]} & 0 \\
  1441. h[1] & d_B \end{pmatrix}
  1442. = \begin{pmatrix}
  1443. -\begin{pmatrix} -d_Q & 0 \\
  1444. -g' & d_P
  1445. \end{pmatrix} & 0 \\
  1446. \begin{pmatrix} g'' & f \end{pmatrix} & d_B
  1447. \end{pmatrix}
  1448. = \begin{pmatrix}
  1449. d_Q & 0 & 0 \\
  1450. g' & -d_P & 0 \\
  1451. g'' & f & d_B
  1452. \end{pmatrix}
  1453. .\end{align*}
  1454. Analog folgt
  1455. \begin{align*}
  1456. d_{C_{-g}[1]} =
  1457. \begin{pmatrix}
  1458. d_{Q[1]} & 0 \\
  1459. -g[1] & d_{C_f[-1]}
  1460. \end{pmatrix} [1]
  1461. = -\begin{pmatrix} -d_Q & 0 \\
  1462. \begin{pmatrix} -g' \\ -g'' \end{pmatrix}
  1463. & -\begin{pmatrix} -d_P & 0 \\ f & d_{B} \end{pmatrix}
  1464. \end{pmatrix}
  1465. = \begin{pmatrix}
  1466. d_Q & 0 & 0 \\
  1467. g' & -d_P & 0 \\
  1468. g'' & f & d_B
  1469. \end{pmatrix}
  1470. .\end{align*}
  1471. Also folgt die Behauptung. Da $g$ und demnach $-g$ ein Quasiisomorphismus ist
  1472. und Verschieben Exaktheit erhält,
  1473. folgt damit mit \ref{mapping-cone-exact-for-qis} die Exaktheit von $\com{C}_h = \com{C}_{-g}[1]$.
  1474. Setze nun $\com{P}_n \coloneqq \com{C}_{-g'}$ und $f_n \coloneqq h$.
  1475. Sei $p_{n-1}\colon \com{P}_{n-1} = \com{P} \to \com{P}_n$ die natürliche Abbildung.
  1476. Dann ist $p_{n-1}$ gradweise gegeben durch die natürliche Inklusion
  1477. $P^{i} \to Q^{i+1} \oplus P^{i}$. Also folgt
  1478. $\text{coker } p_{n-1} = \com{Q}[1] \in \mathcal{P}$ und wir haben gradweise
  1479. zerfallende exakte Folgen:
  1480. \[
  1481. \begin{tikzcd}
  1482. 0 \arrow{r} & P^{i} \arrow{r}{p_{n-1}} & Q^{i+1} \oplus P^{i} \arrow{r}
  1483. & Q^{i+1} \arrow{r} & 0
  1484. \end{tikzcd}
  1485. .\]
  1486. Also ist $(\com{P}_n)_{n \in \N}$ ein $\mathcal{P}$-spezielles direktes System.
  1487. Außerdem ist nach Definition von $h$: $f_n p_{n-1} = h p_{n-1} = f = a_{n-1} f_{n-1}$,
  1488. also kommutiert
  1489. \[
  1490. \begin{tikzcd}
  1491. \com{P}_{n-1} \arrow{r}{p_{n-1}} \arrow{d}{f_{n-1}}
  1492. & \com{P}_{n} \arrow{d}{f_n = h} \\
  1493. \tau_{\le n-1}\com{A} \arrow{r}{a_{n-1}} & \tau_{\le n}\com{A}
  1494. \end{tikzcd}
  1495. \] und $(f_n)_{n \in \N}$ ist ein direktes System.
  1496. \end{proof}
  1497. Daraus folgt nun sofort:
  1498. \begin{satz}
  1499. Angenommen direkte Colimites existieren in $\mathcal{A}$ und
  1500. $\colim$ ist exakt.
  1501. Dann hat jeder Komplex in $\mathcal{K}$ eine
  1502. $\underset{\rightarrow}{\mathcal{P}}$-Linksauflösung.
  1503. \label{satz:existence-left-resolutions}
  1504. \end{satz}
  1505. \begin{proof}
  1506. Sei $\com{A} \in \mathcal{K}$ und $(\com{P}_n)_{n \in \N}$, $(f_n)_{n \in \N}$ wie
  1507. in \ref{lemma:constr-dir-system}. Da direkte Colimites in $\mathcal{A}$ existieren und
  1508. sich diese in $\mathcal{K}$ gradweise bilden, existieren direkte Colimites
  1509. in $\mathcal{K}$. Nach der Definition von $\underset{\rightarrow}{\mathcal{P}}$ ist dann
  1510. $\com{P} \coloneqq \colim \com{P}_n$ in $\underset{\rightarrow}{\mathcal{P}}$.
  1511. Wir erhalten ebenfalls
  1512. \[
  1513. f\coloneqq \colim f_n \colon \com{P} \longrightarrow \colim \tau_{\le n}\com{A}
  1514. = \com{A}
  1515. .\] Da $\colim$ exakt ist, folgt für $i \in \Z$:
  1516. \[
  1517. H^{i}(f) = H^{i}(\colim f_n) = \colim \underbrace{H^{i}(f_n)}_{\text{Isomorphismus}}
  1518. .\] Also ist $f$ ein Quasiisomorphismus.
  1519. \end{proof}
  1520. \begin{korollar}[]
  1521. Angenommen direkte Colimites existieren in $\mathcal{A}$ und
  1522. $\colim$ ist exakt. Falls $\mathcal{A}$ außerdem genug Projektive hat,
  1523. besitzt jeder Komplex in $\mathcal{K}$ eine K-projektive Auflösung.
  1524. \label{satz:existence-k-proj-resolution}
  1525. \end{korollar}
  1526. \begin{proof}
  1527. Wähle $\mathcal{P}$ wie in Beispiel \ref{bsp:bounded-above-projectives} und wende
  1528. \ref{satz:existence-left-resolutions} an.
  1529. \end{proof}
  1530. \subsubsection{Rechtsauflösungen}
  1531. Sei $\mathcal{I}$ eine Klasse von Komplexen in $\mathcal{K}$. Im Folgenden nehmen wir an,
  1532. dass $\mathcal{I}$ die folgende Eigenschaft erfüllt:
  1533. \vspace{2mm}
  1534. \noindent\hspace{9mm} \emph{Jeder nach unten beschränkte Komplex $\com{A} \in \mathcal{K}$ hat eine
  1535. $\mathcal{I}$-Rechtsauflösung.}
  1536. %\begin{enumerate}[(1)]
  1537. % \item \emph{Jeder nach unten beschränkte Komplex $\com{A} \in \mathcal{K}$ hat eine
  1538. % $\mathcal{I}$-Rechtsauflösung.}
  1539. %\end{enumerate}
  1540. \begin{bsp}
  1541. Falls $\mathcal{A}$ genügend Injektive hat, können wir, dual zu Beispiel
  1542. \ref{bsp:bounded-above-projectives}, $\mathcal{I}$ als die Klasse
  1543. der nach unten beschränkten Komplexe mit in $\mathcal{A}$ injektiven Objekten wählen.
  1544. \end{bsp}
  1545. Durch Umdrehen der Pfeile erhalten wir die duale Aussagen von
  1546. \ref{lemma:constr-dir-system} und \ref{satz:existence-left-resolutions}:
  1547. \begin{lemma}[]
  1548. Sei $\com{A} \in \mathcal{K}$. Dann existiert ein $\mathcal{I}$-spezielles
  1549. inverses System $(\com{I}_n)_{n \in \N}$ und ein inverses System von
  1550. Kettenhomomorphismen $f_n\colon \tau^{\ge-n}\com{A} \to \com{I}_n$, sodass
  1551. $f_n$ ein Quasiisomorphismus ist für $n \ge 2$.
  1552. \label{lemma:constr-inv-system}
  1553. \end{lemma}
  1554. \begin{satz}[]
  1555. Angenommen inverse Limites existieren in $\mathcal{A}$ und
  1556. $\lim$ ist exakt.
  1557. Dann hat jeder Komplex in $\mathcal{K}$ eine
  1558. $\underset{\leftarrow}{\mathcal{I}}$-Rechtsauflösung.
  1559. \label{satz:existence-right-resolutions}
  1560. \end{satz}
  1561. \begin{bem}
  1562. Leider findet \ref{satz:existence-right-resolutions} in $\mathcal{A} = R\text{-Mod}$ für
  1563. einen Ring $R$ keine Anwendung, da hier $\lim$ nicht exakt ist.
  1564. Diese Voraussetzung wird jedoch nur verwendet, um zu zeigen, dass
  1565. $f = \lim f_n\colon \com{A} \to \lim \com{I}_n$ ein Quasiisomorphismus ist.
  1566. Wir können uns der speziellen Struktur des inversen Systems
  1567. $(\com{I}_n)_{n \in \N}$ bedienen, um für $\mathcal{A} = R\text{-Mod}$ zu zeigen,
  1568. dass $f$ dennoch ein Quasiisomorphismus ist.
  1569. \end{bem}
  1570. \begin{satz}[]
  1571. Sei $R$ ein Ring und $\mathcal{A}$ die Kategorie der R-links-Moduln. Dann
  1572. hat jeder Komplex in $\mathcal{K}$ eine K-injektive Auflösung.
  1573. \label{satz:existence-k-inj-resolution}
  1574. \end{satz}
  1575. \begin{proof}
  1576. Seien $(\com{I}_n)_{n \in \N}$ und $(f_n)_{n \in \N}$ wie in
  1577. \ref{lemma:constr-inv-system}. Seien $\com{I} = \lim \com{I}_n$ und
  1578. $f = \lim f_n$. Es genügt zu zeigen, dass $f$ ein Quasiisomorphismus ist.
  1579. Sei $i \in \Z$ beliebig. Für $n \ge 3$ haben wir folgendes kommutative Diagramm:
  1580. \[
  1581. \begin{tikzcd}
  1582. \com{I} \arrow{r} \arrow{d}{f} & \com{I}_n \arrow{r}{p_n} \arrow{d}{f_n} & \com{I_{n-1}} \arrow{d}{f_{n-1}} \\
  1583. \com{A} \arrow{r} & \tau^{\ge -n} \com{A} \arrow{r} & \tau^{\ge -(n-1)} \com{A}
  1584. \end{tikzcd}
  1585. \] Wende nun $H^{i}(-)$ auf dieses Diagramm an:
  1586. \begin{equation}
  1587. \begin{tikzcd}
  1588. H^{i}(\com{I}) \arrow{r} \arrow{d}{H^{i}(f)} & H^{i}(\com{I}_n) \arrow{r}{H^{i}(p_n)}
  1589. \arrow{d}{H^{i}(f_n)}[swap]{\sim} & H^{i}(\com{I_{n-1}}) \arrow{d}{H^{i}(f_{n-1})}[swap]{\sim} \\
  1590. H^{i}(\com{A}) \arrow{r} & H^{i}(\tau^{\ge -n} \com{A}) \arrow{r} & H^{i}(\tau^{\ge -(n-1)} \com{A})
  1591. \end{tikzcd}
  1592. \label{eq:diag-hi-in}
  1593. .\end{equation}
  1594. Die rechten beiden vertikalen Pfeile sind Isomorphismen, da $f_k$ ein
  1595. Quasiisomorphismus ist für alle $k \ge 2$.
  1596. Sei nun $n \ge -i+1$. Dann ist $i \ge -n + 1 \ge -n$, also ist
  1597. $H^{i}(\com{A}) = H^{i}(\tau^{\ge -n}\com{A}) = H^{i}(\tau^{\ge -(n-1)} \com{A})$. Also
  1598. sind die Morphismen in der unteren Zeile von \eqref{eq:diag-hi-in} Isomorphismen und
  1599. damit ist
  1600. $H^{i}(p_n)\colon H^{i}(\com{I}_n) \to H^{i}(\com{I}_{n-1})$
  1601. ein Isomorphismus.
  1602. Betrachte nun die kurze exakte Folge
  1603. \[
  1604. \begin{tikzcd}
  1605. 0 \arrow{r} & \text{ker } p_n \arrow{r} & \com{I}_n \arrow{r}{p_n} & \com{I}_{n-1}
  1606. \arrow{r} & 0
  1607. \end{tikzcd}
  1608. .\] Das liefert für $j \in \Z$ eine lange exakte Kohomologiefolge:
  1609. \begin{equation}
  1610. \begin{tikzcd}
  1611. H^{j-1}(\com{I}_{n}) \arrow{r}{H^{j-1}(p_n)} & H^{j-1}(\com{I}_{n-1}) \arrow{r}
  1612. & H^{j}(\text{ker } p_n) \arrow{r}
  1613. & H^{j}(\com{I}_n) \arrow{r}{H^{j}(p_n)}
  1614. & H^{j}(\com{I}_{n-1})
  1615. \end{tikzcd}
  1616. \label{eq:long-ex-hi-in}
  1617. \end{equation}
  1618. Anwenden des obigen Arguments für $i = j$ und $i = j-1$ liefert für
  1619. $n \ge -(j-1) + 1 \ge -j+1$ Isomorphismen $H^{j}(p_n)$ und $H^{j-1}(p_n)$.
  1620. Aufgrund der Exaktheit von \eqref{eq:long-ex-hi-in} folgt, dann dass
  1621. $H^{j}(\text{ker } p_n) = 0$ für alle $n \ge -(j-1)+1 = -j+2$.
  1622. Sei nun $m \in \Z$ beliebig. Dann setze $N \coloneqq -m + 1$. Dann ist
  1623. für alle $n > N$:
  1624. \[
  1625. H^{m}(\text{ker } p_n) = 0 = H^{m+1}(\text{ker } p_n)
  1626. .\]
  1627. Also ist die Folge
  1628. \begin{equation}
  1629. \begin{tikzcd}
  1630. \text{ker } p_n^{m-1} \arrow{r} &
  1631. \text{ker } p_n^{m} \arrow{r} &
  1632. \text{ker } p_n^{m+1} \arrow{r} &
  1633. \text{ker } p_n^{m+2}
  1634. \end{tikzcd}
  1635. \end{equation}
  1636. für $n > N$ exakt. Das System
  1637. \begin{equation*}
  1638. \begin{tikzcd}
  1639. (I_n^{m-1})_{n \in \N} \arrow{r} &
  1640. (I_n^{m})_{n \in \N} \arrow{r} &
  1641. (I_n^{m+1})_{n \in \N} \arrow{r} &
  1642. (I_n^{m+2})_{n \in \N}
  1643. \end{tikzcd}
  1644. \end{equation*}
  1645. erfüllt damit die Bedingungen von \ref{0.11}. Also ist die natürliche Abbildung
  1646. \[
  1647. H^{m}(\com{I}) \longrightarrow H^{m}(\com{I}_N)
  1648. \] ein Isomorphismus. Erneute Betrachtung des linken Vierecks von \eqref{eq:diag-hi-in} für $i=m$ und
  1649. $n=N$ liefert nun, dass $H^{i}(f)$ ein Isomorphismus ist.
  1650. \end{proof}
  1651. \begin{bem}
  1652. Damit ist \ref{satz:r-mod-existence-k-proj-and-k-inj-resolutions} bewiesen.
  1653. \end{bem}
  1654. \newpage
  1655. \section{Ableitungen und Adjunktion}
  1656. Sei $R$ ein Ring und im Folgenden $\mathcal{A}$ die Kategorie der $R$ (links-)Moduln.
  1657. \subsection{Abgeleitete $\com{\text{Hom}}$ Funktoren}
  1658. %\begin{satz}[]
  1659. % Sei $\com{I} \in \mathcal{K}$ K-injektiv und exakt. Dann ist $\com{\text{Hom}}(\com{M} , \com{I} )$ exakt für alle
  1660. % $\com{M} \in \mathcal{K}$.
  1661. %
  1662. % \label{satz:hom-exact-for-k-inj}
  1663. %\end{satz}
  1664. %
  1665. %\begin{proof}
  1666. % Sei $\com{M} \in \mathcal{K}$ beliebig. Dann existiert nach
  1667. % \ref{satz:existence-k-proj-resolution} ein $\com{P} \in \mathcal{K}$ K-projektiv und ein Quasiisomorphismus
  1668. % $\com{P} \to \com{M}$. Da $\com{I} $ K-injektiv, ist $\com{\text{Hom}}(-, \com{I})$ ein exakter Funktor, also
  1669. % folgt
  1670. % \begin{equation}
  1671. % H^{i}(\com{\text{Hom}}(\com{M}, \com{I})) = \com{\text{Hom}}(H^{i}(\com{M}), \com{I})
  1672. % = \com{\text{Hom}}(H^{i}(\com{P}), \com{I})
  1673. % = H^{i}(\com{\text{Hom}}(\com{P} , \com{I} ))
  1674. % \label{eq:cohom-groups-2}
  1675. % .\end{equation}
  1676. % Da $\com{P} $ K-projektiv und $\com{I} $ exakt, folgt die Exaktheit der rechten Seite und damit die Behauptung.
  1677. %\end{proof}
  1678. %Umdrehen der Pfeile liefert
  1679. %\begin{satz}[]
  1680. % Sei $\com{P} \in \mathcal{K}$ K-projektiv und exakt. Dann ist $\com{\text{Hom}}(\com{P} , \com{M} )$ exakt für alle
  1681. % $\com{M} \in \mathcal{K}$.
  1682. % \label{satz:hom-exact-for-k-proj}
  1683. %\end{satz}
  1684. \begin{satz}
  1685. Seien $\com{M}, \com{N} \in \mathcal{D}$. Dann ist $\text{R}\com{\text{Hom}}(\com{M}, \com{N})$ wohldefiniert
  1686. und kann mithilfe einer K-projektiven Auflösung von $\com{M} $ oder einer K-injektiven Auflösung von $\com{N} $
  1687. berechnet werden.
  1688. \label{satz:derived-hom}
  1689. \end{satz}
  1690. \begin{proof}
  1691. In der Notation von \ref{satz:existence-derived-functors} wähle $\mathcal{L}$ als die volle Unterkategorie der
  1692. K-injektiven Komplexe von $\mathcal{K}$. Dann ist für $\com{M} \in \mathcal{K}$ beliebig:
  1693. \begin{enumerate}[(i)]
  1694. \item $\mathcal{L}$ ist trianguliert nach \ref{satz:k-proj-triangulated}.
  1695. \item Für alle $\com{N} \in \mathcal{K}$ existiert wegen \ref{satz:existence-k-inj-resolution} ein Quasiisomorphismus $\com{N} \to \com{I} $
  1696. mit $\com{I} \in \mathcal{L}$.
  1697. \item Nach \ref{satz:hom-exact-for-k-inj} erhält $\com{\text{Hom}}(\com{M}, -)|_{\mathcal{L}}$
  1698. Exaktheit von Komplexen.
  1699. \end{enumerate}
  1700. Also existiert R$\com{\text{Hom}}(\com{M} , -)$. Analog berechnet sich R$\com{\text{Hom}}(-, \com{N})$ für
  1701. $\com{N} \in \mathcal{K}$ unter Wahl von $\mathcal{L}$
  1702. als die volle Unterkategorie der K-projektiven Komplexe von $\mathcal{K}$. Beide Ableitungen stimmen überein, denn
  1703. für $\com{M}, \com{N} \in \mathcal{K}$ beliebig und $\com{P} \to \com{M} $ und $\com{N} \to \com{I} $ K-projektive
  1704. bzw. K-injektive Auflösungen gilt mit wiederholter Anwendung von \ref{satz:existence-derived-functors} und
  1705. wegen $\com{P} \stackrel{\sim }{=} \com{M} $ und $\com{N} \stackrel{\sim }{=} \com{I} $ in $\mathcal{D}$:
  1706. \begin{align*}
  1707. \text{R}\com{\text{Hom}}(\com{M} , - )(\com{N})
  1708. &= \text{R}\com{\text{Hom}}(\com{P} , -)(\com{I}) \\
  1709. &= \com{\text{Hom}}(\com{P}, \com{I}) \\
  1710. &= \text{R}\com{\text{Hom}}(-, \com{I} )(\com{P}) \\
  1711. &= \text{R}\com{\text{Hom}}(-, \com{N} )(\com{M})
  1712. .\end{align*}
  1713. \end{proof}
  1714. \subsection{Abgeleitetes Tensorprodukt}
  1715. Sei von nun an $R = A$ ein kommutativer Ring. Um das Tensorprodukt abzuleiten, benötigen wir noch
  1716. eine weitere Klasse von Komplexen in $\mathcal{K}$:
  1717. \begin{definition}[K-flach]
  1718. Ein Komplex $\com{M} \in \mathcal{K}$ heißt K-flach, wenn der Funktor
  1719. $\com{M} \otimes_A -$ Exaktheit von Komplexen erhält. Eine K-flache
  1720. Auflösung eines Komplexes $\com{N} \in \mathcal{K}$ ist
  1721. ein Quasiisomorphismus $\com{M} \to \com{N} $ mit
  1722. $\com{P} \in \mathcal{K}$ K-flach.
  1723. \end{definition}
  1724. \begin{satz}
  1725. Sei $\com{M} \in \mathcal{K}$ mit $M^{i} = 0$ für $i \neq 0$. Dann ist
  1726. $\com{M} $ genau dann K-flach, wenn $M^{0}$ flacher $A$-Modul ist.
  1727. \end{satz}
  1728. \begin{proof}
  1729. Sei $\com{M} \in \mathcal{K}$ wie im Satz. Dann ist für $\com{S} \in \mathcal{K}$ und
  1730. $n \in \Z$:
  1731. \[
  1732. (\com{M} \otimes_A \com{S})^{n} = \bigoplus_{i+j=n} M^{i} \otimes_A S^{j}
  1733. = M^{0} \otimes S^{n} = (M^{0} \otimes \com{S} )^{n}
  1734. \] und für $m \in M^{0}$, $s \in S^{n}$:
  1735. \[
  1736. d_{\com{M} \otimes_A \com{S} }^{n}(m \otimes s)
  1737. = \underbrace{d_{M}^{0}(m)}_{= 0} \otimes_A s + (-1)^{0} m \otimes_A d_{S}(s)
  1738. = m \otimes_A d_S(s)
  1739. = d_{M^{0} \otimes_A \com{S} }
  1740. .\] Also ist $\com{M} \otimes_A \com{S} = M^{0} \otimes_A \com{S}$. Damit folgt
  1741. die Behauptung aus den Definitionen.
  1742. \end{proof}
  1743. Im Folgenden benötigen wir folgendes Kritierium für die Exaktheit von Komplexen:
  1744. \begin{lemma}
  1745. Sei $\com{A} \in \mathcal{K}$. Angenommen für jeden K-injektiven Komplex $\com{I} \in \mathcal{K}$ ist
  1746. $\com{\text{Hom}}(\com{A}, \com{I})$ exakt. Dann ist $\com{A}$ exakt.
  1747. \label{lemma:0.10}
  1748. \end{lemma}
  1749. \begin{proof}
  1750. Sei $\com{B} \in \mathcal{K}$ beliebig. Dann existiert nach \ref{satz:existence-k-inj-resolution} ein
  1751. K-injektiver Komplex $\com{I} \in \mathcal{K}$ und ein Quasiisomorphismus $\com{B} \to \com{I}$. Dann
  1752. gilt $\com{B} \stackrel{\sim }{=} \com{I} $ in $\mathcal{D}$ und wir erhalten
  1753. \[
  1754. \text{Mor}_{\mathcal{D}}(\com{A}, \com{B}) \stackrel{\sim }{=}
  1755. \text{Mor}_{\mathcal{D}}(\com{A} , \com{I} ) \stackrel{\ref{satz:mork=mord-for-k-inj}}{=}
  1756. \text{Mor}_{\mathcal{K}}(\com{A} , \com{I} ) = 0
  1757. .\]
  1758. Mit Yoneda folgt nun, dass $\com{A} \stackrel{\sim }{=} 0$ in $\mathcal{D}$. Da
  1759. $H^{i}(-)\colon \mathcal{K} \to \mathcal{A}b$ über den kanonischen Funktor $Q\colon \mathcal{K} \to \mathcal{D}$
  1760. faktorisiert, folgt $H^{i}(\com{A}) = 0$ für $i \in \Z$, also ist $\com{A}$ exakt.
  1761. \end{proof}
  1762. \begin{satz}[]
  1763. Sei $\com{M} \in \mathcal{K} $. Dann sind äquivalent:
  1764. \begin{enumerate}[(i)]
  1765. \item $\com{M} $ ist K-flach.
  1766. \item $\com{\text{Hom}}(\com{M}, \com{I})$ ist K-injektiv für jeden
  1767. K-injektiven Komplex $\com{I} \in \mathcal{K}$.
  1768. \end{enumerate}
  1769. \label{satz:homs-of-k-flat-are-k-inj}
  1770. \end{satz}
  1771. \begin{proof}
  1772. (i)$\implies$(ii): Sei $\com{I}$ K-injektiv und $\com{S}$ exakt. Dann ist
  1773. \[
  1774. \com{\text{Hom}} (\com{S} , \com{\text{Hom}}(\com{M}, \com{I}))
  1775. \stackrel{\ref{satz:adjunction-hom-tor-comp}}{=}
  1776. \com{\text{Hom}}(\underbrace{\com{S} \otimes_A \com{M}}_{\text{exakt}}, \underbrace{\com{I}}_{\text{K-injektiv}} )
  1777. .\] Weil $\com{M} $ K-flach ist, folgt $\com{S} \otimes_A \com{M} $ exakt, also wegen $\com{I} $ K-injektiv,
  1778. die Behauptung.
  1779. (ii)$\implies$(i): Sei $\com{S} $ exakt. Wegen \ref{lemma:0.10} genügt es zu
  1780. zeigen, dass für jeden K-injektiven Komplex $\com{I} \in \mathcal{K}$,
  1781. $\com{\text{Hom}}(\com{S} \otimes_A \com{M}, I) $ exakt ist. Dazu
  1782. sei $\com{I}$ ein K-injektiver Komplex. Dann ist
  1783. \[
  1784. \com{\text{Hom}}(\com{S} \otimes_A \com{M}, \com{I})
  1785. \stackrel{\ref{satz:adjunction-hom-tor-comp}}{=} \com{\text{Hom}}(\underbrace{\com{S}}_{\text{exakt}}, \underbrace{\com{\text{Hom}}(\com{M}, \com{I})}_{\text{K-injektiv}})
  1786. \] exakt.
  1787. \end{proof}
  1788. \begin{satz}[]
  1789. \begin{enumerate}[(a)]
  1790. \item Falls $\com{M}, \com{N} \in \mathcal{K}$ K-flach sind, dann ist
  1791. auch $\com{M} \otimes_A \com{N} $ K-flach.
  1792. \item $\com{M} \in \mathcal{K}$ ist K-flach genau dann wenn $\com{M}[1]$
  1793. K-flach ist.
  1794. \item Falls zwei Punkte eines ausgezeichneten Dreiecks in $\mathcal{K}$ K-flach
  1795. sind,
  1796. dann auch der dritte.
  1797. \end{enumerate}
  1798. Insbesondere ist die volle Unterkategorie der K-flachen Komplexe in $\mathcal{K}$
  1799. eine triangulierte Unterkategorie.
  1800. \label{satz:k-flat-triangulated}
  1801. \end{satz}
  1802. \begin{proof}
  1803. \begin{enumerate}[(a)]
  1804. \item Seien $\com{M}, \com{N} \in \mathcal{K}$ K-flach und $\com{S} $ exakt. Dann
  1805. ist
  1806. \[
  1807. (\com{M} \otimes_A \com{N}) \otimes \com{S} =
  1808. \com{M} \otimes_A (\com{N} \otimes_A \com{S})
  1809. \] und die rechte Seite ist exakt.
  1810. \item Seien $\com{S}, \com{M} \in \mathcal{K}$.
  1811. Dann sind $- \otimes_A \com{S} $ und $\com{M} \otimes_A -$ nach
  1812. \ref{satz:tor-is-triangulated} triangulierte Funktoren, also folgt
  1813. \[
  1814. \com{M}[1] \otimes_A \com{S} =
  1815. (\com{M} \otimes_A \com{S})[1]
  1816. = \com{M} \otimes_A \com{S}[1]
  1817. .\] Da Verschieben Exaktheit erhält, folgt daraus die Äquivalenz.
  1818. \item Sei $(\com{M}, \com{N}, \com{P}, u, v, w)$ ein ausgezeichnetes Dreieck
  1819. in $\mathcal{K}$ mit $\com{M}$ und $\com{N} $ K-flach. Sei weiter
  1820. $\com{S} $ exakt. Da $- \otimes_A \com{S} $ nach \ref{satz:tor-is-triangulated}
  1821. ein triangulierter Funktor ist, erhalten wir das ausgezeichnete Dreieck
  1822. $(\com{M} \otimes_A \com{S}, \com{N} \otimes_A \com{S}, \com{P} \otimes_A \com{S}, u \otimes \text{id}_{\com{S} }, v \otimes \text{id}_{\com{S} }, w \otimes \text{id}_{\com{S} })$
  1823. und damit für $i \in \Z$ die exakte Folge
  1824. \[
  1825. \begin{tikzcd}
  1826. H^{i}(\com{N} \otimes_A \com{S}) \arrow{r} &
  1827. H^{i}(\com{P} \otimes_A \com{S}) \arrow{r} &
  1828. H^{i+1}(\com{M} \otimes_A \com{S})
  1829. \end{tikzcd}
  1830. .\] Da die äußeren Terme nach Voraussetzung $0$ sind, folgt die
  1831. Exaktheit von $\com{P} \otimes_A \com{S} $ und damit, dass $\com{P} $
  1832. K-flach ist.
  1833. Der allgemeine Fall folgt nun mit \ref{TR2}.
  1834. \end{enumerate}
  1835. \end{proof}
  1836. \begin{satz}[]
  1837. Sei $\com{M} \in \mathcal{K}$ K-projektiv. Dann ist $\com{M} $ K-flach.
  1838. Insbesondere hat jeder Komplex $\com{N} \in \mathcal{K}$ eine K-flache Auflösung.
  1839. \label{satz:k-proj-is-k-flat}
  1840. \end{satz}
  1841. \begin{proof}
  1842. Sei $\com{M} $ K-projektiv und $\com{S} $ exakt. Sei weiter $\com{I} $ K-injektiv. Dann folgt
  1843. \[
  1844. \com{\text{Hom}} (\com{M} \otimes_A \com{S}, \com{I}) \stackrel{\ref{satz:adjunction-hom-tor-comp}}{=}
  1845. \com{\text{Hom}}(\com{M}, \com{\text{Hom}}(\com{S}, \com{I} )
  1846. .\] Es ist $\com{\text{Hom}}(\com{S}, \com{I})$ exakt, da $\com{I} $ K-injektiv und damit die rechte Seite, da
  1847. $\com{M} $ K-projektiv ist. Also folgt die Behauptung mit \ref{lemma:0.10}. Das Insbesondere folgt
  1848. nun aus \ref{satz:existence-k-proj-resolution}.
  1849. \end{proof}
  1850. \begin{satz}[]
  1851. Sei $\com{M} \in \mathcal{K}$ K-flach und exakt. Dann ist $\com{M} \otimes_A \com{N} $ exakt
  1852. für alle $\com{N} \in \mathcal{K}$.
  1853. \label{satz:tor-exact-for-k-flat}
  1854. \end{satz}
  1855. \begin{proof}
  1856. Sei $\com{M} \in \mathcal{K}$ K-flach und exakt und sei $\com{N} \in \mathcal{K}$ beliebig. Dann existiert nach
  1857. \ref{satz:k-proj-is-k-flat} ein K-flacher Komplex $\com{P} \in \mathcal{K}$ und ein Quasiisomorphismus
  1858. $\com{P} \to \com{N} $. Da $\com{M} $ K-flach ist, erhält $\com{M} \otimes_A -$ nach
  1859. \ref{kor:exactness-preserver-preserves-qis} Quasiisomorphismen. Damit folgt
  1860. \begin{equation}
  1861. H^{i}(\com{M} \otimes_A \com{N}) = H^{i}(\com{M} \otimes_A \com{P})
  1862. \label{eq:cohom-groups-1}
  1863. .\end{equation}
  1864. Da $\com{P} $ K-flach ist, folgt mit der Exaktheit von $\com{M} $, dass
  1865. $\com{M} \otimes_A \com{P} $ exakt ist. Damit folgt die Behauptung aus \eqref{eq:cohom-groups-1}.
  1866. \end{proof}
  1867. Damit erhalten wir:
  1868. \begin{satz}
  1869. Seien $\com{M}, \com{N} \in \mathcal{D}$. Dann ist $\com{M} \otimes_A^{\text{L}} \com{N}$ wohldefiniert und
  1870. kann mithilfe einer K-flachen Auflösung einer der Faktoren berechnet werden.
  1871. \label{satz:derived-tor}
  1872. \end{satz}
  1873. \begin{proof}
  1874. In der Notation (der Linksableitungsversion) von \ref{satz:existence-derived-functors} wähle $\mathcal{L}$
  1875. als die volle Unterkategorie der K-flachen Komplexe von $\mathcal{K}$. Dann ist
  1876. für $\com{N}$ beliebig:
  1877. \begin{enumerate}[(i)]
  1878. \item $\mathcal{L}$ ist trianguliert nach \ref{satz:k-flat-triangulated}.
  1879. \item Für alle $\com{M} \in \mathcal{K}$ existiert nach \ref{satz:k-proj-is-k-flat}
  1880. ein Quasiisomorphismus
  1881. $\com{P} \to \com{M}$ mit $\com{P} \in \mathcal{L}$.
  1882. \item Nach \ref{satz:tor-exact-for-k-flat} erhält
  1883. $\com{N} \otimes_A -|_{\mathcal{L}}$ Exaktheit von Komplexen.
  1884. \end{enumerate}
  1885. Also existiert $\com{N} \otimes_A^{\text{L}} -$. Analog zeigt man die Existenz von
  1886. $- \otimes_A^{L} \com{N}$ und wie im Beweis von \ref{satz:derived-hom}, dass
  1887. beide Ableitungen übereinstimmen.
  1888. \end{proof}
  1889. \subsection{Adjunktion}
  1890. Jetzt können wir alles zusammentragen und erhalten:
  1891. \begin{satz}
  1892. Seien $\com{M}, \com{N}, \com{P} \in \mathcal{D}$. Dann existiert ein natürlicher
  1893. Isomorphismus, der funktoriell in allen Variablen ist:
  1894. \[
  1895. \text{R}\com{\text{Hom}}(\com{M} \otimes_A^{\text{L}} \com{N}, \com{P})
  1896. = \text{R}\com{\text{Hom}}(\com{M}, \text{R}\com{\text{Hom}}(\com{N}, \com{P}))
  1897. .\]
  1898. \label{satz:adjunction-rhom-rtor}
  1899. \end{satz}
  1900. \begin{proof}
  1901. Nach \ref{satz:derived-hom} und \ref{satz:derived-tor} sind alle Terme wohldefiniert
  1902. und wir können mit
  1903. \ref{satz:k-proj-is-k-flat} ohne Einschränkung annehmen, dass $\com{N} $ K-flach ist,
  1904. und mit \ref{satz:existence-k-inj-resolution}, dass $\com{P} $ K-injektiv ist.
  1905. Dann folgt
  1906. \begin{align*}
  1907. \text{R}\com{\text{Hom}}(\com{M} \otimes_A^{\text{L}} \com{N}, \com{P})
  1908. &= \text{R}\com{\text{Hom}}(\com{M} \otimes_A \com{N}, \com{P}) \\
  1909. &= \com{\text{Hom}}(\com{M} \otimes_A \com{N}, \com{P} ) \\
  1910. &\stackrel{\ref{satz:adjunction-hom-tor-comp}}{=}
  1911. \com{\text{Hom}}(\com{M}, \com{\text{Hom}}(\com{N}, \com{P})) \\
  1912. &= \text{R}\com{\text{Hom}}(\com{M}, \com{\text{Hom}}(\com{N}, \com{P})) \\
  1913. &= \text{R}\com{\text{Hom}}(\com{M}, \text{R}\com{\text{Hom}}(\com{N}, \com{P}))
  1914. .\end{align*}
  1915. Das letzte Gleichheitszeichen gilt, weil nach \ref{satz:homs-of-k-flat-are-k-inj}
  1916. $\com{\text{Hom}}(\com{N}, \com{P})$ K-injektiv ist.
  1917. \end{proof}
  1918. \begin{korollar}[]
  1919. Seien $\com{M}, \com{N}, \com{P} \in \mathcal{D}$. Dann existiert ein natürlicher
  1920. Isomorphismus, der funktoriell in allen Variablen ist:
  1921. \[
  1922. \text{Mor}_{\mathcal{D}}(\com{M} \otimes_A^{\text{L}} \com{N}, \com{P})
  1923. = \text{Mor}_{\mathcal{D}}(\com{M}, \text{R}\com{\text{Hom}}(\com{N} , \com{P} )
  1924. .\] Insbesondere gilt folgende Funktoradjunktion in $\mathcal{D}$:
  1925. \[
  1926. - \otimes_A^{\text{L}} N \dashv \text{R}\com{\text{Hom}}(\com{N}, -)
  1927. .\]
  1928. \end{korollar}
  1929. \begin{proof}
  1930. Wir können wieder annehmen, dass $\com{N}$ K-flach und $\com{P} $ K-injektiv ist.
  1931. Dann betrachte:
  1932. \begin{salign*}
  1933. \text{Mor}_{\mathcal{D}}(\com{M} \otimes_A^{\text{L}} \com{N}, \com{P})
  1934. &\stackrel{\ref{satz:mork=mord-for-k-inj}}{=}
  1935. \text{Mor}_{\mathcal{K}}(\com{M} \otimes_A^{\text{L}} \com{N}, \com{P}) \\
  1936. &\stackrel{\ref{hom-compl-cohomgroups}}{=}
  1937. H^{0}\com{\text{Hom}}(\com{M} \otimes_A^{\text{L}} \com{N}, \com{P}) \\
  1938. &= H^{0}\com{\text{Hom}}(\com{M} \otimes_A \com{N}, \com{P}) \\
  1939. &\stackrel{\ref{satz:adjunction-hom-tor-comp}}{=}
  1940. H^{0}\com{\text{Hom}}(\com{M}, \com{\text{Hom}}(\com{N}, \com{P})) \\
  1941. &\stackrel{\ref{hom-compl-cohomgroups}}{=}
  1942. \text{Mor}_{\mathcal{K}}(\com{M}, \com{\text{Hom}}(\com{N}, \com{P})) \\
  1943. &\stackrel{\ref{satz:mork=mord-for-k-inj}}{=}
  1944. \text{Mor}_{\mathcal{D}}(\com{M}, \com{\text{Hom}}(\com{N}, \com{P})) \\
  1945. &= \text{Mor}_{\mathcal{D}}(\com{M}, \text{R}\com{\text{Hom}}(\com{N}, \com{P}))
  1946. .\end{salign*}
  1947. Das letzte Gleichheitszeichen gilt erneut, weil nach \ref{satz:homs-of-k-flat-are-k-inj}
  1948. $\com{\text{Hom}}(\com{N}, \com{P})$ K-injektiv ist.
  1949. \end{proof}
  1950. % TODO: zitate richtig machen
  1951. \begin{thebibliography}{9}
  1952. \bibitem{hartshorne}
  1953. Hartshorne, R. \emph{Residues and duality.} Lecture Notes in Math. 20, Springer-Verlag (1966)
  1954. \bibitem{spaltenstein}
  1955. %N. Spaltenstein. Resolutions of unbounded complexes. \emph{Composito Mathematica 65}. (1988)
  1956. Spaltenstein, N. \emph{Resolutions of unbounded complexes.} Compositio Mathematica, Tome 65 (1988) no. 2, pp. 121-154. %http://www.numdam.org/item/CM_1988__65_2_121_0/
  1957. \bibitem{set-theoretic}
  1958. %Charles A. Weibel. An introduction to homological algebra. \emph{Cambridge studies in advanced mathematics}. 38 (1988)
  1959. Weibel, C. \emph{An Introduction to Homological Algebra}. Cambridge Studies in Advanced Mathematics. Cambridge: Cambridge University Press (1994).% doi:10.1017/CBO9781139644136
  1960. \end{thebibliography}
  1961. \end{document}