-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcooperations.tex
More file actions
1822 lines (1555 loc) · 150 KB
/
cooperations.tex
File metadata and controls
1822 lines (1555 loc) · 150 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
% -*- root: main.tex -*-
\chapter{Unstable Cooperations}\label{UnstableCooperationsChapter}
In \Cref{StableContextLecture} (and more broadly in \Cref{ChapterFiniteSpectra}), we codified the structure of the stable \(E\)--cooperations acting on the \(E\)--homology of a spectrum \(X\), attached to it the \(E\)--Adams spectral sequence which approximates the stable homotopy groups \(\pi_* X\), and gave algebro-geometric descriptions of the stable cooperations for some typical spectra: \(\HFtwo\), \(MO\), and \(MU\).
We will now pursue a variation on this theme, where we consider the \(E\)--homology of a \emph{space} rather than of a generic spectrum.
In this Case Study, we will examine the theory of cooperations that arises from this set-up, called the \textit{unstable \(E\)--cooperations}.
This broader collection of cooperations has considerably more intricate structure than their stable counterparts, requiring the introduction of a new notion of an unstable context.
With that established, we will again find that \(E\)--homology takes values in quasicoherent Cartesian sheaves over the unstable context, and we will again assemble an \emph{unstable} \(E\)--Adams spectral sequence approximating the \emph{unstable} homotopy groups of the input space, whose \(E^2\)--page in favorable situations is tracked by the cohomology of the sheaf over the unstable context.
Remarkably, these unstable contexts also admit algebro-geometric interpretations.
In finding the right language for this, we are naturally led to consider \textit{mixed cooperations} (as we did stably in \Cref{OrientationsOnEAndMU}) of the form \(F_* \OS{E}{*}\).
The running theme is that when \(E\) and \(F\) are complex-orientable, there is a natural approximation map \[\Spec Q^* F_* \OS{E}{*} \to \InternalHom{FormalGroups}(\CP^\infty_F, \CP^\infty_E)\] which is an isomorphism in every situation of interest.
However, these isomorphisms do not appear to admit uniform proofs,%
\footnote{%
The best uniform result I can find is due to Butowiez and Turner~\cite[Theorem 3.12]{ButowiezTurner}.
}
so we instead investigate the following cases by hand:
\begin{description}
\item[{\Cref{UnstableContextsSection}}] For \(F = E = \HFtwo\), we compute the full unstable dual Steenrod algebra \(\HFtwo_* \OS{\HFtwo}{*}\) by means of iterated bar spectral sequences.
We then pass to the additive unstable cooperations, where we show by hand that this presents the endomorphism scheme \(\InternalHom{FormalGroups}(\G_a, \G_a)\).
Finally, we pass to the stable additive cooperations, and we check that our results here are compatible with the isomorphism \[\Spec \HFtwo_* \HFtwo \cong \InternalAut{\G_a}\] presented in \Cref{SteenrodAlgIdentifiedWithAutGa}.
\item[{\Cref{COableCoopnsII}}] We next consider the case where \(E = MU\) and where \(F\) is any complex-orientable theory.
We begin with the case \(F = \HFp\), where we can again approach the problem using iterated bar spectral sequences.
The resulting computation is sufficiently nice that we can use this special case of \(F = \HFp\) to deduce the further case of \(F = H\Z_{(p)}\), then \(F = H\Z\), then \(F = MU\), and then finally \(F\) any complex-orientable theory.
\item[{\Cref{LEFTCooperations}}] Having been able to vary \(F\) as widely as possible in the previous case, we then turn to trying to vary \(E\).
This is considerably harder, since the infinite loopspaces \(\OS{E}{*}\) associated to \(E\) are extremely complicated and vary wildly under even ``small'' changes in \(E\).
However, in the special case of \(F = \HFp\), we have an incredibly powerful trick available to us: Dieudonn\'e theory, discussed in \Cref{SectionDieudonneModules}, gives a logarithmic equivalence of categories \[D_*\co \CatOf{GradedHopfAlgs}^{> 0, \fin}_{\F_p/} \to \CatOf{GradedDMods},\] and applying this in the composite
\begin{align*}
\CatOf{Spectra} & \xrightarrow{\Loops^\infty} \CatOf{Loopspaces} \\
& \xrightarrow{\HFp_*} \CatOf{GradedHopfAlgs}^{>0, \fin}_{\F_p/} \\
& \xrightarrow{D_*} \CatOf{GradedDMods} \\
& \subseteq \CatOf{GradedModules}_{\Cart}
\end{align*}
gives a homological functor.
This means that the Dieudonn\'e module associated to an infinite loopspace varies stably with the spectrum underlying the loopspace, which is enough leverage to settle the case where \(E\) is any Landweber--flat theory.
\item[{\Cref{CoopnsForMoravaKandHA}}] Finally, we settle one further case not covered by any of our generic hypotheses above: \(F = K_\Gamma\) and \(E = H\Z/p^j\).
Neither \(K_\Gamma\) nor \(H\Z/p^j\) is Landweber--flat, but because \(K_\Gamma\) is a field spectrum and because the additive group law associated to \(H\Z/p^j\) is so simple, we can still perform the requisite iterated bar spectral sequence calculation by hand.
\end{description}
This last case is actually our real goal, as we are about to return to the project outlined in the Introduction.
In the language of the Theorems from the Introduction, choosing \(\Gamma\) to be the formal completion of an elliptic curve at the identity section presents the spectra \(K_\Gamma\) and \(E_\Gamma\) of \Cref{NilpotenceAndPeriodicity} as the most basic examples of \textit{elliptic spectra}.
The goal of that Theorem is to study \(E_* BU[6, \infty)\) for \(E\) an elliptic spectrum, so when proving it in \Cref{ChapterSigmaOrientation} we will be led to consider the fiber sequences
\begin{align*}
B\SU \to BU & \to \OS{H\Z}{2}, & \OS{H\Z}{3} \to BU[6, \infty) & \to B\SU,
\end{align*}
which mediate the difference between \(E_* BU\) and \(E_* BU[6, \infty)\) by means of \(E_* \OS{H\Z}{2}\) and \(E_* \OS{H\Z}{3}\).
Thus, in our pursuit of \(K_\Gamma{}_* BU[6, \infty)\), we will want to have \(K_\Gamma{}_* \OS{H\Z}{*}\) already in hand, as well as an algebro-geometric interpretation of it.
\section{Unstable contexts and the Steenrod algebra}\label{UnstableContextsSection}
In this Lecture, our goal is to codify the study of unstable cooperations, beginning with an unstructured account of how they arise.
Recall that for a ring map \(f\co R \to S\), in \Cref{StableContextLecture} we studied the problem of recovering an \(R\)--module from an \(S\)--module equipped with extra data.
The meaning of ``extra data'' that we settled on was that of \index{descent!data}\textit{descent data}, which we phrased most enduringly as a certain cosimplicial diagram.
Stripping away the commutative algebra, the only categorical formality that went into this was the adjunction
\begin{center}
\begin{tikzcd}
& & \CatOf{Modules}_R \arrow[shift left=0.4em]{r}{- \otimes_R S} & \CatOf{Modules}_S \arrow[shift left=0.4em, "\mathrm{forget}"]{l} ,
\intertext{or later on, when given a ring spectrum \(\eta\co \S \to E\), the adjunction}
& \CatOf{Spectra} \arrow[equal]{r} & \CatOf{Modules}_{\S} \arrow[shift left=0.4em]{r}{- \sm E} & \CatOf{Modules}_E \arrow[shift left=0.4em, "\mathrm{forget}"]{l} .
\intertext{The identification of \(\CatOf{Modules}_S\) with \(T\)--algebras in \(\CatOf{Modules}_R\) for the monad \(T = \mathrm{forget} \circ (- \otimes_R S)\) is the objective of \index{descent!monadic}\textit{monadic descent}~\cite[Theorem 4.7.4.5]{LurieHA}.
This categorical recasting is ignorant of some of the algebraic geometry we discovered next, but it is suitable for us now as we consider the composition with a second adjunction:}
\CatOf{Spaces} \arrow[shift left=0.4em]{r}{\Susp^\infty} & \CatOf{Spectra} \arrow[equal]{r}\arrow[shift left=0.4em]{l}{\Loops^\infty} & \CatOf{Modules}_{\S} \arrow[shift left=0.4em]{r}{- \sm E} & \CatOf{Modules}_E \arrow[shift left=0.4em, "\mathrm{forget}"]{l} .
\end{tikzcd}
\end{center}
We will write \(E(-)\) for the induced monad on \(\CatOf{Spaces}\), given by the formula \[E(X) = \Loops^\infty (E \sm \Susp^\infty X) = \colim_{q \to \infty} \Loops^q (\OS{E}{q} \sm X),\] where \(\OS{E}{*}\) are the constituent spaces in the \(\Omega\)--spectrum of \(E\).
This space has the property \(\pi_* E(X) = \widetilde E_{* \ge 0} X\).
The monadic structure comes from the two evident natural transformations:
\[\eta\co X \to \Loops^\infty \Susp^\infty X \simeq \Loops^\infty (\S \sm \Susp^\infty X) \to \Loops^\infty (E \sm \Susp^\infty X) = E(X),\] \vspace{-1.6\baselineskip}
\begin{align*}
\mu\co E(E(X)) & = \Loops^\infty(E \sm \Susp^\infty\Loops^\infty(E \sm \Susp^\infty X)) \\
& \to \Loops^\infty(E \sm E \sm \Susp^\infty X) \to \Loops^\infty(E \sm \Susp^\infty X) = E(X).
\end{align*}
Just as in the stable situation, we can extract from this a cosimplicial object:
\begin{definition}\label{UASSDefinition}
The \index{descent!object!unstable}\textit{unstable descent object} is the cosimplicial space
\[\sheaf{UD}_E(X) := \left\{
\begin{tikzcd}
\begin{array}{c} E \\ \circ \\ X \end{array} \arrow[leftarrow, shift left=\baselineskip]{r}{\mu} \arrow[shift left=(2*\baselineskip)]{r}{\eta_L} \arrow{r}{\eta_R} &
\begin{array}{c} E \\ \circ \\ E \\ \circ \\ X \end{array} \arrow[shift left=(3*\baselineskip)]{r} \arrow[leftarrow, shift left=(2*\baselineskip)]{r} \arrow[shift left=\baselineskip]{r}{\Delta} \arrow[leftarrow]{r} \arrow[shift right=\baselineskip]{r} &
\begin{array}{c} E \\ \circ \\ E \\ \circ \\ E \\ \circ \\ X \end{array} \arrow[shift left=(4*\baselineskip)]{r} \arrow[leftarrow, shift left=(3*\baselineskip)]{r} \arrow[shift left=(2*\baselineskip)]{r} \arrow[leftarrow, shift left=\baselineskip]{r} \arrow{r} \arrow[leftarrow, shift right=\baselineskip]{r} \arrow[shift right=(2*\baselineskip)]{r} &
\cdots
\end{tikzcd}
\right\}.\]
Its totalization gives the \index{completion!unstable}\textit{unstable \(E\)--nilpotent completion of \(X\)}, and the associated filtration spectral sequence on homotopy is the \index{Adams spectral sequence!unstable}\textit{unstable Adams spectral sequence}.
In the case that \(\pi_0 \sheaf{UD}_E(S^0)\) is even, the simplicial scheme \[\Ucontext{E} = \Spec \pi_0 \sheaf{UD}_E(S^0)\] forms the \index{context!unstable}\textit{unstable context} for \(E\), a space \(X\) gives rise to a quasicoherent sheaf over \(\Ucontext{E}\) by \[\Ucontext{E}(X) = (\pi_0 \sheaf{UD}_E(X))\widetilde{\quad},\] and there is a preferred system of sheaves \(\omega^{n/2} = \Ucontext{E}(S^n)\).
\end{definition}
The remainder of this Lecture will be spent trying to wrangle the information in \Cref{UASSDefinition}.
In the stable situation, we recognized that in favorable situations the homotopy groups of the descent object formed a cosimplicial module over a certain cosimplicial ring---or, equivalently, a \emph{Cartesian} sheaf over a certain simplicial scheme.
Furthermore, we found that the simplicial scheme itself had some arithmetic meaning, and that the \(E_2\)--page of the descent spectral sequence computed the cohomology of this sheaf.
We will find analogues of all of these results in the unstable setting, listed in order from least to most difficult.
We would first like to recognize the cosimplicial abelian group \(\pi_0 \sheaf{UD}_E(X)\) as a sort of comodule.
In the stable case, this came from the smash product map \(\S^0 \sm X \to X\), as well as the lax monoidality of the functor \(\sheaf{D}_E(-)\).
However, to get a \index{Segal condition}Segal condition by which we could identify the higher-dimensional objects in \(\pi_0 \sheaf D_E(X)\), we had to introduce the condition \index{flatness hypothesis@flatness hypothesis, \FH}{\FH}.%
\footnote{%
In particular, we used {\FH} to invert the marked map in \(E_0 X \xrightarrow{\eta_R} E_0(E \sm X) \xleftarrow{\star} E_0 E \otimes_{E_0} E_0 X\).
}
The unstable situation has an analogous antecedent:
\begin{definition}[{\cite[Assumption 6.5]{BCM}}]
An even-periodic ring spectrum \(E\) is said to satisfy the \index{flatness hypothesis@flatness hypothesis, \FH!unstable@unstable, \UFH}\textbf{U}nstable \textbf{F}reeness \textbf{H}ypothesis, or \UFH, if \(E_0 \OS{E}{0}\) is a free and even \(E_0\)--module.%
\footnote{%
This helps us understand the following analogous zigzag: \[\pi_0 E(X) \xrightarrow{\eta_R} \pi_0 E(E(X)) \xleftarrow{\mu \circ 1} \pi_0 E(E(E(X))) \xleftarrow{\mathrm{compose}} \pi_0 E(E(S^0)) \times \pi_0 E(X).\]
}
\end{definition}
Under this condition, we again turn to studying the structure of \(\sheaf{UD}_E(S^0)\).
If we had a Segal condition, we would expect the structure present to be determined by \(\pi_0 \sheaf{UD}_E(S^0)[j]\) for \(j \le 2\).
The data at \(j = 0\) is nothing new: \[\pi_0 E(S^0) = \pi_0 \OS{E}{0} = E_0\] computes the coefficient ring of \(E\).
The data at \(j = 1\) consists of the homology groups of the the infinite loopspace associated to \(E\): \[\pi_0 E(E(S^0)) = E_0 \OS{E}{0}.\]
There are three pieces of structure present here: the augmentation map \[\eps\co E_0 \OS{E}{0} \to E_0(E) \to E_0\] and the left- and right-unit maps \(E_0 \to E_0 \OS{E}{0}\).
The assumption {\UFH} gives us a foothold on the case \(j = 2\): a choice of basis \(B\) for \(E_0 \OS{E}{0}\) gives an isomorphism \[E(E(S^0)) \simeq {\prod_{\ell \in B}}' \OS{E}{0} := \colim_{\substack{F \subseteq B \\ \text{\(F\) finite}}} \prod_{\ell \in F} \OS{E}{0},\] so that \(\pi_0 \sheaf{UD}_E(S^0)[2]\) splits as a tensor product of terms of the form \(E_0 \OS{E}{0}\).
Here, we find a lot of structure: the addition of cohomology classes is represented by a map \[\OS E 0 \times \OS E 0 \to \OS E 0,\] which on \(E\)--homology induces a map \[\ast\co E_0 \OS{E}{0} \otimes_{E_0} E_0 \OS{E}{0} \to E_0 \OS{E}{0};\] the multiplication of cohomology classes similarly induces a map \[\circ\co E_0 \OS{E}{0} \otimes E_0 \OS{E}{0} \to E_0 \OS{E}{0};\] these are compatible with the images of unit classes \(0, 1 \in \pi_0 E\) under the left- and right-units specified above; there is an additive inverse map \[\chi\co E_0 \OS{E}{0} \to E_0 \OS{E}{0}\] compatible with the \(\ast\)--product;%
\footnote{%
When considering the graded analogue of Hopf rings, the \(\circ\)--product obeys a skew-commutativity formula: \(a \circ b = \chi^{|a| \cdot |b|}(b \circ a)\).
}
there is a diagonal map \[\Delta\co E_0 \OS{E}{0} \to E_0 \OS{E}{0} \otimes_{E_0} E_0 \OS{E}{0}\] induced by the diagonal map of the space $\OS{E}{0}$;%
\footnote{%
\emph{Caveat lector:} This $\Delta$ is distinct from the $\Delta$ appearing in \Cref{UASSDefinition}, which is induced by the unit of the monad associated to the composite adjunction.
Unfortunately, it is extremely standard to refer to both maps by the same symbol, and the reader will simply have to disambiguate the two on their own.
}
the maps \(\chi\), \(\ast\), and \(\Delta\) imbue \(E_0 \OS{E}{0}\) with a Hopf algebra structure; and there is a distributivity condition pictured in \Cref{DistributivityDiagram} intertwining \(\ast\), \(\circ\), and \(\Delta\).%
\footnote{%
Analogous structure also appears for aperiodic ring spectra \(E\) satisfying a graded version of {\UFH}, and in that case tracking through the extra grading indices is helpful for deciphering what these maps ``feel'' like.
}
\begin{figure}
\begin{center}
\begin{tikzcd}
A \otimes_R (A \otimes_R A) \arrow{r}{1 \otimes \ast} \arrow{d}{\Delta \otimes (1 \otimes 1)} & A \otimes_R A \arrow{dddd}{\circ} \\
\left(A \otimes_R A \right) \otimes_R (A \otimes_R A) \arrow{d}{\simeq} \\
\left(A \otimes_R A \otimes_R A \otimes_R A \right) \arrow{d}{1 \otimes \tau \otimes 1} \\
\left(A \otimes_R A \otimes_R A \otimes_R A \right) \arrow{d}{\circ \otimes \circ} \\
\left(A \otimes_R A\right) \arrow{r}{\ast} & A.
\end{tikzcd}
\end{center}
\caption{The distributivity axiom for \(\ast\) over \(\circ\) in a Hopf ring.}\label{DistributivityDiagram}
\end{figure}
\begin{definition}[{\cite[Summary 10.46]{BJW}}]\label{HopfRingManualDefinition}
A \idxentry{Hopf ring} is a module equipped with structure maps \(\eps\), \(\ast\), \(\circ\), \(\Delta\), and \(\chi\), as well as unit classes \([0]\) and \([1]\) for \(\ast\) and \(\circ\) respectively, subject to the axioms described above.%
\footnote{%
A Hopf ring can be concisely defined as a ring object in the category of coalgebras.
This concision is a double-edged virtue, but we will find it genuinely useful in \Cref{UnstableAlgebraicModelSection}.
}%
\footnote{%
There are yet more pieces of topological structure available that Boardman--Johnson--Wilson call an \index{Hopf ring!enriched}\textit{enriched Hopf ring}~\cite[Section 10]{BJW}.
We omit them from the algebraic definition because they do not affect the homological algebra of modules for a Hopf ring and because they do not directly appear in the ``mixed'' context of \Cref{UnstableAlgebraicModelSection}.
They are: an element \(v \in \pi_0 E\) selects a connected component of \(\OS{E}{0}\), and there is an attached element \([v] \in E_0 \OS{E}{0}\) (i.e., the right unit structure map); a cohomology operation \(r\co E^0(-) \to E^0(-)\) induces a map \(\OS{E}{0} \to \OS{E}{0}\) and hence a map on \(E\)--homology \(r_*\co E_0 \OS{E}{0} \to E_0 \OS{E}{0}\); and, in particular, this gives a homology suspension element \(e = (e_2)_*\), where \(e_2\co E^0(-) \to E^2(-) \cong E^0(\Loops^2 -)\) witnesses the \(2\)--periodicity of \(E\).
}
\end{definition}
These structures are enough to pin down the behavior of both \(E_0 X\) and the unstable descent object:
\begin{definition}[{cf.\ \Cref{CofreeComoduleAdjunction}}]
Let \(E\) satisfy {\UFH}.
The associated Hopf ring \(E_0 \OS{E}{0}\) gives rise to a comonad \(G(M) = M \otimes_{E_0} E_0 \OS{E}{0}\), and \(G\)--coalgebras define comodules for the Hopf ring.\index{comodule!coalgebra}
\end{definition}
\begin{lemma}[{\cite[Theorem 6.17]{BCM}}]\label{HopfRingFromOneRingSpectrum}
If an even-periodic ring spectrum \(E\) satisfies {\UFH} and \(X\) is a space with \(E_* X\) a free \(E_*\)--module, then \(E_0 X\) forms a \(G\)--coalgebra, the cosimplicial object \(\pi_0 \sheaf{UD}_E(X)\) is its cobar resolution under \(G\), and the \(E_2\)--page of the \index{Adams spectral sequence!unstable}unstable descent spectral sequence is presented as \[E_2^{s} = R^s\CatOf{Coalgebras}_G(E_0, E_0 X).\]
\end{lemma}
\begin{proof}
For \(X\) satisfying this freeness condition, there is a splitting \[E(X) \simeq {\prod_\ell}' \OS{E}{n_\ell} \simeq {\prod_\ell}' \OS{E}{0},\] where the second equivalence is by even-periodicity.
Since \(E\) satisfies {\UFH}, the K\"unneth spectral sequence for the comparison map \(\prod_\ell E(\OS{E}{0}) \to E(E(X))\) collapses to an equivalence, so that \[\pi_0 E(E(X)) \cong \pi_0 \left({\prod_\ell}' E(\OS{E}{0})\right) \cong E_0(\OS{E}{0}) \otimes_{E_0} E_0(X).\]
Continuing inductively in this way, the levelwise homotopy of the entire unstable descent object \(\sheaf{UD}_E(X)\) can be identified as the cobar complex for \(G\), and the structure maps of \(\pi_0 \sheaf{UD}_E(X)[\le 2]\) endow \(E_0 X\) itself with the structure of a \(G\)--coalgebra.
\end{proof}
At this point, it is instructive to work through an extended example to understand the kinds of objects under consideration.
At first appraisal, they appear so bottomlessly complicated that it must be hopeless to actually compute even the enriched Hopf ring associated to a spectrum \(E\).
In fact, the abundance of structure maps involved gives enough footholds that this is actually often feasible, provided we have sufficiently strong stomachs.
Our example will be the aperiodic spectrum \(E = \HFtwo\) (and so we switch back into the graded setting), and the place to start is with a very old result:
\begin{lemma}
If \(E\) is a spectrum with \(\pi_{-1} E = 0\), then \(\OS{E}{1} \simeq B\OS{E}{0}\).
If \(E\) is a connective spectrum then \(\OS{E}{q} = B^q \OS{E}{0}\) for \(n \ge 0\). \qed
\end{lemma}
\noindent We use the natural skeletal filtration on \(B(-)\) to form a spectral sequence.
\begin{lemma}[{\cite[Proposition 3.2]{Segal}, \cite[Theorem 2.1]{RavenelWilsonKthyOfEMSpaces}}]
For \(G\) a loopspace, there is a \index{bar spectral sequence}spectral sequence of signature \[E^1_{*, j} = F_*(\Susp G)^{\sm j} \Rightarrow F_* BG.\]
If \(G\) is a double loopspace, then the spectral sequence is one of algebras.
If \(F\) has K\"unneth isomorphisms \[\widetilde F_*((\Susp G)^{\sm j}) \cong \widetilde F_*(\Susp G)^{\otimes_{F_*} j},\] then the \(E^2\)--page is given by \[E^2_{*, *} \cong \Tor^{F_* G}_{*, *}(F_*, F_*).\]
If both extra conditions hold, then the spectral sequence is of Hopf algebras. \qed
\end{lemma}
\begin{corollary}
If \(E\) is a connective spectrum and if for all \(q\) the ring spectrum \(F\) has K\"unneth isomorphisms \(\widetilde F_*(\OS{E}{q} \sm \OS{E}{q}) \cong \widetilde F_* \OS{E}{q} \otimes_{F_*} \widetilde F_* \OS{E}{q}\), then there is a family of spectral sequences of Hopf algebras with signatures
\[
\pushQED{\qed}
E^2_{*, *} \cong \Tor^{F_* \OS{E}{q}}_{*, *}(F_*, F_*) \Rightarrow F_* \OS{E}{q+1}. \qedhere
\popQED
\]
\end{corollary}
That this spectral sequence is multiplicative for the \(\ast\)--product is useful enough, but the situation is actually much, much better than this:
\begin{lemma}[{\cite[Equation 1.3]{ThomasonWilson}, \cite[Theorem 2.2]{RavenelWilsonKthyOfEMSpaces}}]\label{CircProductAndDifferentials}
Suppose further that \(E\) is a ring spectrum, and denote by \(E^r_{*, *}(F_* \OS{E}{q})\) the spectral sequence considered above whose \(E^2\)--term is given by \(\Tor\) over \(F_* \OS{E}{q}\).
There are maps \[E^r_{*, *}(F_* \OS{E}{j}) \otimes_{F_*} F_* \OS{E}{q'} \to E^r_{*, *}(F_* \OS{E}{q+q'})\] which converge to the map \[F_* \OS{E}{q+1} \otimes_{F_*} F_* \OS{E}{q'} \xrightarrow{\circ} F_* \OS{E}{q+q'+1}\] on the \(E^\infty\)--page and which satisfy
\[
\pushQED{\qed}
d^r(x \circ y) = (d^r x) \circ y. \qedhere
\popQED
\]
\end{lemma}
\noindent This Lemma is incredibly useful: it means that differentials can be transported \emph{between spectral sequences} for classes which can be decomposed as \(\circ\)--products.
This means that the bottom spectral sequence (i.e., the case \(q = 0\)) exerts a large amount of control over the others---and this spectral sequence often turns out to be very computable.
We now turn to concrete computations for \(E = \HFtwo\) and \(F = \HFtwo\).
To ground the induction, we will consider the first spectral sequence \[\Tor^{\HFtwo_*(\F_2)}_{*, *}(\F_2, \F_2) \Rightarrow \HFtwo_* B\F_2.\]
Using \(\RP^\infty\) as a model for \(B\F_2\), we employ \Cref{HF2RPinftyExample} to analyze the target of this spectral sequence: as an \(\F_2\)--module, we have an isomorphism \[\HFtwo_* B\F_2 \cong \F_2\{\alpha_j \mid j \ge 0\}.\]
Using our further computation in \Cref{RPExampleFaulty}, we can also give a presentation of the Hopf algebra structure on \(\HFtwo_* B\F_2\): it is dual to the primitively-generated polynomial algebra on a single class, so forms a divided power algebra on a single class which we will denote by \(\alpha_{()}\).
In characteristic \(2\), this decomposes as \[\HFtwo_* B\F_2 \cong \Gamma[\alpha_{()}] \cong \bigotimes_{j=0}^\infty \F_2[\alpha_{(j)}] / \alpha_{(j)}^2,\] where we have written \(\alpha_{(j)}\) for \(\alpha_{()}^{[2^j]}\) in the divided power structure and for \(\alpha_{2^j}\) in the presentation of \(\HFtwo_* B\F_2\).
\begin{corollary}
This \(\Tor\) spectral sequence collapses at the \(E^2\)--page.
\end{corollary}
\begin{proof}
As an algebra, the homology \(\HFtwo_*(\F_2)\) of the discrete space \(\F_2\) is presented by a group ring, which we can identify with a truncated polynomial algebra: \[\HFtwo_*(\F_2) \cong \F_2[\F_2] \cong
\F_2[a] / a^{\ast 2}, \quad \text{where \(a = [1] - [0]\)}.\]
The \(\Tor\)--algebra of this is then divided power on a single class: \[\Tor^{\HFtwo_*(\F_2)}_{*, *}(\F_2, \F_2) = \Gamma[\alpha_{()}].\]
In order for the two computations to agree, there can therefore be no differentials in the spectral sequence.
\end{proof}
We now summarize the rest of the induction:
\begin{theorem}\label{UnstableSteenrodInduction}
\(\HFtwo_* \OS{\HFtwo}{t}\) is the exterior \(\ast\)--algebra on the \(q\)--fold \(\circ\)--products of the generators \(\alpha_{(j)} \in \HFtwo_* B\F_2\): \[\HFtwo_* \OS{\HFtwo}{t} \cong \frac{\F_2[\alpha_{(j_1)} \circ \cdots \circ \alpha_{(j_q)} \mid j_1 \le \cdots \le j_q]}{(\alpha_{(j_1)} \circ \cdots \circ \alpha_{(j_q)})^{\ast 2}}.\]
\end{theorem}
\begin{proof}
Noting that the case \(q = 0\) is what was proved above, make the inductive assumption that this is true for some fixed value of \(q \ge 0\).
The \(\Tor\) groups of the associated bar spectral sequence \[\Tor^{\HFtwo_* \OS{\HFtwo}{q}}_{*, *}(\F_2, \F_2) \Rightarrow \HFtwo_* \OS{\HFtwo}{q+1}\] form a divided power algebra generated by the same \(q\)--fold \(\circ\)--products.
An analogue of a Ravenel--Wilson lemma~(\cite[Lemma 9.5]{RavenelWilsonKthyOfEMSpaces}, \cite[Claim 8.16]{Wilson}) gives a congruence \[(\alpha_{(j_2-j_1)} \circ \cdots \circ \alpha_{(j_{q+1}-j_1)})^{[2^{j_1}]} \equiv \alpha_{(j_1)} \circ \cdots \circ \alpha_{(j_q)} \circ \alpha_{(j_{q+1})} \tag{mod \(\ast\)--decomposables}.\]
It follows from \Cref{CircProductAndDifferentials} that the differentials vanish:
\begin{align*}
d((\alpha_{(j_2-j_1)} \circ \cdots \circ \alpha_{(j_{q+1}-j_1)})^{[2^{j_1}]}) & \equiv d(\alpha_{(j_1)} \circ \cdots \circ \alpha_{(j_t)} \circ \alpha_{(j_{q+1})}) \tag{mod \(\ast\)--decomposables} \\
& = \alpha_{(j_1)} \circ d(\alpha_{(j_2)} \circ \cdots \circ \alpha_{(j_{q+1})}) \tag{\Cref{CircProductAndDifferentials}} \\
& = 0. \tag{inductive hyp.}
\end{align*}
Hence, the spectral sequence collapses.
To see that there are no multiplicative extensions, note that the only potentially undetermined multiplications occur as \(\ast\)--squares of exterior classes.
However, the \(\ast\)--squaring map is induced by the topological map%
\footnote{%
This is true only for the case of \(E = \HFp\).
In \Cref{COableCoopnsII} and \Cref{CoopnsForMoravaKandHA}, we will require a most robust proof that there are no extensions, which can be found in \cite[Proof of 8.11]{Wilson}.
}
\[\OS{\HFtwo}{q} \xrightarrow{\cdot 2} \OS{\HFtwo}{q},\]
which is already null on the level of spaces.
It follows that there are no extensions and the induction holds.
\end{proof}
\begin{corollary}\label{CalculationOfUnstableSteenrodHopfRing}
There is an isomorphism
\begin{align*}
\HFtwo_* \OS{\HFtwo}{*} & \cong \bigotimes_q \frac{\F_2[\alpha_{(j_1)} \circ \cdots \circ \alpha_{(j_q)} \mid j_1 \le \cdots \le j_q]}{(\alpha_{(j_1)} \circ \cdots \circ \alpha_{(j_q)})^{\ast 2}} \\
& \cong \bigotimes_q (\HFtwo_* \RP^\infty)^{\sm q},
\end{align*}
where \((\HFtwo_* \RP^\infty)^{\sm q}\) denotes the \(q\){\th} exterior power of \(\HFtwo_* \RP^\infty\) as a Hopf algebra~\cite[Propposition 5.5]{GoerssDieudonne}. \qed
\end{corollary}
\begin{remark}[{\cite[Theorems 8.5 and 8.11]{Wilson}}]
The odd--primary analogue of this result appears in Wilson's book, where again the bar spectral sequences all collapse.
The end result is \[\HFp_* \OS{\HFp}{*} \cong \frac{\bigotimes_{I, J} \F_p[e_1 \circ \alpha_I \circ \beta_J, \alpha_I \circ \beta_J]}{(e_1 \circ \alpha_I \circ \beta_J)^{\ast 2} = 0, (\alpha_I \circ \beta_J)^{\ast p} = 0, e_1 \circ e_1 = \beta_1},\] where we have defined the following elements:
\begin{itemize}
\item \(e_1 \in (\HFp)_1 \OS{\HFp}{1}\) is the \index{homology suspension}homology suspension element.
\item \(\alpha_{(j)} \in (\HFp)_{2p^j} \OS{\HFp}{1}\) are the analogues of the elements considered above.
\item \(\beta_{(j)} \in (\HFp)_{2p^j} \CP^\infty\) are the algebra generators of the Hopf algebra dual of the ring of functions on the formal group \(\CP^\infty_{\HFp}\) associated to \(\HFp\) by its natural complex orientation.
\end{itemize}
In particular, the Hopf ring is nearly \emph{free}\index{Hopf ring!free} on these Hopf algebras, subject to the single interesting relation \(e_1 \circ e_1 = \beta_{(0)}\), essentially stemming from the equivalence \(S^1 \sm S^1 \simeq \CP^1\).
\end{remark}
It is now instructive to try to relate this unstable computation to the stable one from \Cref{TheSteenrodAlgebraSection} (and, particularly, its algebro-geometric interpretation in \Cref{SteenrodAlgIdentifiedWithAutGa}).
Consider the situation of cohomology operations: each stable operation consists of a family of unstable operations intertwined by suspensions, each of which is additive and takes \(0\) to \(0\).
In terms of an element \(\psi \in E^* \OS{E}{j}\), such an unstable operation takes \(0\) to \(0\) exactly when it lies in the augmentation ideal, and it is additive exactly when it satisfies Hopf algebra primitivity: \[\Delta^* \psi^* = (\psi \otimes \psi)^* \Delta^*.\]
\begin{definition}
For a Hopf ring \(H\) with augmentation \(\eps\), we define the \textit{\(\ast\)--indecomposable quotient}, a bialgebra, by \(Q^* H = \ker \eps / (\ker \eps)^{\ast 2}\) (cf.\ \Cref{DefnOfCoTangentSpaces}).
In the setting of unstable homology cooperations, the collection of \index{operations!unstable}\textit{additive unstable cooperations} is defined as \(Q^* E_* \OS{E}{j}\).\index{Hopf ring!star indecomposables@\(\ast\)--indecomposables}
\end{definition}
We now apply this philosophy to our example:
\begin{corollary}[{cf.\ \Cref{StableSteenrodAlgebraQuote}, \cite[Theorem 8.15]{Wilson}}]\label{StarIndecompsInUDualSteenrodAlg}
\[\mathcal A_* = \F_2[\xi_0, \xi_1, \xi_2, \ldots]/(\xi_0 = 1).\]
\end{corollary}
\begin{proof}
We approach via the system \[\HFtwo_* \HFtwo \cong \colim\left( \cdots \to \widetilde{\HFtwo}_{*+j} \OS{\HFtwo}{q} \to \widetilde{\HFtwo}_{*+(q+1)} \OS{\HFtwo}{q+1} \to \cdots \right).\]
First, note that each map in the system factors through the \(\ast\)--indecomposables: the composite \[\Susp(\OS{E}{q} \times \OS{E}{q}) \to \Susp \OS{E}{q} \to \OS{E}{q+1}\] vanishes on \(E\)--homology for the same reason that suspension kills the cup product~\cite[Corollary 2.18]{BJW}, \cite[Proposition 13.65]{Switzer}.
We may therefore replace this system with \[\HFtwo_* \HFtwo \cong \colim\left( \cdots \to Q^* \HFtwo_{*+q} \OS{\HFtwo}{q} \to Q^* \HFtwo_{*+(q+1)} \OS{\HFtwo}{q+1} \to \cdots \right).\]
\Cref{CalculationOfUnstableSteenrodHopfRing} gives us unfettered access to the \(\ast\)--indecomposables:
\begin{align*}
Q^\ast \HFtwo_* \OS{\HFtwo}{*} & \cong \F_2\left\{\alpha_{I} \middle| \text{\(I\) a multi-index}\right\} \\
& = \F_2\left\{ \alpha_{(I_0)} \circ \alpha_{(I_1)} \circ \cdots \circ \alpha_{(I_q)} \middle| \text{\(I = (I_0, \ldots, I_q)\) a multi-index}\right\}.
\end{align*}
The \(q\){\th} component of this system consists of sums of monomials with \(q\) factors, and the maps in the system multiply by the homology suspension element \(\alpha_{(0)} = \xi_0\) to produce a monomial with \((q+1)\) factors from one with \(j\) factors.%
\footnote{%
As a reminder, the graded unstable element \(e \in H_1 S^1\) contributes to stable degree \(1 - 1 = 0\).
}
Writing \(\xi_j = \alpha_{(j)}\), this computes the colimit to be \[\HFtwo_* \HFtwo \cong \F_2[\xi_j \mid j \ge 1]. \qedhere\]
\end{proof}
Our last goal in this Lecture is to sketch a foothold that this example has furnished us with for the algebro-geometric interpretation of unstable cooperations.
First, we should remark that it has been shown that there is no manifestation of the homology of a space as any kind of classical comodule~\cite[Theorem 9.4]{BJW}, so we are unable to directly pursue an analogue of \Cref{FHGivesComodules} presenting the homology of a space as a Cartesian quasicoherent sheaf over some object.
This no-go result is quite believable from the perspective of cohomology operations: we have calculated in the case of \(E = \HFtwo\) that a generic unstable cohomology operation takes the form \[x \mapsto \sum_{\text{\(S\) a set of multi-indices}} \left(c_S \cdot \prod_{I \in S} \Sq^I(x)\right).\]
This inherently uses the multiplicative structure on \(\HFtwo^*(X)\), and the proof of the result of Boardman, Johnson, and Wilson rests entirely on the observation that decomposable elements cannot be mapped to indecomposable elements by maps of algebras, but maps of modules have no such control.%
\footnote{%
It is probably still possible to treat this carefully enough to cast the whole of unstable operations (and, in particular, the comonad \(G\)) into algebro-geometric language.
}
However, exactly this complaint is eliminated by passing to the additive unstable cooperations: all the product terms in the above formula vanish, and the homology of a space does indeed have the structure of a comodule for this bialgebra.
Still in the setting of our running example \(E = \HFtwo\), this makes \(\HFtwo_*(X)\) into a Cartesian quasicoherent sheaf for the simplicial scheme%
\footnote{%
This identification is somewhat subtle: we are using the fact that passing to homotopy groups of this simplicial scheme factors through passing through the \(\ast\)--indecomposable quotient; cf.\ \Cref{ShorterUnstableResns}.
}
\[\Ucontext{\HFtwo P} \simeq \Spec \F_2 \mmod \Spec Q^* \HFtwo P_0 \OS{\HFtwo P}{0}.\]
In this specific example, we can even identify what this simplicial scheme is.
Using \Cref{SteenrodAlgIdentifiedWithAutGa}, we have already made the identification
\begin{align*}
\Spec \HFtwo P_0 \HFtwo P & \cong \InternalAut{\G_a} \\
\left(f\co \F_2[\xi_0^\pm, \xi_1, \ldots] \to R \right) & \mapsto \left(x \mapsto \sum_{j=0}^\infty f(\xi_j) x^{2^j}\right),
\end{align*}
The even-periodic analogue of \Cref{CalculationOfUnstableSteenrodHopfRing} presents \(\Spec \mathcal A P_0\) as the open subscheme of \(\Spec \F_2[\xi_0, \xi_1, \ldots]\) with \(\xi_0\) inverted.%
\footnote{%
Note that \(Q^* \HFtwo_* \OS{\HFtwo}{*}\) does \emph{not} form a Hopf algebra, essentially because it is missing a version of \(\chi\) that inverts \(\circ\)--multiplication.
It is remarkable (and related to \Cref{FreeFormalGroupOnACurve}) that inverting the homology suspension element automatically produces an antipode.
}
Hence, we see that a compatible name for the inertia group in the unstable context for \(\HFtwo P\) is\index{formal group!homomorphism}
\begin{align*}
\Spec Q^* \HFtwo P_0 \OS{\HFtwo P}{0} & \cong \InternalEnd{\G_a} \\
\left(f\co \F_2[\xi_0, \xi_1, \ldots] \to R \right) & \mapsto \left(x \mapsto \sum_{j=0}^\infty f(\xi_j) x^{2^j}\right).
\end{align*}
Some of the complexity here was eliminated by the smallness of \(\Spec \HFtwo P_0\).
For a general ring spectrum \(E\), we also have to account for \(\Spec E_0\), but the end result is similar to that of \Cref{FHGivesComodules}:
\begin{lemma}
For a ring spectrum \(E\) satisfying {\UFH}, the additive unstable cooperations form rings of functions on the objects and morphisms of a category scheme \(\Ucontext{E}\), and the \(E\)--homology of a space \(X\) forms a \emph{Cartesian} quasicoherent sheaf \(\Ucontext{E}(X)\) over its nerve. \qed
\end{lemma}
Although it seems like we have lost a lot of information in passing to \(\ast\)--indecomposables, in many cases this is actually enough to recover everything.
\begin{definition}[{\cite[Assumptions 7.1 and 7.7]{BCM}}]
We say that a ring spectrum \(E\) satisfying {\UFH} furthermore satisfies the \textbf{U}nstable \textbf{G}eneration \textbf{H}ypothesis, or \index{flatness hypothesis@flatness hypothesis, {\FH}!unstable generation, \UGH}{\UGH}, when the following conditions all hold:
\begin{enumerate}
\item The module of primitives \(P E_0 \OS{E}{0}\) is \(E_0\)--free.
\item The composite \(P E_0 \OS{E}{0} \to E_0 \OS{E}{0} \to E_0 E\) is injective.
\item Writing \(S\) for the cofree (nonunital) coalgebra functor, \(E_0 \OS{E}{0} \to SP E_0 \OS{E}{0}\) is an isomorphism.
\end{enumerate}
\end{definition}
\begin{lemma}[{\cite[Lemma 7.5]{BCM}}]\label{ShorterUnstableResns}
Let \(E\) be a ring spectrum satisfying {\UGH}, and let \(G\) be the comonad from \Cref{HopfRingFromOneRingSpectrum}.
The composite functor \(U = P G\) extends from a functor on free \(E_0\)--modules to all \(E_0\)--modules by using \(2\)--stage free resolutions and enforcing exactness, and the result is a comonad.
Coalgebras for this comonad are exactly comodules for the bialgebra of additive unstable cooperations. \qed
\end{lemma}
\begin{corollary}[{\cite[Remark 7.8]{BCM}}]
If \(E\) satisfies {\UGH} and \(X\) is a space with \(E_0 X = SN\) for some connective free \(E_0\)--module \(N\), then the unstable \(E\)--Adams \(E_2\)--term is computed by \[E_2^s = \Ext^s_{\CatOf{Coalgebras}_U}(E_0, P E_0 X).\]
\end{corollary}
\begin{proof}
Under {\UGH}, we have a factorization \[\CatOf{Coalgebras}_{G}(E_0, -) = \CatOf{Coalgebras}_{U}(E_0, P(-))\] and the injective objects intertwine to give a composite functor spectral sequence \[E_2^{r, s} = \Ext^r_{\CatOf{Coalgebras}_U}(E_0, R^s_{\CatOf{Coalgberas}_G} P(M)) \Rightarrow \Ext^{r+s}_{\CatOf{Coalgebras}_G}(E_0, M).\]
If \(M = E_0 X = SN\) for some connective free \(E_0\)--module \(N\), then \[R^{q > 0}_{\CatOf{Coalgebras}_G} P(E_0 X) = 0,\] hence the composite functor spectral sequence collapses, and \[\Ext^s_{\CatOf{Coalgebras}_U}(E_0, P E_0 X)\] computes the unstable Adams \(E_2\)--term as claimed.
\end{proof}
\afterrectopage{
\begin{sidewaysfigure}
\centering
\input{uass7.tex}
\caption{The \(E_2\)--page of the unstable \(\HFtwo\)--Adams spectral sequence for \(S^7\)~\cite{BPS}.
North and north-east lines denote multiplication by \(2\) and by \(\eta\).}\label{UASS7Figure}
\end{sidewaysfigure}
\begin{sidewaysfigure}
\centering
\input{uass9.tex}
\caption{The \(E_2\)--page of the unstable \(\HFtwo\)--Adams spectral sequence for \(S^9\)~\cite{BPS}.
North and north-east lines denote multiplication by \(2\) and by \(\eta\).}\label{UASS9Figure}
\end{sidewaysfigure}
}
\begin{remark}[{cf.\ \Cref{AutGaHasStableCoopns}}]
As in the stable case, the Hopf ring associated to a ring spectrum satisfying {\UFH} splits off a factor of \(B\N\) that tracks the grading\index{group scheme!multiplicative group, \(\Gm\)!action}, and \(\omega^{*/2}\) can be thought of as a family of character sheaves for \(\N\).
Passing to the stable context covers the localization \(B\N \to B\Gm\).
\end{remark}
\begin{remark}[{\cite{Bauer}}]
Tilman Bauer has studied some of the algebraic geometry associated to unstable cohomology operations, which he gave a model for in terms of \idxentry{formal plethories}.
\end{remark}
\section{Algebraic mixed unstable cooperations}\label{UnstableAlgebraicModelSection}
For simplicity, we return for a moment to the stable setting of \Cref{StableContextLecture}.
For an arbitrary spectrum \(X\) and ring spectrum \(E\), the completion \(X^\wedge_E\) is typically a quite poor approximation to \(X\) itself.
Though this can be partially mediated by placing hypotheses on \(X\), the approximation can always be improved by ``enlarging'' the ring spectrum involved---for instance, selecting a second ring spectrum \(F\) and forming the completion \(X^\wedge_{E \vee F}\) at the wedge.
This has the following factorization property
\begin{center}
\begin{tikzcd}[row sep=0.2em]
& & X^\wedge_E \\
X \arrow{r} \arrow[bend left]{rru} \arrow[bend right]{rrd} & X^\wedge_{E \vee F} \arrow{ru} \arrow{rd} \\
& & X^\wedge_F,
\end{tikzcd}
\end{center}
so that homotopy classes visible in either of \(X^\wedge_E\) or \(X^\wedge_F\) are therefore also visible in the homotopy of \(X^\wedge_{E \vee F}\).\index{operations!mixed}
Now consider the descent object \(\mathcal D_{E \vee F}(X)\) and its layers \(\mathcal D_{E \vee F}(X)[n]\):
\begin{align*}
\mathcal D_{E \vee F}(X)[n] & = (E \vee F)^{\sm (n+1)} \sm (X) \\
& \simeq (E^{\sm (n+1)} \sm X) \vee (F^{\sm (n+1)} \sm X) \\
& \quad \quad \vee \bigvee_{\substack{i+j=n+1 \\ i \ne 0 \ne j}} (E^{\sm i} \sm F^{\sm j} \sm X)^{\vee \binom{n}{i,j}}.
\end{align*}
In the edge cases of \(i = 0\) or \(j = 0\), we can identify the descent objects \(\mathcal D_E(X)\) and \(\mathcal D_F(X)\) as sub-cosimplicial objects of \(\mathcal D_{E \vee F}(X)\).
The role of the cross-terms at the end of the expression is to prevent the completion at \(E \vee F\) from double-counting the parts of \(X\) already simultaneously visible to the completions at \(E\) and at \(F\)---i.e., the cross-terms handle communication between \(E\) and \(F\).%
\footnote{%
From the perspective of spectral shemes, you might think of the descent object for \(E \vee F\) as that coming from the joint cover \(\{\S \to E, \S \to F\}\), and these cross-terms correspond to the scheme-theoretic intersection of \(E\) and \(F\) over \(\S\).
}
There is a similar (but algebraically murkier) story for the unstable descent object formed at a wedge of two ring spectra.
Let \(X\) now be a space, and consider the first two layers of \(\mathcal{UD}_{E \vee F}(X)\):
\begin{align*}
\mathcal{UD}_{E \vee F}(X)[0] & = (E \vee F)(X) \\
& = E(X) \times F(X), \\
\mathcal{UD}_{E \vee F}(X)[1] & = (E \vee F)(E(X) \times F(X)) \\
& = E(E(X) \times F(X)) \times F(E(X) \times F(X)).
\end{align*}
Restricting attention to just the first factor, \(E(E(X) \times F(X))\), its homotopy receives a map \[\pi_0 E(E(X)) \times \pi_0 E(F(X)) \to \pi_0(E(E(X) \times F(X)),\] and if \(E\) has K\"unneth isomorphisms then the induced map off of the tensor product is an equivalence.
Again, we can identify the \(E(E(X))\) part of this expression as belonging to \(\mathcal{UD}_E(X)[1]\), and there is a cross-term \(E(F(X))\) accounting for the shared information with \(F\).
The other term also contains information present in \(\mathcal{UD}_F(X)[1]\) and a cross-term \(F(E(X))\) accounting for shared information with \(E\).
In order to understand how these cross-terms affect the reconstruction process, we are thus drawn to the following objects: \[\sheaf O(\Ucontext{E \vee F}(S^q)[1]) \leftarrow \pi_0 F(E(S^q)) = F_0 \OS{E}{q}.\]
As \(q\) ranges these again form a Hopf ring:
\begin{definition}
We will refer to \(F_0(\OS{E}{0})\) as the \index{Hopf ring!mixed unstable cooperations}\textit{Hopf ring of mixed unstable cooperations} (from \(F\) to \(E\)) or the \index{Hopf ring!topological}\textit{topological Hopf ring} (from \(F\) to \(E\)).
\end{definition}
We thus set about trying to understand the Hopf rings \(F_0(\OS{E}{0})\) in general.
In our computational example in \Cref{UnstableContextsSection}, we found that the topological Hopf ring \(\HFtwo_*(\OS{\HFtwo}{*})\) modeled endomorphisms of the additive formal group after passing to a suitable quotient, and we will take this as inspiration to construct an algebraic model which approximates the topological Hopf ring.
We approach this problem in stages.
To start, note that homotopy elements both of \(F\) and of \(E\) can be used to contribute elements to the topological Hopf ring: an element \(f \in F_0\) begets a natural element \(f \in F_0 \OS{E}{0}\), and an element \(e \in E^0 = \pi_0 \OS{E}{0}\) begets an element \([e] \in F_0 \OS{E}{0}\) by Hurewicz.
The interaction of these rings \(F_0\) and \(E^0\) is captured in the following definition:
\begin{definition}[{\cite[pg.\ 706]{RavenelWilsonKthyOfEMSpaces}}]
Let \(R\) and \(S\) be graded rings.
The \index{Hopf ring!ring--ring}\textit{Hopf ring--ring} \(R[S]\) forms a Hopf ring over \(R\): as an \(R\)--module, it is free and generated by symbols \([s]\) for \(s \in S\), and the ring structure on \(S\) is promoted up a level to become the Hopf ring operations.
Explicitly, the Hopf ring structure maps \(\ast\), \(\circ\), \(\chi\), and \(\Delta\) are determined by the formulas
\begin{align*}
R[S] \otimes_R R[S] & \xrightarrow{\ast} R[S] & [s] \ast [s'] & = [s + s'], \\
R[S] \otimes_R R[S] & \xrightarrow{\circ} R[S] & [s] \circ [s'] & = [s \cdot s'], \\
R[S] & \xrightarrow{\chi} R[S] & \chi [s] & = [-s], \\
R[S] & \xrightarrow{\Delta} R[S] \otimes_R R[S] & \Delta [s] & = [s] \otimes [s], \\
R[S] & \xrightarrow{\eps} R & \eps[s] & = 1.
\end{align*}
\end{definition}
\begin{lemma}[{\cite[pg.\ 706]{RavenelWilsonKthyOfEMSpaces}}]
There are natural maps of Hopf rings \[F_0[E^0] \to F_0(\OS{E}{0}) \to F_0[E^0]\] augmenting the topological Hopf ring over the Hopf ring--ring. \qed
\end{lemma}
Supposing that \(E\) and \(F\) are complex-orientable, we now seek to involve their formal groups.
The construction we are about to undertake is a variation on the proof of \Cref{ConstructionTangentAffineScheme}, which is itself a variation of a more general result in the theory of formal schemes:
\begin{lemma}[{\cite[Proposition 2.94]{StricklandFSFG}}]\label{MappingSchemeStatement}
Let \(X\) and \(Y\) be schemes over \(S = \Spec R\), such that \(\sheaf O_X\) forms a finite and free \(R\)--module.
There is then a mapping scheme \(M\), such that points \(f \in M(A)\) naturally biject with maps \(f\co X \times_S \Spec A \to Y \times_S \Spec A\) of \(A\)--schemes. \qed
\end{lemma}
\noindent The mode of proof of this result is to form the symmetric \(R\)--algebra on the \(R\)--module \(\sheaf O_Y \otimes_R \sheaf O_X^*\), then quotient by the relations encoding multiplicativity of functions and unitality of multiplication.
These are the same steps we will take to form a Hopf ring embodying homomorphisms of formal groups \(\CP^\infty_F \to \CP^\infty_E\).
\begin{definition}[{cf.\ \cite[Lemma 1.12 and Equation 1.17]{RavenelWilsonHopfRingForMU}}]\label{DefnAlgebraicModelOfCoopns}
For a coaugmented \(R\)--coalgebra \(A\) and an \(S\)--algebra \(B\), the \index{Hopf ring!free}\textit{free relative Hopf \(R[S]\)--ring} \(A_{R[S]}[B]\) is generated under the Hopf ring operations by symbols \(a[b]\) for \(a \in A\) and \(b \in B\), thought of as ``\(a \circ [b]\)''.
These are subject to the following rules:
\begin{enumerate}
\item For \(\Delta(a) = \sum_j a'_j \otimes a''_j\), we have \[\Delta(a[b]) = \sum_j (a'_j[b] \otimes a''_j[b]).\]
\item Accordingly, we have \[a [b' + b''] = \sum_j a'_j[b'] \ast a''_j[b''], \quad a [b' b''] = \sum_j a'_j[b'] \circ a''_j[b''].\]
\item Thinking of the antipode as \(\chi(h) = [-1] \circ h\) gives \[\chi(a[b]) = a[-b].\]
\item Lastly, multiplication by zero gives \[a[0] = \eta\eps(a)[0].\]
\enumeratext{Noting the similarity of the second and fourth relations to those imposed in the proof of \Cref{MappingSchemeStatement}, there are two additional families of relations we might consider in the presence of Hopf algebra structures on \(A\) and \(B\):}
\item The dual to the fourth relation is \[(\eta(1))[b] = [\eta\eps(b)].\]
\item The dual to the second relation is more complicated.
For \(a', a'' \in A\) and for \(b \in B\) with diagonal given by \(\Delta(b) = \sum_{j=1}^n b'_j \otimes b''_j\), the dual relation is then \[(a'a'')[b] = \bigast_j \sum_k a_{jk}'[b'_j] \circ a_{jk}''[b''_j],\] where \(\Delta^{n-1} a' = \sum_k a_{1k}' \otimes \cdots \otimes a_{jk}' \otimes \cdots \otimes a_{nk}'\), and similarly for \(a''_{jk}\).
\end{enumerate}
Imposing these additional relations, we call the resulting quotient Hopf ring the \index{Hopf ring!Kronecker}\textit{Kronecker Hopf ring--ring}, and we denote it by \(A_{R[S]}^{\circulatearrows}[B]\).
\end{definition}
\begin{lemma}\label{HopfRingComparisonMap}
There is a natural map \[(F_0 \CP^\infty)_{F_0[E^0]}^{\circulatearrows}[E^0 \CP^\infty] \to F_0(\OS{E}{0}).\]
\end{lemma}
\begin{proof}
For any space \(X\), we construct a \index{Kronecker pairing}Kronecker-type pairing \[\<-,-\>\co F_0 X \times E^0 X \to F_0(\OS{E}{0})\] by composing a class \(f \in F_0(X)\) and a class \(e\co X \to \OS{E}{0}\) to produce an element \(e_*(f) \in F_0(\OS{E}{0})\).%
\footnote{%
This map was considered by Goerss~\cite[Proposition 10.2]{GoerssDieudonne}, who cites Strickland as inspiration.
}
This pairing is ``bilinear'' in the following senses:
\begin{align*}
\<a' + a'', b\> & = \<a', b\> + \<a'', b\>, &
\<f \cdot a, b\> & = f \cdot \<a, b\>, \\
\<a, b' + b''\> & = \sum_j \<a'_j, b'\> \ast \<a''_j, b''\>, &
\<a, e \cdot b\> & = [e] \circ \<a, b\>.
\end{align*}
Universality of the free relative Hopf ring thus gives a Hopf ring map \((F_0 X)_{F_0[E^0]}[E^0 X] \to F_0(\OS{E}{0})\).
Specializing to \(X = \CP^\infty\),%
\footnote{%
In fact, any $H$--space $X$ produces an algebraic approximation, but it is the case $X = \CP^\infty$ where the map tends to be an isomorphism.
}
the factorization of this map through the indicated Hopf ring quotient follows the duality property of this enhanced Kronecker pairing.
Namely, the four maps and their associated diagrams pictured in \Cref{KroneckerPairingFigure} respectively witness the relations
\begin{align*}
\<\Delta_* a, b' \otimes b''\> & = \<a, \Delta^*(b' \otimes b'')\>, &
\<\mu_*(a' \otimes a''), b\> & = \<a' \otimes a'', \mu^* b\>, \\
\<\eps_* 1, b\> & = \<1, \eps^* b\>, &
\<\eta_* 1, b\> & = \<1, \eta^* b\>.
\end{align*}
The Kronecker pairings relate to the K\"unneth isomorphisms for \(F_0(\CP^\infty \times \CP^\infty)\) and \(E^0(\CP^\infty \times \CP^\infty)\) by the product formula \[\<a' \otimes a'', b' \otimes b''\> = \<a', b'\> \circ \<a'', b''\>.\]
Hence, writing \(\Delta_* a = \sum_j a_j' \otimes a_j''\) and \(\mu^* b = \sum_j b'_j \otimes b''_j\), these relations become exactly the four equations
\begin{align*}
\sum_j (a'_j[b'] \circ a''_j[b'']) & = a[b'b''], &
(a' a'')[b] & = \bigast_j \sum_k a_{jk}'[b'_j] \circ a_{jk}''[b''_j], \\
%& & & = \bigast_j (a'[b'_j] \circ a''[b''_j]), \\
(\eta(1))[b] & = [\eta\eps(b)], &
a[\eta(1)] & = \eta\eps(a)[\eta(1)].
\qedhere
\end{align*}
\end{proof}
\begin{figure}
\begin{align*}
(\Delta\co \CP^\infty \to \CP^\infty \times \CP^\infty) & \leadsto
\left(
\begin{tikzcd}[ampersand replacement=\&]
\& F(\CP^\infty \times \CP^\infty) \arrow["F(\omega)"]{r} \& F(\OS{E}{m}) \\
S^n \arrow["\sigma"]{r} \arrow["F(\Delta)_* \sigma"]{ru} \& F(\CP^\infty) \arrow["F(\Delta)"]{u} \arrow["F(\Delta^* \omega)"']{ru}
\end{tikzcd}
\right), \\
(\mu\co \CP^\infty \times \CP^\infty \to \CP^\infty) & \leadsto
\left(
\begin{tikzcd}[ampersand replacement=\&]
S^n \arrow["\sigma"]{r} \arrow["F(\mu)_* \sigma"']{rd} \& F(\CP^\infty \times \CP^\infty) \arrow["F(\mu)"]{d} \arrow["F(\mu^* \omega)"]{rd} \\
\& F(\CP^\infty) \arrow["F(\omega)"]{r} \& F(\OS{E}{m})
\end{tikzcd}
\right), \\
(\eps\co \CP^\infty \to *) & \leadsto
\left(
\begin{tikzcd}[ampersand replacement=\&]
\& F(*) \arrow["F(\omega)"]{r} \& F(\OS{E}{m}) \\
S^n \arrow["\sigma"]{r} \arrow["F(\eps)_* \sigma"]{ru} \& F(\CP^\infty) \arrow["F(\eps)"]{u} \arrow["F(\eps^* \omega)"']{ru}
\end{tikzcd}
\right), \\
(\eta\co * \to \CP^\infty) & \leadsto
\left(
\begin{tikzcd}[ampersand replacement=\&]
S^n \arrow["\sigma"]{r} \arrow["F(\eta)_* \sigma"']{rd} \& F(*) \arrow["F(\eta)"]{d} \arrow["F(\eta^* \omega)"]{rd} \\
\& F(\CP^\infty) \arrow["F(\omega)"]{r} \& F(\OS{E}{m})
\end{tikzcd}
\right).
\end{align*}
\caption{Four topological Kronecker pairing relations.}\label{KroneckerPairingFigure}
\end{figure}
The main theme of this Case Study is that the map considered in the statement of \Cref{HopfRingComparisonMap} is very often an isomorphism (and, in turn, that the theory of formal groups also captures everything about the theory of unstable cooperations).
Because we will be carrying this algebraic model around with us, we pause to give it a name.
\begin{definition}
Motivated by \Cref{HopfRingComparisonMap}, we define for \(F\) and \(E\) ring spectra their \index{Hopf ring!algebraic}\textit{algebraic Hopf ring} \(\AA(F, E)\) (or \index{algebraic approximation|see {Hopf ring!algebraic}}\textit{algebraic approximation}) by \[\AA(F, E) = (F_0 \CP^\infty)_{F_0[E^0]}^{\circulatearrows}[E^0 \CP^\infty].\]
\end{definition}
\begin{lemma}[{\cite[Theorem 3.8]{RavenelWilsonHopfRingForMU}, \cite[Theorem 9.7]{Wilson}}]\label{UnstableRWRelation}
Choosing complex orientations of \(E\) and \(F\), define the following quantities: \(\beta_j\) is dual to the \(j\){\th} power of the coordinate in \(F^* \CP^\infty\), \(\beta(s)\) denotes the formal sum \(\beta(s) = \sum_j \beta_j s^j\),
\begin{align*}
\beta(s +_F t) & = \sum_n \beta_n[1] \left(\sum_{i, j} a_{ij}^F s^i t^j \right)^n, \\
\beta(s) +_{[E]} \beta(t) & = \bigast_{i, j} \left(\beta_0[a_{ij}^E] \circ \left( \sum_k \beta_k[1] s^k \right)^{\circ i} \circ \left( \sum_\ell \beta_\ell[1] t^\ell \right)^{\circ j} \right).
\end{align*}
There is a natural isomorphism of Hopf rings \[\AA(F, E) \cong \frac{(F_0 \CP^\infty)_{F_0[E^0]}[E^0]}{\beta(s +_F t) = \beta(s) +_{[E]} \beta(t)},\] where the equality is imposed term-by-term on the Hopf ring.%
\footnote{%
This relation is often referred to as the Ravenel--Wilson relation.\index{Ravenel--Wilson relation}
}
\end{lemma}
\begin{proof}[Proof sketch]
The orientations of \(E\) and \(F\) give rise to classes \(x^j \in E^0 \CP^\infty\) and \(\beta_k \in F_0 \CP^\infty\), and hence classes \(\beta_k[x^j] \in \AA(F, E)\).
Two of the core relations imposed on this Hopf ring give us two useful identities:
\begin{enumerate}
\item The relation \[\beta_k[x^0] = \eps(\beta_k)[1] = \begin{cases} \beta_0[1] & \text{if \(k = 0\)}, \\ 0 & \text{if \(k \ne 0\)}\end{cases}\] eliminates all elements of this form except \(\beta_0[x^0] = 1\).%
\footnote{%
The dual relation \[\beta_0[x^j] = \beta_0[\eps(x^j)] = \begin{cases} \beta_0[1] & \text{if \(j = 0\)}, \\ \beta_0[0] & \text{if \(j \ne 0\)}\end{cases}\] also cuts down the space of elements, but is not relevant here.
}
\item The relation \[\beta_k[x^{j+1}] = \sum_{k' + k'' = k} \beta_{k'}[x^j] \circ \beta_{k''}[x]\] lets us rewrite these terms as \(\circ\)--products of terms of lower \(j\)--degree and no larger \(k\)--degree.
\end{enumerate}
By consequence, the remaining terms are all sums of \(\circ\)--products of terms of the form \(\beta_k[x]\), so that imposing these relations produces a surjection \[(F_0 \CP^\infty)_{F_0[E^0]}[E^0] \to \AA(F, E).\]
The remaining assertion is a now a matter of imposing the fourth core relation, i.e., a matter of calculating the behavior of \[\CP^\infty \times \CP^\infty \xrightarrow{\mu} \CP^\infty \xrightarrow{x} \OS{E}{0}\] in two different ways: using the effect of \(\mu\) in \(F\)--homology and pushing forward in \(x\), or using the effect of \(\mu\) in \(E\)--cohomology and pushing forward along the Hurewicz map \(\S \to F\).
\end{proof}
We now turn to practicing functorial algebraic geometry with Hopf rings, defining the \textit{Hopf ring spectrum}\index{Hopf ring!spectrum, \(\SpH\)} of a Hopf ring \(H\) using the formula \[(\SpH H)(T) = \CatOf{HopfRings}(H, T).\]
Our goal for the remainder of this Lecture will be to give a (partial) description of the functor \(\SpH \AA(F, E)\).
In order to gain traction on this project, we seek a link with the notions of algebraic geometry that we have introduced so far, and we can find one in the form of a comparison of defintions.
The description of Hopf rings given in \Cref{HopfRingManualDefinition} was very manual, but it admits a repackaging in terms of the category theory used to define rings and ring spectra.
Just as abelian groups form the abelian group objects in \(\CatOf{Sets}\), commutative Hopf \(R\)--algebras form the abelian group objects in \(\CatOf{Coalgebras}_R\).
Both of these categories admit interesting monoidal structures capturing bilinearity: the category of abelian groups acquires a tensor product, and the category of Hopf algebras acquires the \(\boxtimes\)--product~\cite[Section 5]{GoerssDieudonne}.
Commutative algebras for the tensor monoidal structure on abelian groups define commutative rings, and commutative algebras for the \(\boxtimes\)--product define Hopf rings.
We now seek a functor \(\CatOf{HopfAlgebras}_R \to \CatOf{Modules}_R\) which is compatible with the two monoidal structures.
Indeed, we have already brushed up against one in the previous Lecture:
\begin{lemma}[{\cite[Proposition 6.1]{GoerssDieudonne}}]
The functor \[Q^*\co \CatOf{HopfAlgebras}_R \to \CatOf{Modules}_R\] is strongly monoidal: \[Q^*(H \boxtimes_R H') = Q^* H \otimes_R Q^* H'. \pushQED\qed\qedhere\popQED\]
\end{lemma}
\noindent In particular, we learn that \(Q^*\) induces a compatible functor \[Q^*\co \CatOf{HopfRings}_R \to \CatOf{Algebras}_{R/},\] so that we might build our program around it.
The key observation is:
\begin{corollary}
Both functors \(Q^*\) admit right-adjoints as in the diagram
\begin{center}
\begin{tikzcd}
\CatOf{HopfRings}_R \arrow[shift left=0.3em, "Q^*"]{r} \arrow{d} & \CatOf{Algebras}_R \arrow{d} \arrow[shift left=0.3em, "i", densely dotted]{l} \\
\CatOf{HopfAlgebras}_R \arrow[shift left=0.3em, "Q^*"]{r} & \CatOf{Modules}_R, \arrow[shift left=0.3em, "i", densely dotted]{l}
\end{tikzcd}
\end{center}
\end{corollary}
\begin{proof}
We begin at the simpler level of Hopf algebras and abelian groups.
The situation here is clarified by breaking it into two components, unexpected from the perspective of the decomposition of definitions above:
\begin{center}
\begin{tikzcd}
\CatOf{HopfAlgebras}_R \arrow[shift left=0.3em, "U"]{r} & \CatOf{Algebras}_{R/} \arrow[shift left=0.3em, "F"]{l} \arrow[shift left=0.3em, "Q^*"]{r} & \CatOf{Modules}_R \arrow[shift left=0.3em, "j"]{l}.
\end{tikzcd}
\end{center}
The presence of the forgetful functor \(U\) records that the antipode and diagonal play no role in \(Q^*\).
The functor \(j\) sends an \(R\)--module to its square-zero extension, and together \(j\) and \(Q^*\) form an adjoint pair.
The right-adjoint to the forgetful functor is considerably more complex but nonetheless exists~\cite{Fox}.
Category theory then lifts us to the setting of Hopf rings: the right-adjoint to a strongly monoidal functor is lax monoidal, which is enough to preserve algebra objects.
\end{proof}
As a consequence, we deduce that there is a class of test Hopf rings where the Hopf ring spectrum behaves like an object in ordinary algebraic geometry: \[(\SpH H)(iA) = \CatOf{HopfRings}(H, iA) = \CatOf{Rings}(Q^* H, A) = (\Spec Q^* H)(A).\]
Before turning to \(\SpH \AA(F, E)\) itself, we note that \(i\) is an embedding, using the following sequence of generally useful results:
\begin{lemma}\label{ArithmeticInQAst}
For \(H\) a Hopf ring and \(x \in H\), write \(\<x\> = x - \eps(x) \cdot [0]\) for the corresponding element of \(\ker \eps\).
In the \(\ast\)--indecomposable quotient, there are the formulas
\begin{align*}
\<x\>\eps(y) + \eps(x)\<y\> & = \<x \ast y\>, &
\<x\> \circ \<y\> & = \<x \circ y\>.
\end{align*}
\end{lemma}
\begin{proof}
Modulo \(\ast\)--decomposables, we can write
\begin{align*}
0 \equiv \<x\> \ast \<y\> & = x \ast y - x \eps(y) - \eps(x) y + \eps(x) \eps(y) [0] \\
& = \<x \ast y\> - \<x\>\eps(y) - \eps(x)\<y\>.
\end{align*}
We can also directly calculate \[\<x\> \circ \<y\> = x \circ y - \eps(x) \eps(y) [0] - \eps(x) \eps(y) [0] + \eps(x) \eps(y) [0] = \<x \circ y\>. \qedhere\]
\end{proof}
\begin{corollary}\label{QAstAndTensors}
There is an isomorphism \(Q^* R[S] \cong S\).
\end{corollary}
\begin{proof}[Construction]
The inverse to the map \(x \mapsto \<[x]\>\) is given by
\begin{align*}
c\co Q^* R[S] & \to S, \\
\sum_j r_j ([s_j] - [0]) & \mapsto \sum_j r_j \otimes s_j. \qedhere
\end{align*}
\end{proof}
\begin{corollary}\label{iEmbeds}
The functor \(i\) is an embedding.
\end{corollary}
\begin{proof}
From the perspective of \(i\), the Hopf ring-ring \(R[\sheaf O_{\mathbb A^1}]\) plays the role of an affine line: \[(\SpH R[\sheaf O_{\mathbb A^1}])(iA) = (\Spec \sheaf O_{\mathbb A^1})(A) = \mathbb A^1(A) = A.\]
We see that we can functorially recover \(A\) from \(iA\).
\end{proof}
Finally, we turn to \(Q^* \AA(F, E)\) directly, with the goal of explaining the phenomenon uncovered in \Cref{UnstableContextsSection}, where we passed to the \(\ast\)--indecomposables to find the classical ring of functions on the endomorphism scheme of \(\G_a\).
\begin{corollary}
For complex-orientable \(F\) and \(E\), we have\index{formal group!homomorphism}%
\footnote{%
Hill and Hopkins have described the behavior of \(\SpH \AA(H\Z, \MU)\) on (graded) Hopf rings not in the image of \(i\)~\cite[Definition 1.22]{HillHopkins}.
}
\[\Spec Q^* \AA(F, E) \cong \InternalHom{FormalGroups}(\CP^\infty_F, \CP^\infty_E).\]
\end{corollary}
\begin{proof}
This is a matter of calculating \(Q^* \AA(F, E)\), which is possible to do coordinate-freely (using \Cref{HopfRingComparisonMap} and \cite[Proposition 6.15]{StricklandFSFG}), but it is at least as clear to just give in and pick coordinates.
Making such a choice and using \Cref{ArithmeticInQAst}, we abbreviate \(\<\beta_0[a_{ij}^E]\>\) to \(\<a_{ij}^E\>\) and \(\beta_j[1]\) to \(\beta_j\) to form \[\bigast_{i, j} \left(\left\langle a_{ij}^E\right\rangle \circ \left( \sum_k \beta_k s^k \right)^{\circ i} \circ \left( \sum_\ell \beta_\ell t^\ell \right)^{\circ j} \right) \equiv \sum_{i, j} a_{ij}^E \left( \sum_k \beta_k s^k \right)^i \left( \sum_\ell \beta_\ell t^\ell \right)^j \tag{in \(Q^*\)},\] from which it follows that \[Q^* \AA(F, E) = \left. (F_* \otimes E_*)[\beta_0, \beta_1, \beta_2, \ldots] \middle/ \left( \beta(s +_F t) = \beta(s) +_E \beta(t) \right) \right. . \qedhere\]
\end{proof}
\begin{remark}
Using the equivalence \(\CP^1 \simeq \S^2\), the \index{homology suspension}homology suspension element \(e_2\) is modeled by \(\beta_1\).
It follows immediately that the stable algebraic approximation \(\Spec (Q^* \AA(F, E))[\beta_1^{-1}]\) models the scheme of formal group isomorphisms \(\InternalHom{FormalGroups}(\CP^\infty_F, \CP^\infty_E)^{\mathrm{gpd}}\).
\end{remark}
\begin{remark}
In the unmixed case of \(E = F\), as we saw in the computational example in \Cref{UnstableContextsSection}, the algebraic Hopf ring \(\AA(E, E)\) picks up an extra diagonal corresponding to the composition of formal group endomorphisms of \(\CP^\infty_E\), and the resulting pair \((\Spec E_0, \underline{\operatorname{End}}(\CP^\infty_E))\) forms a category scheme.
This observation has been fully expanded in plain language by Boardman, Johnson, and Wilson~\cite[Section 10]{BJW}.
In the mixed case, these schemes act by pre- and post-composition on the classical part of the mixed algebraic Hopf ring \(\Spec Q^* \AA(F, E)\), and in fact these actions appear as part of the structure maps in the unstable context \(\Ucontext{E \vee F}\) described at the beginning of this Lecture.
This description is also compatible with pulling back to the stable context \(\context{E \vee F}\): it is exactly the inclusion of the simplicial subobject consisting of the formal group isomorphisms and automorphisms.
However, these induced structures \emph{at the level of mixed Hopf rings themselves} seem under-studied in the current literature (although, cf.\ \cite[Remark 2.6]{HopkinsHunton}).
\end{remark}
\section{Unstable cooperations for complex bordism}\label{COableCoopnsII}
\begin{center}
\textbf{Convention: We will write \(H\) for \(\HFp\) for the duration of the lecture.}%
\footnote{%
In fact, \(\F_p\) can be replaced by any field \(k\) of positive characteristic \(p\).
}
\end{center}
Our theme for the rest of this Case Study is that the comparison map \[\AA(F, E) \to F_* \OS{E}{*}\] of \Cref{HopfRingComparisonMap} is often an isomorphism.
In this Lecture, we begin by investigating the very modest and concrete setting of \(F = H = \HFp\) and \(E = BP\), simply because it is the least complicated choice after the unstable Steenrod algebra: the spectrum \(H\) has K\"unneth isomorphisms, and the formal group law associated to \(BP\) has a very understandable role.
Our goal is to prove the following Theorem:
\begin{theorem}[{\cite[Theorem 4.2]{RavenelWilsonHopfRingForMU}}]\label{HFpBPCooperationsTheorem}
The natural homomorphism \[\AA(H, BP) \to H_* \OS{BP}{2*}\] is an isomorphism.
(In particular, \(H_* \OS{BP}{2*}\) is even--concentrated.)
\end{theorem}
\noindent Again, because we are working through a computation, we rest on the graded form of homology.
This result is proved by a fairly elaborate counting argument: the rough idea is to show that the topological Hopf ring is polynomial, the comparison map is surjective (or, equivalently, it is surjective on \(\ast\)--indecomposables), and the graded ranks of both objects arrange themselves so that the map then has no choice but to be an isomorphism.
Our first move will thus be to produce an upper bound for the size of the source Hopf ring.
To begin, recall the following consequence of \Cref{QAstAndTensors}:
\begin{corollary}
As an algebra under the \(\circ\)--product,
\[\pushQED{\qed}
Q^* H_*[BP^*] \cong \F_p[\<v_n\> \mid n \ge 1]. \qedhere
\popQED\]
\end{corollary}
\noindent From \Cref{UnstableRWRelation}, we now know that \(Q^* \AA(H, BP)\) is generated by \(\<v_n\>\) for \(n \ge 1\) and \(\beta_j \in H_{2j} \OS{BP}{2}\), \(j \ge 0\).
In fact, \index{p typical@\(p\)--typical}\(p\)--typicality shows~\cite[Lemma 4.14]{RavenelWilsonHopfRingForMU} that it suffices to consider \(\beta_{p^d} = \beta_{(d)}\) for \(i \ge 0\).
Altogether, this gives a secondary comparison map \[A := \F_p[\<v_n\>, \beta_{(d)} \mid n > 0, d \ge 0] \onto Q^* \AA(H, BP).\]
Although this map is onto it is not an isomorphism, as these elements are subject to the following relation:
\begin{lemma}[{\cite[Lemma 3.14]{RavenelWilsonHopfRingForMU}, \cite[Theorem 9.13]{Wilson}}]
Take \(n\) to be an integer, and set \(I = (\<p\>, \<v_1\>, \<v_2\>, \ldots)\).
In \(Q^* \AA(H, BP) / I^{\circ 2} \circ Q^* \AA(H, BP)\), we have the relation \[\sum_{i=1}^n \<v_i\> \circ \<\beta_{(n-i)}^{\circ p^i}\> \equiv 0.\]
\end{lemma}
\begin{proof}
Since the group law on \(\CP^\infty_H\) is additive, the \index{Ravenel--Wilson relation}Ravenel--Wilson relation for the Hopf ring \(p\)--series specializes to \([p]_{[BP]}(\beta(s)) = \beta(ps)\).%
\footnote{%
We are very sorry for the collision of \([p]_{BP}\) the \(p\)--series, \([p]_{[BP]}\) the fancy Hopf ring \(p\)--series, and \([p]\) the symbol in the Hopf ring induced from the element \(p \in BP_0\).
The fancy \(p\)--series won't linger for long, and we will always differentiate them with the relevant subscript.
}
From \Cref{pTypLogGivesNicePSeries}, we deduce the relation \[[p]_{BP}(s) \equiv \sum_{j \ge 0} v_j s^{p^j} \pmod{(p, v_1, v_2, \ldots)^2}.\]
These combine to give \[\beta_0 = \beta(0) = \beta(ps) = [p]_{[BP]}(\beta(s)) \equiv \bigast_{j \ge 0} ([v_j] \circ \beta(s)^{\circ p^j}) \pmod{I^{\circ 2}}.\]
Passing to \(Q^*\), we join \Cref{ArithmeticInQAst} to the identity \([p] \circ \beta(s) \equiv \beta_0\) to deduce \[0 \equiv \sum_{j > 0} \<v_j\> \circ \left\langle\beta(s)^{\circ p^j}\right\rangle.\]
The coefficient of \(s^{p^n}\) gives the identity claimed.
\end{proof}
Let \(r_n\), the \(n\){\th} relation, denote the same sum taken in \(A\) instead: \[r_n := \sum_{i=1}^n \<v_i\> \circ \left\langle\beta_{(n-i)}^{\circ p^i}\right\rangle \in A.\]
The Lemma then shows that the image of \(r_n\) in \(Q^* \AA(H, BP)\) is \(\ast\)--decomposable.
Our stated goal is to show that these relations cut \(A\) down to exactly the right size, and this task would be easiest if the quotient were by a regular ideal.
\begin{lemma}[{\cite[Lemma 4.15]{RavenelWilsonHopfRingForMU}}]
The sequence \((r_1, r_2, \ldots) \in A\) is regular.
\end{lemma}
\begin{proof}
Our approach is intricate but standard.
We seek to show that \(J = (r_1, r_2, \ldots, r_n)\) is regular for every \(n\), and we accomplish this by interpolation.
Fixing a particular \(n\), define the intermediate ideals \[J_j = (r_n, r_{n-1}, \ldots, r_{n-j+1}),\] as well as the intermediate rings
\begin{align*}
A_j & = A / (\beta_{(0)}, \ldots, \beta_{(n-j-1)}), &
B_j & = \beta_{(n-j)}^{-1} A_j.
\end{align*}
Noting that \(A_n = A\) and \(J_n = J\), we will inductively show that \(J_j\) is a regular ideal of \(A_j\).
The case \(j = 1\) is simple: \(J_1\) is a nonzero principal ideal in a ring without zerodivisors, so it must be regular.
Assume the inductive result holds below some index \(j\).
In the quotient sequence \[0 \to \Susp^{|\beta_{(n-j)}|} A_j \xrightarrow{\beta_{(n-j)}} A_j \to A_{j-1} \to 0,\] the degree shift in the multiplication map (and induction on degree) shows that if \(J_{j-1}\) is regular on \(A_{j-1}\), then \(J_{j-1}\) is automatically regular on \(A_j\).
If we additionally prove that \(J_{j-1}\) is prime in \(A_j\) and that \(r_{n-j+1} \ne 0\) in the quotient, then \(A_j / J_{j-1}\) would be an integral domain, multiplication by \(r_{n-j+1}\) would be injective, and we would be done.
In the degree \(|r_{n-j+1}|\) of interest, there is an isomorphism \((A)_{|r_{n-j+1}|} \cong (A_j / J_{j-1})_{|r_{n-j+1}|}\), and hence \(r_{n-j+1} \ne 0\) as desired.
We thus turn to primality.
Note first that \(J_{j-1}\) is automatically prime in \(B_j\), since \(B_j\) is a polynomial \(\F_p[\beta_{(n-j)}^\pm]\)--algebra and each of the generators of \(J_{j-1}\) is one of these polynomial generators of \(B_j\).
Suppose for contradiction that \(J_{j-1}\) is not prime in \(A_j\), as witnessed by some elements \(x, y \not\in J_{j-1}\) satisfying \(xy \in J_{j-1}\).
Since \(J_{j-1}\) \emph{is} prime in \(B_j\), (by perhaps trading \(x\) and \(y\)) there is some minimum \(k > 0\) such that \[\beta_{(n-j)}^{\circ k} \circ x \in J_{j-1}.\]
We may as well assume \(k = 1\), which we can arrange by tucking the stray factors of \(\beta_{(n-j)}\) into \(x\).
Invoking the generators of \(J_{j-1}\), we thus have an equation \[\beta_{(n-j)} \circ x = \sum_{i = 1}^{j-1} a_i \circ r_{n-i+1}\] with \(a_i \in A_j\) not all divisible by \(\beta_{(n-j)}\).
In fact, by moving elements onto the left-hand side we can assume that if \(a_i \ne 0\) then \(a_i \not\in J_{i-1}\).
In \(A_{j-1}\), this equation becomes \[0 = \sum_{i=1}^{j-1} a_i \circ r_{n-i+1}\] with \(a_i\) not all in \(J_{i-1}\).
This is the desired contradiction, since \(J_{j-1}\) is regular in \(A_{j-1}\) by inductive hypothesis.
\end{proof}
\begin{corollary}
Set
\begin{align*}
c_{i,j} & = \dim_{\F_p} Q^* \AA(H, BP)_{(2i, 2j)}, &
d_{i,j} & = \dim_{\F_p} \F_p[\<v_n\>, \beta_{(0)}]_{2i,2j}.
\end{align*}
Then \(c_{i,j} \le d_{i,j}\) and \(d_{i,j} = d_{i+2,j+2}\).
\end{corollary}
\begin{proof}
We have seen that \(c_{i,j}\) is bounded by the \(\F_p\)--dimension of \[\left[\F_p[\<v_n\>, \beta_{(d)} \mid d \ge 0, n \ge 0] / (r_1, r_2, \ldots)\right]_{i,j}.\]
But, since this ideal is regular and \(|r_j| = |\beta_{(j)}|\), this is the same value as \(d_{i,j}\).
The other relation among the \(d_{i,j}\) follows from multiplication by \(\beta_{(0)}\), with \(|\beta_{(0)}| = (2, 2)\).
\end{proof}
We now turn to showing that this estimate is \emph{sharp} and that the secondary comparison map is \emph{onto}, and hence an isomorphism, using the bar spectral sequence.
Recalling that the bar spectral sequence converges to the homology of the \emph{connective} delooping, let \(\OS{BP}{2*}'\) denote the connected component of \(\OS{BP}{2*}\) containing \([0_{2*}]\).
We will then demonstrate the following theorem inductively:
\begin{theorem}[{\cite[Induction 4.18]{RavenelWilsonHopfRingForMU}}]\label{HFpBPCooperationsInduction}
The following hold for all values of the induction index \(k\):
\begin{enumerate}
\item \(Q^* H_{\le 2(k-1)} \OS{BP}{2*}'\) is generated by \(\circ\)--products of the \(\<v_n\>\) and \(\beta_{(j)}\).
\item \(H_{\le 2(k-1)} \OS{BP}{2*}'\) is isomorphic to a polynomial algebra in this range.
\item For \(0 < i \le 2(k-1)\), we have \(d_{i,j} = \dim_{\F_p} Q^* H_i \OS{BP}{2j}\).
\end{enumerate}
\end{theorem}
\noindent Before addressing the Theorem, we show that this finishes our calculation:
\begin{proof}[{Proof of \Cref{HFpBPCooperationsTheorem}, assuming \Cref{HFpBPCooperationsInduction} for all \(k\)}]
Recall that we are considering the natural map \[\AA(H, BP) \to H_* \OS{BP}{2*}.\]
The first part of \Cref{HFpBPCooperationsInduction} shows that this map is a surjection.
The third part of \Cref{HFpBPCooperationsInduction} together with our counting estimate shows that the induced map \[Q^* \AA(H, BP) \to Q^* H_* \OS{BP}{2*}\] is an isomorphism.
Finally, the second part of \Cref{HFpBPCooperationsInduction} says that the original surjective map, before passing to \(\ast\)--indecomposables, targets a polynomial algebra and is an isomorphism on indecomposables, hence must be an isomorphism as a whole.
\end{proof}
\begin{proof}[{Proof of \Cref{HFpBPCooperationsInduction}}]
The infinite loopspaces in \(\OS{BP}{2*}\) are related by \[\Loops^2 \OS{BP}{2(*+1)}' = \OS{BP}{2*},\] so we will use two \index{bar spectral sequence}bar spectral sequences to extract information about \(\OS{BP}{2(*+1)}'\) from \(\OS{BP}{2*}\).
Since we have assumed that \(H_{\le 2(k-1)} \OS{BP}{2*}\) is polynomial in the indicated triangular range near zero, we know that in the first spectral sequence \[E^2_{*, *} = \Tor^{H_* \OS{BP}{2*}}_{*, *}(\F_p, \F_p) \Rightarrow H_* \OS{BP}{2*+1}\] the \(E^2\)--page is, in the same range, exterior on generators in \(\Tor\)--degree \(1\) and topological degree one higher than the generators in the polynomial algebra.
Since differentials lower \(\Tor\)--degree, the spectral sequence is multiplicative, and there are no classes on the \(0\)--line, it collapses in the range \([0, 2k-1]\).
Additionally, since all the generating classes are in odd topological degree, there are no algebra extension problems, and we conclude that \(H_* \OS{BP}{2*+1}\) is indeed exterior up through degree \((2k-1)\).
We now consider the second bar spectral sequence \[E^2_{*, *} = \Tor^{H_* \OS{BP}{2*+1}}_{*, *}(\F_p, \F_p) \Rightarrow H_* \OS{BP}{2(*+1)'}.\]
The \(\Tor\) algebra of an exterior algebra is divided power on a class of topological dimension one higher.
Since these classes are now all in even degrees, the spectral sequence collapses in the range \([0, 2k]\).
Additionally, these primitive classes are related to the original generating classes by double suspension, i.e., by forming the \(\circ\)--product with \(\beta_{(0)}\).
This shows the first inductive claim on the \emph{primitive classes} through degree \(2k\), and we must argue further to deduce our generation result for \(x^{[p^j]}\) of degree \(2k\) with \(j > 0\).
By inductive assumption, we can write \[x = \sum_I \<y_I\> \circ \beta_{(0)}^{\circ I_0} \circ \beta_{(1)}^{\circ I_1} \circ \cdots,\] and it suffices to treat the case where the sum has just one term.
Aiming to understand \(x^{[p^j]}\), one might be divinely inspired to consider the element \[z := \<y_I\> \circ \beta_{(j)}^{\circ I_0} \circ \beta_{(j+1)}^{\circ I_1} \circ \cdots.\]
This element \(z\) isn't equal to \(x^{[p^j]}\) on the nose, but the coproduct of \(z - x^{[p^j]}\) can be manually calculated to in lower filtration degree, so that \(z \equiv x^{[p^j]}\) holds modulo filtration degree in the bar spectral sequence.
Since \(z\) itself is defined as a \(\circ\)--product, the full inductive claim follows.
The remaining thing to do is to use the size bounds: the only way that the map \[\AA(H, BP) \to H_* \OS{BP}{2*}\] could be surjective is if there were multiplicative extensions in the spectral sequence joining \(x^{[p]}\) to \(x^p\).
Granting this, we see that the module ranks of the algebra itself and of its indecomposables are exactly the right size to be a free (i.e., polynomial) algebra, and hence this must be the case by \index{Milnor--Moore}Milnor--Moore.
\end{proof}
We have actually accomplished quite a lot in proving \Cref{HFpBPCooperationsTheorem}, as this forms the input to an Atiyah--Hirzebruch spectral sequence.
\begin{corollary}[{Ravenel--Wilson Theorem, \cite[Corollary 4.7]{RavenelWilsonHopfRingForMU}}]\label{HopfRingForEBP}
For any complex-orientable cohomology theory \(E\), the natural approximation maps give isomorphisms of Hopf rings%
\footnote{%
In the case \(E = MU\), we actually have brushed against this before: the formulas leading to \Cref{AjAndBjAreInTheFGLSubring} look suspiciously like formal group homomorphisms with prescribed kernels.
We explore this observation more seriously in \Cref{PowerOpnsSection}.
}
\begin{align*}
\AA(E, MU) & \xrightarrow{\simeq} E_* \OS{MU}{2*}, &
\AA(E, BP) & \xrightarrow{\simeq} E_* \OS{BP}{2*}.
\end{align*}
\end{corollary}
\begin{proof}
The case of \(E = \HFp\) is \Cref{HFpBPCooperationsTheorem}.
Since \(\HFp_* \OS{BP}{2*}\) is even, it follows that \(H\Z_{(p)}{}_* \OS{BP}{2*}\) is torsion--free on a lift of a basis; that \(H\Z_{(p)}{}_* \OS{MU}{2*}\) is also torsion--free on a lift of a basis; and that \(H\Z_* \OS{MU}{2*}\) is as well.
Next, these properties trivialize the Atiyah--Hirzebruch spectral sequence governing \(MU_* \OS{MU}{2*}\), so the theorem holds in this case too.
Finally, using naturality of the Atiyah--Hirzebruch spectral sequence, given a complex-orientation \(MU \to E\) we deduce that the spectral sequence \[E_* \otimes H_*(\OS{MU}{2*}; \Z) \cong E_* \otimes_{MU_*} MU_* \OS{MU}{2*} \Rightarrow E_* \OS{MU}{2*}\] collapses, and similarly for the case of \(BP\).
\end{proof}
This is an impressively broad claim: the loopspaces \(\OS{MU}{2*}\) are quite complicated, and that any general statement can be made about them is remarkable.
That this fact follows from a calculation in \(\HFp\)--homology and some niceness observations is meant to showcase the density of \(\CP^\infty_H \cong \G_a\) inside of \(\moduli{fg}\).%
\footnote{%
Equivalently: the convergence of Postnikov towers.
}%
\footnote{%
It is worth pointing out that the success of this calculation is misleading as to how difficult unstable calculations can be.
For instance, the open Johnson--Yosimura conjecture states that for a space \(X\) and \(x \in BP_n(X)\) a \(BP\)--homology class, \(x\) is \(v_n\)--torsion-free~\cite[pg.\ 37]{Wilson}.
It is also conjectured that if \(y \in BP\langle n \rangle_s(X)\) is a nonzero \(v_n\)--torsion-element of a space $X$, then \(s < \dim(X)\)~\cite[Question 6.11]{JohnsonWilsonProjDim}.
Even related stable conjectures are unsettled: for \(\S^m \to X \to Y\) a cofibration of finite complexes with \(BP_*(X)\) of homological dimension less than \(n\), it is conjectured that the homological dimension of \(BP_*(Y)\) is less than \(n+1\)~\cite[Conjecture 6.8]{JohnsonWilsonProjDim}.
}
\begin{remark}
The analysis of the first bar spectral sequence in the proof of \Cref{HFpBPCooperationsInduction} also gave us a description of \(H_* \OS{BP}{2*+1}\), which is not directly visible to \(\AA(H, BP)\).
Namely, the Hopf ring \(H_* \OS{BP}{*}\) can be presented as \[H_* \OS{BP}{*} \xleftarrow{\simeq} \AA(H, BP)[e] / (e^{\circ 2} = \beta_{(0)}),\] with \index{homology suspension}\(e\) of degree \((1, 1)\).
Additionally, analyzing the cohomological bar spectral sequence (and noting that the dual of a divided power algebra is a polynomial algebra) shows that each \(H_* \OS{BP}{2*}\) forms a \index{Hopf algebra!bipolynomial}\textit{bipolynomial Hopf algebra}---i.e., both it and its dual are polynomial algebras.
These bipolynomial algebras also play a critical role in the next two sections.
\end{remark}
\begin{remark}[{\cite{Chan}, \cite[Section 10]{Wilson}}]
There is an alternative proof that \(H_* \OS{BP}{2q}\) forms a bipolynomial Hopf algebra for each choice of \(q\) that makes no reference to Hopf rings.
It proceeds along very similar lines, as it also studies the iterated bar spectral sequence, but it proceeds entirely by counting: the elements in the spectral sequence are never given explicit names, and hence it gives no real hope of understanding the functor \(\SpH H_* \OS{BP}{2*}\).
By contrast, the Ravenel--Wilson method can be used to give an explicit enumeration of these classes~\cite[Section 5]{RavenelWilsonHopfRingForMU}.
Our presentation here is something of a compromise.
\end{remark}
\begin{remark}\label{WilsonSpaces}
\index{Wilson space}The identification of the \(p\)--local and mod--\(p\) homology and cohomology of \(\OS{BP}{2q}\) as a bipolynomial Hopf algebra was first accomplished by Wilson in his PhD thesis~\cite[Theorem 3.3]{WilsonThesisI}.
He deduces quite a lot of interesting results from this observation.
For instance, each bipolynomial Hopf algebra can be shown to split as a tensor product of indecomposable such~\cite[Proposition 3.5]{WilsonThesisI}, and this splitting is reflected by a splitting of \(\OS{BP}{2q}\) into a product of indecomposable \(H\)--spaces.
Remarkably, these indecomposable spaces can themselves be identified.
For each \(n\) there is a ring spectrum \(BP\<n\>\) over \(BP\) with homotopy presented by the subalgebra \(\pi_* BP\<n\> = \Z_{(p)}[v_1, \ldots, v_n]\).
This spectrum is \emph{not} uniquely specified, a reflection of the algebraic failure of the ideal \((v_{n+1}, v_{n+2}, \ldots)\) to be invariant, and so this resists formal-geometric interpretation (cf., however, \cite{AngeltveitLind}, \cite{LawsonNaumann}, \cite{StricklandProductsOnModules}, \ldots).
Nonetheless, using Steenrod module techniques Wilson shows~\cite[Section 6]{WilsonThesisII} that every simply-connected \(p\)--local \(H\)--space with homotopy and (\(p\)--local ordinary) homology both
free over \(\Z_{(p)}\) splits into a product of spaces \(Y_q\), and that \(Y_q = \OS{BP\<n\>}{q}\) for \(|v_n| < q(p-1) \le |v_{n+1}|\).
In particular, the spaces \(\OS{BP\<n\>}{q}\) in these bands \emph{are} independent of choice of parent spectrum \(BP\<n\>\), and all \(p\)--local \(H\)--spaces satisfying these freeness properties are automatically infinite loopspaces---extremely surprising results.
\end{remark}
\section{Dieudonn\'e modules}\label{SectionDieudonneModules}
Our goal in this Lecture is to give a compact presentation of formal groups based on the following observation: the category of commutative cocommutative Hopf algebras of finite type over a ground field \(k\) forms an abelian category.
It follows abstractly that this category admits a presentation as a full subcategory of the module category for some (possibly noncommutative) ring, but in fact this ring and the assignment from a group scheme to linear algebraic data can both be described explicitly.
This is the subject of \textit{Dieudonn\'e theory}, and we will give an overview of some of its main results, including two different presentations of the equivalence.%
\footnote{%
Emphasis on ``\emph{some of its results}''.
Dieudonn\'e theory is an enormous subject with many interesting results both internal and connected to arithmetic geometry and the theory of abelian varieties.
We will explore almost none of this.
}
In the first presentation, we follow notes by Weinstein~\cite[Lecture 1]{Weinstein}.
Begin with a \(1\)--dimensional formal group \(\G\) over a ring \(A\), and recall that we have previously been interested in the invariant differentials \(\omega_{\G} \subseteq \Omega^1_{\G/A}\) on \(\G\).
As explored in \Cref{RationalFGLsHaveLogarithms}, when \(A\) is a \(\Q\)--algebra such differentials give rise to logarithms through integration.
On the other hand, if \(A\) has positive characteristic \(p\) then there is a potential obstruction to integrating terms with exponents congruent to \(-1 \pmod p\), and in \Cref{MfgII:LargeScales} we used this to lead us to the notion of \(p\)--height.
We now explore a third twist on this set-up, recalling that \(\Omega^1_{\G/A}\) forms the first level of the \index{de Rham complex}\textit{algebraic de Rham complex} \(\Omega^*_{\G/A}\).
The group operation and two projections
\begin{align*}
\mu, \pi_1, \pi_2\co & \G \times \G \to \G \\
\intertext{induce maps}
\mu^*, \pi_1^*, \pi_2^*\co & C_{dR}^1(\G/A) \to C_{dR}^1(\G \times \G / A).
\end{align*}
The translation invariant differentials are exactly those in the kernel of \(\mu^* - \pi_1^* - \pi_2^*\), as considered at the chain level.
We can weaken this to request only that that difference be \emph{exact}, or zero at the level of cohomology of the de Rham complex.
\begin{definition}
The \index{Kahler differentials@K\"ahler differentials!cohomologically invariant}\textit{cohomologically translation invariant differentials} constitute the \(A\)--submodule \(PH^1_{dR}(\G/A) \subseteq H^1_{dR}(\G/A)\) defined as the kernel of \(\mu^* - \pi_1^* - \pi_2^*\).%
\footnote{%
The symbol ``$P$'' here denotes the primitives.
Using the identity $\mu^* = \Delta$, the equation $\Delta(x) = x \otimes 1 + 1 \otimes x$ holds if and only if $x$ lies in the kernel of this operator.
}
\end{definition}
\begin{example}[{\cite[Lemma 5.1.2]{Katz}}]
Consider the case that \(A\) is torsion-free, and set \(B = A \otimes \Q\) so that \(A \to B\) is an injection.
In this case the differentiation map \(x A\ps{x} \to A\ps{x}\) is an injection and integration of power series is possible in \(B\), so we can re-express first the definition of \(H^1_{dR}\) and second the conditions on our algebraic differentials in the following diagram of exact rows:
\begin{center}\vspace{-0.8\baselineskip}
\begin{tikzcd}[column sep=0.5em]
0 \arrow{r} & \left\{\begin{array}{c}\text{integrals} \\ \text{with \(A\)} \\ \text{coeff\textsuperscript{s}}\end{array}\right\} \arrow{r} \arrow[equal]{d} & \left\{\begin{array}{c}\text{all formal integrals} \\ \text{of differentials} \\ \text{defined over \(A\)}\end{array}\right\} \arrow{r} \arrow[equal]{d} & \left\{\begin{array}{c}\text{missing} \\ \text{integrals}\end{array}\right\} \arrow{r} \arrow[equal]{d} & 0 \\
0 \arrow{r} & x A\ps{x} \arrow{r} & \{f \in x B\ps{x} \mid \mathrm{d}f \in A\ps{x}\dx\} \arrow{r}{\mathrm{d}} & H^1_{dR}(\G/A) \arrow{r} & 0 \\
0 \arrow{r} & x A\ps{x} \arrow{r} \arrow[equal]{u} & \left\{ f \in x B\ps{x} \middle| \begin{array}{c} \mathrm{d}f \in A\ps{x}\dx, \\ \delta f \in A\ps{x,y} \end{array} \right\} \arrow{u} \arrow{r}{\mathrm{d}} & PH^1_{dR}(\G/A) \arrow{r} \arrow{u} & 0,
\end{tikzcd}
\end{center}
where \(x\) is a coordinate on \(\G\), and \(\delta\) is defined by \(\delta f = (\mu^* - \pi_1^* - \pi_2^*)f\).
\end{example}
% \begin{lemma}
% In the case that \(\G\) is \(p\)--divisible, there is an exact sequence \[0 \to \omega_{\G} \to D(\G/A) \to \operatorname{Lie} \G^\vee \to 0.\]
% \end{lemma}
% \begin{remark}
% Let \(A\) be a complex abelian variety, in which case there is a classical Hodge decomposition \[0 \to H^0(A; \Omega^1) \to H^1_{dR}(A; \C) \to H^1(A; \sheaf O_A) \to 0.\]
% The first term agrees with invariant differentials, and the second term agrees with \(\operatorname{Lie} A^\vee\).
% \end{remark}
The flatness condition is not satisfied when working over a perfect field of positive characteristic \(p\)---our favorite setting in \Cref{MfgII:LargeScales} and \Cref{ChapterFiniteSpectra} more generally---and without it we cannot make the identifications in the Example.
However, de Rham cohomology has the following remarkable lifting property (which we have written here after specializing to \(H^1_{dR}\)):
\begin{theorem}[{\index{Poincar\'e Lemma}Poincar\'e Lemma; \cite[Key Lemma 5.1.3]{Katz}}]
Let \(A\) be a \(p\)--local torsion-free ring, and let \(f_1(x), f_2(x) \in x A\ps{x}\) be power series without constant term.
If \(f_1 \equiv f_2 \pmod{p}\), then for any differential \(\omega \in A\ps{x} dx\) the difference \(f_1^*(\omega) - f_2^*(\omega)\) is exact.
\end{theorem}
\begin{proof}
Write \(\omega = dg\) for \(g \in B\ps{x}\), and write \(f_2 = f_1 + p\Delta\).
Then
\begin{align*}