-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsigma.tex
More file actions
2147 lines (1873 loc) · 166 KB
/
sigma.tex
File metadata and controls
2147 lines (1873 loc) · 166 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{The \texorpdfstring{\(\sigma\)}{sigma}-orientation}\label{ChapterSigmaOrientation}
By this point, we have seen a great many ways that algebraic geometry exerts control over the behavior of homotopy theory, stable and unstable.
The goal in this Case Study is to explore a setting where algebraic geometry is itself tightly controlled: whereas the behavior of formal groups is quite open-ended, the behavior of \emph{abelian varieties} is comparatively strict.
We import this strictness into algebraic topology by studying complex-orientable cohomology theories \(E\) which have been tagged with an auxiliary abelian variety \(A\) and an isomorphism \(\phi\co \CP^\infty_E \cong A^\wedge_0\).
In the case that \(A\) is an elliptic curve, this is our definition of an \textit{elliptic cohomology theory}.
The idea, then, is not that this puts serious constraints on the formal group \(\CP^\infty_E\) (although it does place some), but rather that the theory of abelian varieties endows \(A\), and hence \(A^\wedge_0\), with various bits of preferred data.
This is the tack we take to construct a \emph{canonical} \(MU[6, \infty)\)--orientation of \(E\): for any complex-orientable \(E\), we identify the collection of such ring maps with ``\(\Theta\)--structures on \(\CP^\infty_E\)''; a basic theorem about abelian varieties endows the elliptic curve \(A\) with a canonical such structure; and altogether this yields the desired orientation for an elliptic spectrum.
Making the identification of \(MU[6, \infty)\)--orientations with \(\Theta\)--structures requires real work, but many of the stepping stones are now in place.
We begin with a technical section about especially nice formal schemes, called \textit{coalgebraic}, and we use this to finally give the proof, announced back in \Cref{DivConstructionsAreFree}, that the scheme of stable Weil divisors on a formal curve presents the free formal group on that curve.
With that out of the way and with \(MU[6, \infty)\) in mind as the eventual goal, we then summarize the behavior of the part of the Postnikov tower for complex bordism that we \emph{do} understand---the cases of \(\MUP\) and \(MU\)---and use this to make an analysis of \(M\SU\).
In particular, we rely heavily on the results from \Cref{ComplexBordismChapter} and \Cref{ChapterFiniteSpectra} to understand the co/homological behaviors of \(BU \times \Z\), \(BU\), \(\MUP\), and \(MU\), which we employ as traction in understanding \(BSU\) and \(MSU\).
The coherence of all of these statements gives us very explicit target theorems to aim for in our study of \(MU[6, \infty)\), but we are forced to approach them from a different vantage point: whereas we can prove a splitting principle for \(\SU\)--bundles, the analogous statement for \(U[5, \infty)\)--bundles does not appear to admit a direct proof.
Consequently, the proofs of the other structure theorems for \(BU[6, \infty)\) and \(MU[6, \infty)\) are made considerably more complicated because we have to work with our splitting principle hands tied.
Instead, our main tools are the results developed in \Cref{UnstableCooperationsChapter}, which give us direct access to the co/homology of the layers of the Postnikov tower.
When the dust of all this settles, we will have arrived at a very satisfying and complete theory of \(MU[6, \infty)\)--orientations, applicable to an arbitrary complex-orientable cohomology theory.
The reader gifted with an exceptional attention span will recall from the Introduction that we were \emph{really} interested in \(M\String\)--orientations, and that our interest in \(MU[6, \infty)\)--orientations was itself only a stepping stone.
We close this Case Study with an analysis of this last setting, where we finally yield and place more hypotheses on \(E\)---a necessity for gaining calculational access to co/homological behavior of objects like \(B\String\), which lie outside of the broader complex-orientable story.
We also give a short r\'esum\'e on the theory of elliptic curves in \Cref{SectionEllipticCurvesAndThetaFunctions}, extracting the smallest possible subset of their theory that we will need here.
\section{Coalgebraic formal schemes}
We will now finally address a point that we have long let slide: in the first third of this book we were primarily interested in the formal scheme associated to the \emph{cohomology} of a space, but in the second third we were primarily interested in a construction converting the \emph{homology} of a spectrum to a sheaf over a context.
Our goal for this Lecture is to, when possible, put these two variances on even footing.
Our motivation for putting this lingering discrepancy to rest is more technical than aesthetic: we have previously wanted access to certain colimits of formal schemes (e.g., in \Cref{DivConstructionsAreFree}).
While such colimits are generally forbidding, similarly to colimits of manifolds, we will in effect produce certain conditions under which they are accessible.
For \(E\) a ring spectrum and \(X\) a space, the diagonal map \(\Delta\co X \to X \times X\) induces a multiplication map on \(E\)--cohomology via the composite \[E^* X \otimes_{E^*} E^* X \xrightarrow{\text{K\"unneth}} E^*(X \times X) \xrightarrow{E^* \Delta} E^* X.\]
Dually, applying \(E\)--homology, we have a pair of maps \[E_* X \xrightarrow{E_* \Delta} E_*(X \times X) \xleftarrow{\text{K\"unneth}} E_* X \otimes_{E_*} E_* X,\] where, remarkably, the K\"unneth map goes the wrong way to form a composite.
In the case where that map is an isomorphism, the long composite induces the structure of an \index{comodule!coalgebra}\(E_*\)--coalgebra on \(E_* X\).
In the most generous case that \(E\) is a field spectrum (in the sense of \Cref{FieldSpectraAreKTheories}), the K\"unneth map is always invertible and, moreover, \(E^* X\) is functorially the linear dual of \(E_* X\).
By taking our definition of the formal scheme (associated to a space) and dualizing it, we are motivated to consider the following purely algebraic construction:
\begin{definition}
Let \(C\) be a coalgebra over a field \(k\).
We define a functor\index{scheme!coalgebraic!Sch@\(\Sch\)}
\begin{align*}
\Sch C\co \CatOf{Algebras}_{k/} & \to \CatOf{Sets}, \\
T & \mapsto \left\{f \in C \otimes T \middle| \begin{array}{c} \Delta f = f \otimes f \in (C \otimes T) \otimes_T (C \otimes T), \\ \eps f = 1 \end{array} \right\}.
\end{align*}
\end{definition}
\begin{lemma}
For a field \(k\) and a \(k\)--algebra \(A\) which is finite--dimensional as a \(k\)--module, there is a natural isomorphism \(\Spec A \cong \Sch A^*\).
\end{lemma}
\begin{proof}[Proof sketch]
A point \(f \in (\Sch A^*)(T) \subseteq A^* \otimes T\) gives rise to a \(k\)--module map \(f_*\co A \to T\), which the extra conditions in the formation of \((\Sch C)(T)\) force to be a ring homomorphism.
The finiteness assumption is present exactly so that \(A\) is its own double--dual, giving an inverse assignment.
\end{proof}
If we drop the finiteness assumption, then this comparison proof fails entirely.
Indeed, the multiplication on \(A\) gives rise only to maps \[A^* \to (A \otimes_k A)^* \from A^* \otimes_k A^*,\] which is not enough to make \(A^*\) into a \(k\)--coalgebra.
However, if we start instead with a \(k\)--coalgebra \(C\) of infinite dimension, the following result is very telling:
\begin{lemma}[{\cite[pg.\ 12]{Demazure}, \cite[Appendix 5.3]{Michaelis}, \cite[Remark 1.1.8]{HopkinsLurie}}]\label{kCoalgebrasAreIndFinite}
For \(C\) a coalgebra over a field \(k\), any finite--dimensional \(k\)--linear subspace of \(C\) can be finitely enlarged to a subcoalgebra of \(C\).
Accordingly, taking the colimit gives a canonical equivalence
\[\pushQED{\qed}
\Ind(\CatOf{Coalgebras}_k^{\mathrm{fin}}) \xrightarrow{\simeq} \CatOf{Coalgebras}_k. \qedhere
\popQED\]
\end{lemma}
\noindent This result allows us to leverage our duality Lemma pointwise: for an arbitrary \(k\)--coalgebra, we break it up into a lattice of finite \(k\)--coalgebras, and take their linear duals to get a reversed lattice of finite \(k\)--algebras.
Altogether, this indicates that \(k\)--coalgebras generally want to model \emph{formal schemes}.
\begin{corollary}\label{CoalgsAndFSchsAgreeOverk}
For \(C\) a coalgebra over a field \(k\) expressed as a colimit \(C = \colim_k C_k\) of finite subcoalgebras, there is an equivalence \[\Sch C \cong \{\Spec C_k^*\}_k = \Spf C^*.\]
This induces a \emph{covariant} equivalence of categories \[\CatOf{Coalgebras}_k \cong \CatOf{FormalSchemes}_{/k}.\]
This equivalence translates between the product of formal schemes, the tensor product of pro-algebras, and the tensor product of coalgebras. \qed
\end{corollary}
This covariant algebraic model for formal schemes is very useful.
For instance, this equivalence makes the following calculation trivial:
\begin{lemma}[{cf.\ \Cref{HF2BOIsSymAlg}, \Cref{DivConstructionsAreFree}, and \Cref{ECohomBUIsFree}}]
Select a coalgebra \(C\) over a field \(k\) together with a pointing \(k \to C\).
Write \(M\) for the coideal \(M = C / k\).
The free formal commutative monoid on the pointed formal scheme \(\Sch k \to \Sch C\) is given by \[F(\Sch k \to \Sch C) = \Sch \Sym^* M.\]
Writing \(\Delta c = \sum_j \ell_j \otimes r_j\) for the diagonal on \(C\), the diagonal on \(\Sym^* C\) is given by
\[\pushQED{\qed}
\Delta(c_1 \cdots c_n) = \sum_{j_1, \ldots, j_n} (\ell_{1,j_1} \cdots \ell_{n, j_n}) \otimes (r_{1, j_1} \cdots r_{n, j_n}). \qedhere
\popQED\]
\end{lemma}
It is unfortunate, then, that when working over a ring rather than a field \Cref{kCoalgebrasAreIndFinite} fails~\cite[Appendix 5.3]{Michaelis}.
Nonetheless, it is possible to bake into the definitions the machinery needed to get a good-enough analogue of \Cref{CoalgsAndFSchsAgreeOverk}.
\begin{definition}[{\cite[Definition 4.58]{StricklandFSFG}}]\label{DefnCoalgebraicFormalScheme}
Let \(C\) be an \(R\)--coalgebra which is free as an \(R\)--module.
A basis \(\{x_j\}\) of \(C\) is said to be a \index{coalgebra!good basis}\textit{good basis} when any finite subcollection of \(\{x_j\}\) can be finitely enlarged to a subcollection that spans a subcoalgebra.
The coalgebra \(C\) is itself said to be \textit{good} when it admits a good basis.
A formal scheme \(X\) is said to be \index{scheme!coalgebraic}\textit{coalgebraic} when it is isomorphic to \(\Sch C\) for a good coalgebra \(C\).
\end{definition}
\begin{example}\label{FVarsAreCoalgebraic}
The formal scheme \(\A^n\) is coalgebraic.
Beginning with the presentation \[\A^n = \Spf R\ps{x_1, \ldots, x_n} = \colim_J \Spec R[x_1, \ldots, x_n] / (x_1^{j_1}, \ldots, x_n^{j_n}),\] write \(A_J\) for the algebra on the right-hand side.
Each \(A_J\) is a free \(R\)--module, and we write \[C_J = A_J^* = R\{\beta_K \mid K < J\}\] for the dual coalgebra, with \[\beta_K(x^L) = \begin{cases} 1 & \text{if \(K = L\)}, \\ 0 & \text{otherwise}. \end{cases}\]
The elements \(\beta_K\) form a good basis for the full coalgebra \(C = \colim_J C_J\): any finite collection of them \(\{\beta_K\}_{K \in \mathcal K}\) is contained inside any \(C_J\) satisfying \(K < J\) for all \(K \in \mathcal K\).
As an additional consequence, all formal varieties are coalgebraic.
\end{example}
The main utility of this condition is that it gives us access to colimits of formal schemes:
\begin{theorem}[{\cite[Proposition 4.64]{StricklandFSFG}}]\label{CoalgebraicColimitsExist}
Suppose that \[F\co \CatOf I \to \CatOf{Coalgebras}_R\] is a colimit diagram of coalgebras such that each object in the diagram, including the colimit point, is a good coalgebra.
Then \[\Sch \circ \, F\co \CatOf I \to \CatOf{FormalSchemes}\] is a colimit diagram of formal schemes. \qed
\end{theorem}
\noindent For an example of the sort of constructions that become available via this Theorem, we prove the following Corollary by analyzing the symmetric power of coalgebras:
\begin{corollary}[{\cite[Example 4.65 and Proposition 6.4]{StricklandFSFG}}]\label{ProofOfFreeFormalMonoids}
When a formal scheme \(X\) is coalgebraic, the symmetric power \(X^{\times n}_{\Sigma_n}\) exists.
In fact, \(\coprod_{n \ge 0} X^{\times n}_{\Sigma n}\) models the free formal commutative monoid on \(X\).
Given an additional pointing \(\Spec R \to X\), the colimit of the induced system \[\colim \left(\cdots \to X^{\times n}_{\Sigma_n} = \Spec R \times X^{\times n}_{\Sigma_n} \to X \times X^{\times n}_{\Sigma_n} \to X^{\times(n+1)}_{\Sigma_{n+1}} \to \cdots\right)\] models the free formal commutative monoid on the pointed formal scheme.
\end{corollary}
\begin{proof}[Proof sketch]
The main points entirely mirror the case over a field: the symmetric power coalgebra construction gives models for \(X^{\times n}_{\Sigma_n}\), the total symmetric power Hopf algebra gives a model for the free formal commutative monoid, and the stabilization against the pointing is modeled by inverting an element in the symmetric algebra.
In each case, choosing a good basis for the coalgebra underlying \(X\) yields choices of good bases for the coalgebras arising from these constructions, essentially because their elements are crafted out of finite combinations of the elements of the original.
\end{proof}
In the specific case that \(\Spec R \to X\) is a pointed formal \emph{curve}, we can prove something more:
\begin{corollary}[{\cite[Proposition 6.12]{StricklandFSFG}}]\label{FreeFormalGroupOnACurve}
For \(\Spec R \to X\) a pointed formal curve, the free formal commutative monoid is automatically an abelian group.
\end{corollary}
\begin{proof}[Proof sketch]
The main idea is that the coalgebra associated to a formal curve admits an increasing filtration \(F_k\) so that the reduced diagonal \[\overline \Delta = \Delta - (1 \otimes \eta) - (\eta \otimes 1)\] reduces filtration degree: \[\overline \Delta|_{F_k}\co F_k \to \sum_{\substack{i,j > 0 \\ i+j=k}} F_i \otimes F_j.\]
In turn, the symmetric algebra on the coalgebra associated to a formal curve inherits enough of this filtration that one can iteratively solve for a \index{Hopf algebra}Hopf algebra antipode.
\end{proof}
We now reconnect this algebraic discussion with the algebraic topology that spurred it.
\begin{lemma}
If \(E\) and \(X\) are such that \(E_* X\) is an \(E_*\)--coalgebra and \[E^* X \cong \CatOf{Modules}_{E_*}(E_* X, E_*),\] then there is an equivalence \[\Sch E_* X \cong X_E.\]
\end{lemma}
\begin{proof}
We have defined \(X_E\) to have the formal topology induced by the compactly generated topology of \(X\), and this same topology can also be used to write \(\Sch E_* X\) as the colimit of finite \(E_*\)--coalgebras.
\end{proof}
\begin{example}[{cf.\ \Cref{KtheoryConvertsTorsionToTorsion} and \Cref{KHomologyOfClassifyingSpace}}]\label{KtheoryOfClassifyingSpace}
For a Morava \(K\)--theory \(K_\Gamma\) associated to a formal group \(\Gamma\) of finite height, we have seen that there is an exact sequence of Hopf algebras \[K_\Gamma^0(BS^1) \xrightarrow{\cdot [p^j](x)} K_\Gamma^0(BS^1) \to K_\Gamma^0(BS^1[p^j]),\] presenting \((BS^1[p^j])_K\) as the \(p^j\)--torsion formal subscheme \(BS^1_K[p^j]\).
The Hopf algebra calculation also holds in \(K\)--homology, where there is instead the exact sequence \[(K_\Gamma)_0 B(S^1[p^j]) \to (K_\Gamma)_0 BS^1 \xrightarrow{\frown [p^j](x)} (K_\Gamma)_0 BS^1\] which ultimately presents \((K_\Gamma)_0 B(S^1[p^j])\) as the \(p^j\)--order \(\ast\)--nilpotence in the middle Hopf algebra.
Applying \(\Sch\) to this last line covariantly converts this second statement about Hopf algebras to the corresponding statement above about the associated formal schemes---i.e., the behavior of the homology Hopf algebra is a covariant avatar of the behavior of the formal schemes.
\end{example}
The example above, where the space in question is an \(H\)--space, also spurs us to consider a certain ``wrong-way'' operation.
We have seen that the algebra structure of the \(K\)--cohomology of a space and the coalgebra structure of the \(K\)--homology of the same space contain equivalent data: they both give rise to the same formal scheme.
However, in the case of a commutative \(H\)--space, the \(K\)--homology and \(K\)--cohomology give \emph{commutative and cocommutative Hopf algebras}.
Hence, in addition to considering the coalgebraic formal scheme \(\Sch (K_\Gamma)_0 B(S^1[p^j])\), we can also consider the affine scheme \(\Spec (K_\Gamma)_0 B(S^1[p^j])\).
This, too, should contain identical information, and this is the subject of Cartier duality.
\begin{definition}[{\cite[Sections 6.3--4]{StricklandFSFG}}]\label{DefnCartierDual}
The \index{Cartier dual}\textit{Cartier dual} of a commutative finite group scheme \(G\) is defined by the formula \[DG = \InternalHom{GroupSchemes}(G, \Gm),\] itself a finite group scheme.
More generally, the Cartier dual of a commutative \emph{coalgebraic} formal group \(\G\) can also be defined by \[D\G = \InternalHom{GroupSchemes}(\G, \Gm).\]
\end{definition}
\begin{lemma}[{\cite[Proposition 6.19]{StricklandFSFG}}]
Let \(\G\) be a coalgebraic formal group over a formal scheme \(X\), and write \(\mathbb H = \Spec \sheaf O_{\G}^*\) for the group scheme associated to its dual Hopf algebra.
Cartier duality then has the effects \(D\G = \mathbb H\) and \(D\mathbb H = \G\).
\end{lemma}
\begin{proof}
We show that the first two objects, \(D\G\) and \(\mathbb H\), represent the same object.
A point \(f \in D\G(t\co \Spec T \to S)\) is specified by a function \[f\co t^* \G \to t^*(\Gm \times X).\]
The map \(f\) is equivalent to a map of Hopf algebras \(f^*\co T[u^\pm] \to \sheaf O_{\G} \otimes_{\sheaf O_X} T\), which is determined by its value \(f^*(u) \in \sheaf O_{\G} \otimes_{\sheaf O_X} T\), which must satisfy the two relations \(\Delta(f^* u) = f^* u \otimes f^* u\) and \(\eps(f^* u) = 1\).
Invoking linear duality, \(f^* u\) can also be considered as an element of \(\CatOf{Modules}_{\sheaf O_X}(\sheaf O_{\G}^*, T)\), and the two relations on \(f^* u\) show that it lands in the subset \[f^* u \in \CatOf{Algebras}_{\sheaf O_X /}(\sheaf O_{\G}^*, T) \subseteq \CatOf{Modules}_{\sheaf O_X}(\sheaf O_{\G}^*, T).\]
This assignment is invertible, and the proof is entirely similar for \(D \mathbb H \cong \G\).
\end{proof}
\begin{remark}[{\cite[pg.\ 72]{Demazure}}]
The \index{Dieudonn\'e module}Dieudonn\'e module of the Cartier dual of a formal group is \emph{also} described by linear duality: it is the linear dual of the Dieudonn\'e module of the original formal group.
Hence, the covariant and contravariant Dieudonn\'e modules described in \Cref{SectionDieudonneModules} can be taken to be related by Cartier duality.
\end{remark}
\begin{remark}\label{TopologicalCartierDuality}
\index{formal scheme!from a space}Cartier duality intertwines the homological and cohomological schemes assigned to a commutative \(H\)--space.
When such a commutative \(H\)--space \(X\) has free and even \(E\)--homology, there is an isomorphism%
\footnote{%
Some authors write \(X^E\) for this last scheme.
This is not unreasonable, but we make use of this construction so rarely that we will not reserve for it its own notation.
}
\[D(\Spf E^0 X) = DX_E = \InternalHom{GroupSchemes}(X_E, \Gm) \cong \Spec E_0 X.\]
\end{remark}
\section{Special divisors and the special splitting principle}\label{MSUDay}
Starting in this Lecture, after our extended interludes on chromatic homotopy theory and cooperations, we return to thinking about bordism orientations directly.
To begin, we will summarize the various perspectives already adopted in \Cref{ComplexBordismChapter} when we were studying complex orientations of ring spectra.
\begin{enumerate}
\item (\Cref{DefnComplexOrientation}:) A \index{orientation!complex}complex-orientation of \(E\) is, definitionally, a map \(\MUP \to E\) of ring spectra in the homotopy category.
\item (\Cref{ComplexOrientationsInTermsOfTrivs}:) A complex-orientation of \(E\) is also equivalent to a multiplicative system of \index{Thom isomorphism}Thom isomorphisms for complex vector bundles.
Such a system is determined by its value on the universal line bundle \(\L\) over \(\CP^\infty\).
We can also phrase this algebro-geometrically: such a Thom isomorphism is the data of a trivialization of the \index{Thom sheaf}Thom sheaf \(\ThomSheaf{\L}\) over \(\CP^\infty_E\).\index{canonical bundle}
\item (\Cref{OrientationsOnEAndMU}:) Ring spectrum maps \(\MUP \to E\) induce on \(E\)--homology maps \(E_0 \MUP \to E_0\) of \(E_0\)--algebras.
This, too, can be phrased algebro-geometrically: these are elements of \((\Spec E_0 \MUP)(E_0)\).
\end{enumerate}
We can summarize our main result about these perspectives as follows:
\begin{theorem}[{\cite[Example 2.53]{AHSTheoremOfTheCube}}]\label{BUZTriumvirate}
Take \(E\) to be \emph{even-periodic} (hence complex-orientable, cf.\ \Cref{EvenPeriodicImplicesCplxO}).
The functor
\begin{align*}
\CatOf{AffineSchemes}_{/\Spec E_0} & \to \CatOf{Sets}, \\
(\Spec T \xrightarrow{u} \Spec E_0) & \mapsto \left\{ \text{trivializations of \(u^* \ThomSheaf{\L}\) over \(u^* \CP^\infty_E\)} \right\}
\end{align*}
is isomorphic to the affine scheme \(\Spec E_0 \MUP\).
Moreover, the \(E_0\)--points of this scheme biject with ring spectrum maps \(\MUP \to E\).
\end{theorem}
\begin{proof}[Proof summary]
The equivalence between (1) and (3)---i.e., between complex-orientations and \(E_0\)--points of \(\Spec E_0 \MUP\)---follows from calculating that \(E_0 \MUP\) is a free \(E_0\)--module, so that there is a collapse in the universal coefficient theorem.
Then, the equivalence between (1) and (2) follows from the \index{splitting principle}splitting principle for complex line bundles, which says that the first \index{Chern class}Chern class of \(\L\)---i.e., a trivialization of \(\ThomSheaf{\L}\)---determines the rest of the map \(\MUP \to E\).
\end{proof}
An analogous result holds for ring spectrum maps \(MU \to E\) and the line bundle \(1 - \L\), and it is proven in analogous way.
In particular, we will want a version of the splitting principle for virtual vector bundles of virtual rank \(0\).
Given a finite complex \(X\) and such a rank \(0\) virtual vector bundle, write \(\tilde V \co X \to BU\) for the classifying map.
Because \(X\) is a finite complex, there exists an integer \(n\) so that \(\tilde V = -(n \cdot 1 - V)\) for an honest rank \(n\) vector bundle \(V\) over \(X\).
Using \Cref{OriginalSplittingPrinciple}, the splitting \(f^* V \cong \bigoplus_{i=1}^n \L_i\) over \(Y\) gives a presentation of \(\tilde V\) as \[\tilde V = -(n \cdot 1 - V) = -\bigoplus_{i=1}^n (1 - \L_i).\]
Crucially, we have organized this sum \emph{entirely in terms of bundles classified by \(BU\)}, as each bundle \(1 - \L_i\) itself has the natural structure of a rank \(0\) virtual vector bundle.
This version of the splitting principle, together with our extended discussion of formal geometry, begets the following analogue of the previous result:
\begin{theorem}[{\cite[Example 2.54]{AHSTheoremOfTheCube}, cf.\ also \cite[Lemma 6.2]{AndoStrickland}}]\label{BUTriumvirate}
Take \(E\) to be even-periodic.
The functor
\begin{align*}
\CatOf{AffineSchemes}_{/\Spec E_0} & \to \CatOf{Sets}, \\
(\Spec T \xrightarrow{u} \Spec E_0) & \mapsto \left\{ \text{trivializations of \(u^* \ThomSheaf{1 - \L}\) over \(u^* \CP^\infty_E\)} \right\}
\end{align*}
is isomorphic to the affine scheme \(\Spec E_0 MU\).
Moreover, the \(E_0\)--points of this scheme biject with ring spectrum maps \(MU \to E\). \qed
\end{theorem}
In \Cref{ProjectivizationLecture}, we preferred to think of the cohomology of a Thom spectrum as a sheaf over the formal scheme associated to its base space.
This extra structure has not evaporated in the homological context---it just takes a different form.
\begin{lemma}
For \(\xi\co G \to BGL_1 \S\) a group map, the Thom spectrum \(T\xi\) is a \((\Susp^\infty_+ G)\)--cotorsor.
\end{lemma}
\begin{proof}[Construction]
The Thom isomorphism \(T\xi \sm T\xi \simeq T\xi \sm \Susp^\infty_+ G\) composes with the unit map \(\S \to T\xi\) to give the \index{Thom spectrum!Thom diagonal}\textit{Thom diagonal} \[T\xi \to T\xi \sm \Susp^\infty_+ G. \qedhere\]
\end{proof}
\noindent Applying \(\Spec E_0(-)\), the Thom diagonal is translated into the structure of a free and transitive action map \[\Spec E_0 T(\xi) \times \Spec E_0 G \to \Spec E_0 T(\xi).\]
This construction is natural in the formation of \(G\) or \(\xi\), and so we are also moved to specialize to the cases of \(G = \Z \times BU\) and \(G = BU\) and to understand \(\Spec E_0 G\) in those contexts.
Again, this is a matter of chaining together results we have already proven:
\begin{align*}
\Spec E_0(\Z \times BU) & = D((\Z \times BU)_E) \tag{\Cref{TopologicalCartierDuality}} \\
& = D(\Div \CP^\infty_E) \tag{\Cref{ECohomBUIsFree}} \\
& = \InternalHom{FormalGroups}(\Div \CP^\infty_E, \Gm) \tag{\Cref{DefnCartierDual}} \\
& = \InternalHom{FormalSchemes}(\CP^\infty_E, \Gm), \tag{\Cref{ProofOfFreeFormalMonoids}} \\
\intertext{and similarly}
\Spec E_0(BU) & = \InternalHom{FormalSchemes}_{*/}(\CP^\infty_E, \Gm)
\end{align*}
is the subscheme of those maps sending the identity point of \(\CP^\infty_E\) to the identity point of \(\Gm\).
Such functions can be identified with trivializations of the trivial sheaf over \(\CP^\infty_E\), and the action map induced by the Thom diagonal belongs to a commuting square
\begin{center}
\begin{tikzcd}
\begin{array}{c}\Spec E_0 MU \\ \times \\ \Spec E_0 BU\end{array} \arrow{r} \arrow[equal]{d} & \Spec E_0 MU \arrow[equal]{d} \\
\begin{array}{c} \{\text{triv\textsuperscript{ns} of \(\ThomSheaf{1 - \L} \downarrow \CP^\infty_E\)}\} \\ \times \\ \{\text{triv\textsuperscript{ns} of \(1 \downarrow \CP^\infty_E\)}\} \end{array} \arrow{r} & \{\text{triv\textsuperscript{ns} of \(\ThomSheaf{1 - \L} \otimes 1 \downarrow \CP^\infty_E\)}\}.
\end{tikzcd}
\end{center}
\begin{remark}[{\cite[Corollary 2.30 and Theorem 2.50]{AHSTheoremOfTheCube}}]\label{BUtoBUZ}
The topological maps
\begin{align*}
BU & \to \Z \times BU, &
MU & \to \MUP
\end{align*}
induce recognizable algebro-geometric maps upon application of \(\Spec E_0(-)\).
The comparison map \[(\Spec E_0(\Z \times BU))(T) \to \InternalHom{FormalSchemes}(\CP^\infty_E, \Gm)(T)\] reads off the image of a map \[f\co E_0(\Z \times BU) \cong E_0[b_0^\pm, b_1, \ldots] \to T\] as the components of a function \(\sum_j f(b_0^j b_j) x^j \in T \otimes \sheaf O_{\CP^\infty_E}\), whereas the comparison map for \(BU\) reads off the image of a map \[g\co E_0(BU) \cong E_0[b_0^\pm, b_1, b_2, \ldots] / (b_0 = 1) \to T\] as the components of a function \(\sum_j g(b_j)x^j\), effecting a normalizing division by \(b_0\), itself the image of \(\CP^0_E \subseteq \CP^\infty_E\) in \(\Gm\).
Geometrically, this gives the commuting square
\begin{center}
\begin{tikzcd}
\Spec E_0(\Z \times BU) \arrow{r} \arrow[equal]{d} & \Spec E_0(BU) \arrow[equal]{d} \\
\InternalHom{FormalSchemes}(\CP^\infty_E, \Gm) \arrow{r} & \InternalHom{FormalSchemes}_{*/}(\CP^\infty_E, \Gm) \\
f(t) \arrow[|->]{r} & f(t) / f'(0).
\end{tikzcd}
\end{center}
At the level of Thom spectra, these identifications are controlled by the \index{Chern class}Chern classes associated to these bundles, and we now briefly summarize their relationship.
The spaces \(\Z \times BU\) and \(BU\) are the \(0\){\th} and \(2\){\nd} spaces in the \(\Omega\)--spectrum for connective complex \(K\)--theory, and since connective complex \(K\)--theory is complex-orientable, we have \(kU^*(\CP^\infty) = \Z[\beta]\ps{c_1}\).
Inside this ring there is the relation \[\beta c_1 = (1 - \L).\]
The pieces of this topological formula have recognizable provenances: \(\beta\) is the restriction of the tautological bundle on \(\CP^\infty\) to \(S^2 \simeq \CP^1\), \((1 - \L)\) governs the theory of Chern classes for an \(\MUP\)--orientation, and \(c_1\) governs the theory of Chern classes for an \(MU\)--orientation.
Applying our conversions to algebro-geometric terms (i.e., the Theorems above as well as \Cref{Pi2AndInvariantDiffls}), this same equation says that the trivialization \(f\) of \(\ThomSheaf{u^* \L}\), corresponding to a point in \((\Spec E_0 \MUP)(T)\), is sent to the trivialization \(f'(0) / f\) of \(\ThomSheaf{u^*(1 - \L)}\), corresponding to the induced point in \((\Spec E_0 MU)(T)\).
\end{remark}
This last Remark indicates a direction of possible generalization to the other spaces in the \(\Omega\)--spectrum for connective complex \(K\)--theory, which have the following polite description:
\begin{lemma}
There is an equivalence \[\OS{kU}{2k} = BU[2k, \infty).\]
\end{lemma}
\begin{proof}
Consider the element \(\beta^k \in kU_* = \Z[\beta]\).
The source of the induced map \(\beta^k\co \Susp^{2k} kU \to kU\) is \(2k\)--connective, and hence there is a factorization \[\Susp^{2k} kU \to kU[2k, \infty) \to kU.\]
Then, the structure of the homotopy ring \(kU_*\) shows that this is an equivalence: every class of degree at least \(2k\) can be uniquely written as a \(\beta^k\)--multiple.%
\footnote{%
Similarly, there is an equivalence \(\OS{kO}{8k} = BO[8k, \infty)\), and this \emph{does not hold} for indices which are not precise multiples of \(8\).
}
Applying \(\Loops^\infty\) gives the desired statement: \[\OS{kU}{2k} = \Loops^\infty \Susp^{2k} kU \simeq \Loops^\infty kU[2k, \infty) = BU[2k, \infty). \qedhere\]
\end{proof}
The next space and Thom spectrum in the sequence are thus \(B\SU\) and \(M\SU\).
These are approachable using methods we have developed so far, and so we set their description as our goal for the remainder of this Lecture.
Our jumping off point for that story will be, again, a partial extension of the splitting principle.
\begin{lemma}\label{SplittingPrincipleForBSU}
Let \(X\) be a finite complex, and let \(\tilde V\co X \to BU\) classify a virtual vector bundle of rank \(0\) over \(X\).
Suppose that we have selected a factorization \(\tilde{\tilde V}\co X \to B\SU\) of \(\tilde V\) through \(B\SU\).
Then, there is a space \(f\co Y \to X\), where \(f_E\co Y_E \to X_E\) is finite and flat, as well as a collection of line bundles \(\sheaf H_j\), \(\sheaf H'_j\) expressing a \(B\SU\)--internal decomposition\index{splitting principle!for BSU@for \(B\SU\)} \[\tilde{\tilde V} = -\bigoplus_{j=1}^n (1 - \sheaf H_j)(1 - \sheaf H'_j).\]
\end{lemma}
\begin{proof}
Begin by using \Cref{OriginalSplittingPrinciple} on \(V\) to get an equality of \(BU\)--bundles \[f^* \tilde{\tilde V} = V' + \L_1 + \L_2 - n \cdot 1.\]
Adding \((1 - \L_1)(1 - \L_2)\) to both sides, this gives
\begin{align*}
f^* \tilde{\tilde V} + (1 - \L_1)(1 - \L_2) & = V' + \L_1 + \L_2 + (1 - \L_1)(1 - \L_2) - n \cdot 1 \\
& = V' + \L_1\L_2 - (n-1) \cdot 1.
\end{align*}
By thinking of \((1 - \L_j)\) as an element of \(kU^2(Y) = [Y, BU]\), we see that the product element \[(1 - \L_1)(1 - \L_2) \in kU^4(Y) = [Y, B\SU]\] has the natural structure of a \(B\SU\)--bundle and hence so does the sum on the left-hand side.%
\footnote{%
In the language of the previous Case Study, we are making use of a certain Hopf ring \(\circ\)--product on \(\OS{kU}{2*}\).
}
The right-hand side is the rank \(0\) virtualization of a rank \((n-1)\) vector bundle, hence succumbs to induction.
Finally, because \(\SU(1)\) is the trivial group, there are no nontrivial complex line bundles with structure group \(\SU(1)\), grounding the induction.
\end{proof}
From this, we would like to directly conclude an equivalence between trivializations of the Thom sheaf \(\ThomSheaf{(\L_1 - 1)(\L_2 - 1)} \downarrow (\CP^\infty)^{\times 2}_E\) and multiplicative maps \(M\SU \to E\), but we are not quite yet ready to do so.
Certainly an \(M\SU\)--orientation of \(E\) gives such a trivialization, but it is not clear that all possible trivializations of that universal Thom sheaf give consistent trivializations of other Thom sheaves---that is, the decomposition in \Cref{SplittingPrincipleForBSU} may admit unexpected symmetries which, in turn, place requirements on our universal trivialization so that these symmetric decompositions all result in the same restricted trivialization.%
\footnote{%
By contrast, our splitting principle for ordinary complex vector bundles was completely deterministic, since a given isomorphism class of line bundles tautologically admits no other expression as an isomorphism class of line bundles.
}
\begin{example}
There is an equivalence of \(\SU\)--bundles \[(\L_1 - 1)(\L_2 - 1) \cong (\L_2 - 1)(\L_1 - 1).\]
Correspondingly, the trivializations of \(\ThomSheaf{(\L_1 - 1)(\L_2 - 1)}\) which respect this twist are the \emph{symmetric} sections.
\end{example}
\begin{example}
There is an equivalence of \(\SU\)--bundles \[(1 - 1)(\L_2 - 1) \cong 0.\]
Correspondingly, the trivializations of \(\ThomSheaf{(1 - \L_1)(1 - \L_2)}\) which respect this degeneracy are the \emph{rigid} sections, meaning they trivialize the Thom sheaf of the trivial bundle using the trivial section \(1\).
\end{example}
\begin{example}\label{TwoCocycleConditionForBSUBundles}
There is another less obvious symmetry, inspired by our use of the product map \[kU^2(Y) \otimes kU^2(Y) \to kU^4(Y)\] in the course of the proof.
There is also a product map \[kU^2(Y) \otimes kU^0(Y) \otimes kU^2(Y) \to kU^4(Y).\]
Taking one of our splitting summands \((1 - \L_1)(1 - \L_2)\) and acting by some bundle \(\sheaf H \in kU^0(Y)\) gives
\begin{align*}
(1 - \L_1)\sheaf H(1 - \L_2) & = (1 - \L_1)\sheaf H(1 - \L_2) \\
(\sheaf H - \L_1 \sheaf H)(1 - \L_2) & = (1 - \L_1)(\sheaf H - \sheaf H \L_2) \\
(1 - \L_1 \sheaf H)(1 - \L_2) & \\
- (1 - \sheaf H)(1 - \L_2) & = (1 - \L_1)(1 - \sheaf H \L_2) \\
& \quad - (1 - \L_1)(1 - \sheaf H).
\end{align*}
This ``\(kU^0\)--linearity'' is sometimes called a \index{symmetric 2 cocycle@symmetric \(2\)--cocycle}``\(2\)--cocycle condition'', in reference to the similarity with the formula in \Cref{DefinitionSymmetric2Cocycle}.
\end{example}
We would like to show that these observations suffice, as in the following version of \Cref{BUZTriumvirate} and \Cref{BUTriumvirate}:
\begin{theorem}[{\cite[Theorem 2.50]{AHSTheoremOfTheCube}}]\label{BSUTriumvirate}
Take \(E\) to be even-periodic.
The functor \[\{\Spec T \xrightarrow{u} \Spec E_0\} \to \left\{ \begin{array}{c} \text{trivializations of \(u^* \ThomSheaf{(1 - \L_1)(1 - \L_2)}\)} \\ \text{over \(u^* (\CP^\infty)^{\times 2}_E\) which are} \\ \text{symmetric, rigid, and \(kU^0\)--linear} \end{array} \right\}\] is isomorphic to the affine scheme \(\Spec E_0 M\SU\).
Moreover, the \(E_0\)--points of this scheme biject with ring spectrum maps \(M\SU \to E\).\index{orientation!MSU@\(M\SU\)}
\end{theorem}
\noindent In pursuit of this, we will show rather manually that \(B\SU_E\) represents an object subject to exactly such symmetries, hence \(\Spec E_0 B\SU\) represents the scheme of such symmetric functions, and finally conclude that \(\Spec E_0 M\SU\) represents the scheme of such symmetric trivializations.
The place to begin is with a Serre spectral sequence:
\begin{lemma}[{\cite[Lemma 6.1]{AndoStrickland}, cf.\ also \cite[Proposition 6.5]{AndoStrickland}}]\label{BSUtoBUtoCPinftyIsSexseq}
The Postnikov fibration\index{Postnikov tower} \[B\SU \to BU \xrightarrow{B\det} BU(1)\] induces a short exact sequence of Hopf algebras
\[\pushQED{\qed}
E^0 B\SU \from E^0 BU \xleftarrow{c_1 \mapsfrom c_1} E^0 BU(1). \qedhere
\popQED\]
\end{lemma}
\noindent Equivalently, there is a short exact sequence of formal group schemes
\begin{center}
\begin{tikzcd}
B\SU_E \arrow{r} \arrow[equal]{d} & BU_E \arrow{r}{B\det} \arrow[equal]{d} & BU(1)_E \arrow[equal]{d} \\
\SDiv_0 \CP^\infty_E \arrow{r} & \Div_0 \CP^\infty_E \arrow{r}{\mathrm{sum}} & \CP^\infty_E,
\end{tikzcd}
\end{center}
where the scheme ``\(\SDiv_0 \CP^\infty_E\)'' of \index{divisor!special}\textit{special divisors} is defined to parametrize those divisors which vanish under the summation map.
However, whereas the map \(BU(1)_E \to BU_E\) has an identifiable universal property---it presents \(BU_E\) as the universal formal group on the pointed curve \(BU(1)_E\)---the description of \(B\SU_E\) as a scheme of special divisors does not bear much immediate resemblance to a free object on the special divisor \((1 - [a])(1 - [b])\) classified by \[(\CP^\infty)^{\times 2}_E \xrightarrow{(1 - \L_1)(1 - \L_2)_E} B\SU_E \to BU_E = \Div_0 \CP^\infty_E.\]
Our task is thus exactly to justify this statement.
\begin{definition}\label{DefinitionOfC2G}
If it exists, let \(C_2 \G\) denote the symmetric square of \(\Div_0 \G\), thought of as a module over the ring scheme \(\Div \G\).
This scheme has the property that a formal group homomorphism \(\phi\co C_2 \G \to H\) is equivalent data to a symmetric function \(\psi\co \G \times \G \to H\) satisfying a rigidity condition (\(\psi(a, 0) = 0\)) and a \(2\)--cocycle condition as in \Cref{TwoCocycleConditionForBSUBundles}.
\end{definition}
\begin{theorem}[{Ando--Hopkins--Strickland, unpublished}]\label{SDivModelsC2}
\(\SDiv_0 \G\) is a model for \(C_2 \G\).%
\footnote{%
The short exact sequence \(0 \to I \to \Z[G] \to \Z \to 0\) gives a purely algebraic analogue of the short exact sequence \(0 \to \Div_0 \G \to \Div \G \to \underline{\Z} \to 0\).
The algebro-geometric results of this Lecture (and this Theorem in particular) have direct analogues in the setting of group--rings, which the reader may find more instructive and concrete.
}
\end{theorem}
\begin{proof}[Proof sketch]
Consider the map
\begin{align*}
\G \times \G & \to \Div_0 \G, \\
(a, b) & \mapsto (1 - [a])(1 - [b])
\end{align*}
for which there is a factorization of formal schemes
\begin{center}
\begin{tikzcd}
\G \times \G \arrow[densely dotted]{d} \arrow{rd} \\
\SDiv_0 \G \arrow{r}{\ker} & \Div_0 \G \arrow{r}{\sigma} & \G
\end{tikzcd}
\end{center}
because \[\sigma((1 - [a])(1 - [b])) = (a + b) - a - b + 0 = 0.\]
A homomorphism \(\phi\co \SDiv_0 \G \to H\) pulls back to a function \(\psi\co \G \times \G \to H\) satisfying the properties of \Cref{DefinitionOfC2G} as follows:
\begin{itemize}
\item To check rigidity, we have \[\psi(a, 0) = \phi((1 - [a])(1 - [0])) = \phi((1 - [a])(1 - 1)) = \phi(0) = 0.\]
\item To check symmetry, we have \[\psi(a, b) = \phi((1 - [a])(1 - [b])) = \phi((1 - [b])(1 - [a])) = \psi(b, a).\]
\item To check \(kU^0\)--linearity, we have
\begin{align*}
\psi(ac, b) - \psi(c, b) & = \phi((1 - [a][c])(1 - [b])) - \phi((1 - [c])(1 - [b])) \\
& = \phi((1 - [a][c])(1 - [b]) - (1 - [c])(1 - [b])) \\
& = \phi((1 - [a])(1 - [c][b]) - (1 - [a])(1 - [c])) \\
& = \phi((1 - [a])(1 - [c][b])) - \phi((1 - [a])(1 - [c])) \\
& = \psi(a, cb) - \psi(a, c).
\end{align*}
\end{itemize}
The other direction is more obnoxious, so we give only a sketch.
Begin by selecting a function \(\psi\co \G \times \G \to H\), then mimic the construction in \Cref{SplittingPrincipleForBSU}.
Expanding the definition of \(\Div_0 \G\), we are moved to consider the object \(\G^{\times k}\), where we define a map
\begin{align*}
\G^{\times k} & \to H, \\
(a_1, \ldots, a_k) & \mapsto -\sum_{j=2}^k \psi\left(\sum_{i=1}^{j-1} a_i, a_j \right).
\end{align*}
This gives a compatible system of symmetric maps, and hence altogether this gives a map \(\tilde\phi\co\Div_0 \G \to H\) off of the colimit.
In general, this map is not a homomorphism, but it is a homomorphism when restricted to \[\phi\co \SDiv_0 \G \to \Div_0 \G \xrightarrow{\tilde\phi} H.\]
Finally, one checks that any homomorphism \(\SDiv_0 \G \to H\) of formal groups restricting to the zero map \(\G \times \G \to H\) was already the zero homomorphism by rewriting a point in \(\SDiv_0 \G\) as a sum as in \Cref{SplittingPrincipleForBSU}.
This gives the desired identification of \(\SDiv_0 \G\) with the universal property of \(C_2 \G\).
\end{proof}
\begin{corollary}\label{CharacterizationOfBSUUpperE}
There is an isomorphism\index{formal group!cohomology} \[\Spec E_0 B\SU = \left\{\begin{array}{c} \text{functions \(f\co u^* (\CP^\infty_E)^{\times 2} \to \Gm\)} \\ \text{which are symmetric, rigid, and \(kU^0\)--linear} \end{array}\right\}.\]
\end{corollary}
\begin{proof}
Follow the sequence of isomorphisms
\begin{align*}
\Spec E_0 B\SU & = D(B\SU_E) \tag{\Cref{TopologicalCartierDuality}} \\
& = D(\SDiv_0 \CP^\infty_E) \tag{\Cref{BSUtoBUtoCPinftyIsSexseq}} \\
& = D(C_2 \CP^\infty_E) \tag{\Cref{SDivModelsC2}} \\
& = \InternalHom{FormalGroups}(C_2 \CP^\infty_E, \Gm), \tag{\Cref{DefnCartierDual}}
\end{align*}
and then use the universal property in \Cref{DefinitionOfC2G}.
\end{proof}
In order to lift this analysis to \(\Spec E_0 M\SU\), we again appeal to the torsor structure.
At this point, it will finally be useful to introduce some notation:
\begin{definition}[{\cite[Definition 2.39]{AHSTheoremOfTheCube}}]
For a sheaf \(\sheaf L\) over a formal group \(\G\), we introduce the schemes
\begin{align*}
C^0(\G_E; \L)(T) & = \{\text{triv\textsuperscript{ns} of \(u^* \L \downarrow u^* \G\)}\} , \\
C^1(\G_E; \L)(T) & = \left\{\text{triv\textsuperscript{ns} of \(u^* \left( \frac{e^* \L}{\L} \right) \downarrow u^* \G\) which are rigid}\right\} \\
C^2(\G_E; \L)(T) & = \left\{\begin{array}{c}\text{triv\textsuperscript{ns} of \(u^*\left(\frac{e^* \sheaf L \otimes \mu^* \sheaf L}{\pi_1^* \sheaf L \otimes \pi_2^* \sheaf L}\right) \downarrow u^* \G^{\times 2}\)} \\ \text{which are rigid, symmetric, and \(kU^0\)--linear} \end{array}\right\}.
\end{align*}
\end{definition}
Thus far, we have established the following families of isomorphisms:
\begin{align*}
\text{(Cohomological formal schemes:)} & &
(\Z \times BU)_E & \cong C_0 \CP^\infty_E, \\
& & BU_E & \cong C_1 \CP^\infty_E, \\
& & B\SU_E & \cong C_2 \CP^\infty_E, \\
\text{(Homological schemes:)} & &
\Spec E_0(\Z \times BU) & \cong C^0(\CP^\infty_E; \Gm), \\
& & \Spec E_0(BU) & \cong C^1(\CP^\infty_E; \Gm), \\
& & \Spec E_0(B\SU) & \cong C^2(\CP^\infty_E; \Gm), \\
\text{(Orientation schemes:)} & &
\Spec E_0(\MUP) & \cong C^0(\CP^\infty_E; \sheaf I(0)), \\
& & \Spec E_0(MU) & \cong C^1(\CP^\infty_E; \sheaf I(0)),
\end{align*}
where we have abusively abbreviated the sheaf of functions on \(\CP^\infty_E\) to \(\Gm\).
In order to fill in the missing piece, we exploit the torsor structure on Thom spectra discussed earlier.
\begin{lemma}[{\cite[Theorem 2.50]{AHSTheoremOfTheCube}}]\label{MSUIsATorsor}
There is a commuting square
\begin{center}
\begin{tikzcd}
\begin{array}{c}
\Spec E_0 MU[2k, \infty) \\ \times \\ \Spec E_0 BU[2k, \infty)
\end{array}
\arrow{r} \arrow{d} & \Spec E_0 MU[2k, \infty) \arrow{d} \\
\begin{array}{c}
C^k(\CP^\infty_E; \sheaf I(0)) \\ \times \\ C^k(\CP^\infty_E; \Gm)
\end{array}
\arrow{r} & C^k(\CP^\infty_E; \sheaf I(0)),
\end{tikzcd}
\end{center}
where the horizontal maps are the action maps defining torsors, and the vertical maps are those described above.
\end{lemma}
\begin{proof}[Proof sketch]
Recall the isomorphism \(T(\L \downarrow \CP^\infty) \simeq \Susp^\infty \CP^\infty\).
The main point of this claim is that the Thom diagonal for \(MU[2k, \infty)\) restricts to the Thom diagonal for \(\CP^\infty\), which agrees with its diagonal as a space:
\begin{center}
\begin{tikzcd}
(\Susp^\infty \CP^\infty)^{\sm k} \arrow["\Delta"]{r} \arrow{d} & (\Susp^\infty \CP^\infty)^{\sm k} \sm \Susp^\infty_+ (\CP^\infty)^{\times k} \arrow{d} \\
MU[2k, \infty) \arrow["\Delta"]{r} & MU[2k, \infty) \times BU[2k, \infty).
\end{tikzcd}
\end{center}
The diagonal at the level of \((\CP^\infty)^{\times k}\) is responsible for the cup product, so that the classes in the cohomology of projective space which induce the maps
\begin{align*}
\Spec E_0 MU[2k, \infty) & \to C^k(\CP^\infty_E; \sheaf I(0)), \\
\Spec E_0 BU[2k, \infty) & \to C^k(\CP^\infty_E; \Gm)
\end{align*}
literally multiply together to give the description of the action.
This multiplication of sections is exactly the action claimed in the model.
\end{proof}
\begin{proof}[Proof of \Cref{BSUTriumvirate}]
The claim of this Theorem is that the map \[\Spec E_0 M\SU \to C^2(\CP^\infty_E; \sheaf I(0))\] studied above is an isomorphism.
Using \Cref{CharacterizationOfBSUUpperE} and \Cref{MSUIsATorsor}, we see this is a map of torsors for isomorphic groups over a fixed base, and hence it is automatically an isomorphism.
\end{proof}
\begin{remark}[{\cite[Lemma 6.4]{AndoStrickland}}]\label{BSUToBU}
We can also analyze the map \[\Spec E_0 BU \to \Spec E_0 B\SU\] in terms of these models of functions to \(\Gm\).
Again, the analysis passes through a computation in connective \(K\)--theory, using the identification \[kU^*(\CP^\infty)^{\times 2} = \Z[\beta]\ps{x_1, x_2},\] where \(x_1 = \pi_1^* x\) and \(x_2 = \pi_2^* x\) are the Chern classes associated to the tautological bundle pulled back along projections to the first and second factors
\begin{align*}
\pi_1\co (\CP^\infty)^{\times 2} & \to \CP^\infty \times *, &
\pi_2\co (\CP^\infty)^{\times 2} & \to * \times \CP^\infty,
\end{align*}
Inside of this ring, we have the equations
\begin{align*}
\beta^2 x_1 x_2 & = (1 - \L_1)(1 - \L_2) \\
& = (1 - \L_1) - (1 - \L_1 \L_2) + (1 - \L_2) \\
& = \beta\left(\pi_1^*(x) - \mu^*(x) + \pi_2^*(x) \right),
\end{align*}
where \(\mu\co \CP^\infty \times \CP^\infty \to \CP^\infty\) is the tensor product map.
Since the orientation schemes are governed as torsors over these base schemes, we automatically get a description
\begin{center}
\begin{tikzcd}[row sep=0.1em]
\Spec E_0 MU \arrow{r} & \Spec E_0 M\SU, \\
f(x) \arrow[|->]{r} & \frac{f(x_1) \cdot f(x_2)}{f(x_1 +_{\CP^\infty_E} x_2)}
\end{tikzcd}
\end{center}
as a section of
\[\pi_1^* \left(\frac{e^* \sheaf I(0)}{\sheaf I(0)}\right) \otimes \pi_2^* \left(\frac{e^* \sheaf I(0)}{\sheaf I(0)}\right) \otimes \left(\mu^* \left(\frac{e^* \sheaf I(0)}{\sheaf I(0)}\right) \right)^{-1} = \frac{e^* \sheaf I(0) \otimes \mu^* \sheaf I(0)}{\pi_1^* \sheaf I(0) \otimes \pi_2^* \sheaf I(0)}.\]
\end{remark}
\begin{remark}[{\cite[Remark 2.32]{AHSTheoremOfTheCube}}]\label{CUpper3Exists}
The published proofs of Ando, Hopkins, and Strickland differ substantially from the account given here.
The primary difference is that ``\(C_2 \G\)'' does not even get mention, essentially because it is a fair amount of technical work to show that such a scheme even exists (especially in the case to come of \(BU[6, \infty)\)).
On the other hand, it is very easy to demonstrate the existence of its Cartier dual: this is a scheme parametrizing certain bivariate power series subject to certain algebraic conditions, hence exists for the same reason that \(\moduli{fgl}\) existed (cf.\ \Cref{MfglDefn}).
The compromise for this is that they then have to analyze the scheme \(\Spec E_0 B\SU\) directly, through considerably more computational avenues.
This is not too high of a price: the analysis of the \(BU[6, \infty)\) case turns out to be primarily computational anyhow, so this manner of approach is inevitable.
\end{remark}
\begin{remark}
Our definition of the scheme \(C_2 \G\) was by the formula \[C_2 \G = \Sym^2_{\Div \G} \Div_0 \G,\] where we are thinking of of \(\Div_0 \G \subseteq \Div \G\) as the augmentation ideal inside of an augmented ring.
The formal schemes \(\Div \G\) and \(\Div_0 \G\) are the formal schemes associated by \(E\)--theory to the infinite loopspaces underlying \(kU\) and \(\Susp^2 kU\) respectively.
Remarking that \(B\SU\) is the infinite loopspace underlying \(\Susp^4 kU\), we arrive at the analogous topological formula \[\Susp^4 kU = (\Susp^2 kU) \sm_{kU} (\Susp^2 kU).\]
\end{remark}
\begin{remark}
One consequence of our analysis is that the theory of \(M\SU\)--orientations for a complex-orientable theory is not especially different from the theory of \(MU\)--orientations.
Explicitly, we have found a short exact sequence \[0 \to B\SU_E \to BU_E \to BU(1)_E \to 0,\] the first two terms of which are bipolynomial group schemes, and which altogether has a canonical splitting at the level of products of formal schemes.
This splitting is \emph{not} a map of group schemes, and so it does \emph{not} survive to give a splitting of the Cartier dual sequence \[0 \from \Spec E_0 B\SU \from \Spec E_0 BU \from \Spec E_0 BU(1) \from 0,\] but this sequence is nonetheless \emph{noncanonically} split.
It follows from our analysis above that any \(M\SU\)--orientation of a complex-orientable theory arises as the restriction of an \(MU\)--orientation (where there the space of available \(MU\)--orientation preimages is a torsor for \(\Spec E_0 BU(1)\)).
\end{remark}
\section{Chromatic analysis of \texorpdfstring{\(BU[6, \infty)\)}{BU[6, oo)}}\label{ChromaticKUCoopnsSection}
We now embark on an analysis of \(MU[6, \infty)\)--orientations in earnest.
As in the case of \(M\SU\), it is fruitful to first study the behavior of vector bundles with structure map lifted through \(\OS{kU}{6} = BU[6, \infty)\) and to analyze the schemes \(BU[6, \infty)_E\) and \(\Spec E_0 BU[6, \infty)\).
In the previous case, we studied a particular bundle \[\Pi_2\co \CP^\infty \times \CP^\infty \xrightarrow{(1 - \L_1)(1 - \L_2)} B\SU,\] which controlled much of the geometry through our splitting principle for \(B\SU\)--bundles, recorded as \Cref{SplittingPrincipleForBSU}.
Analogously, we can construct a naturally occurring such bundle as the product \[\Pi_3\co \CP^\infty \times \CP^\infty \times \CP^\infty \xrightarrow{(1 - \L_1)(1 - \L_2)(1 - \L_3)} BU[6, \infty),\] but the proof of \Cref{SplittingPrincipleForBSU} falls apart almost immediately---there does not appear to be a splitting principle for bundles lifted through \(BU[6, \infty)\).
This is quite worrying, and it dampens our optimism across the board: about the behavior of \(\Pi_3\) exerting enough control over \(BU[6, \infty)\), about the existence of ``\(C_3 \G\)'', and about \(C_3 \CP^\infty_E\) serving as a good model for \(BU[6, \infty)_E\).
\emph{Nevertheless}, we will show that this algebraic model is still accurate by complete topological calculation.
Our approach is divided between two fronts.
\begin{enumerate}
\item If we specialize to a particularly nice cohomology theory---such as \(E = E_\Gamma\) a \index{Morava E theory@Morava \(E\)--theory}Morava \(E\)--theory---then we can use our extensive body of knowledge about finite height formal groups and their relationship to algebraic topology in order to force nice behavior into the story.
This should be thought of as an exploratory step: if there is a general statement to be found, it will be visible in this particularly algebro-geometric setting, where we can maybe algebraically compute fully enough to determine what it is.
\item If we specialize to a particularly simple formal group---such as \(\G_a\) and its associated cohomology theory \(\HFp\)---then we can use our talent for performing computations in algebraic \emph{topology} to completely exhaust the problem.
This should be thought of as the ``actual'' proof: as in \Cref{COableCoopnsII}, we will show that successfully transferring the guess result from Morava \(E\)--theory to the setting of ordinary cohomology entails the result for \emph{any} complex-orientable cohomology theory.
\end{enumerate}
In this Lecture, we will pursue the first avenue.
We begin by setting \(\Gamma\) to be a formal group of finite \(p\)--height of a field \(k\) of positive characteristic \(p\), and we let \(E = E_\Gamma\) denote the associated continuous Morava \(E\)--theory.
Our main technical tool will be the Postnikov fibration \[\OS{H\Z}{3} \to BU[6, \infty) \to B\SU,\] and our main goals are to construct a model sequence of formal schemes, then show that \(E\)--theory is well-behaved enough that the formal schemes it constructs exactly match the model.
In the previous setting of \(M\SU\), we gained indirect access to the algebraic model \(C_2 \G\) by separately proving that it was modeled by \(\SDiv_0 \G\) and that this had a good comparison map to \(B\SU_E\).
This time, since we do not have access to \(C_3 \G\) or anything like it, we proceed by much more indirect means, along the lines of \Cref{CUpper3Exists}: we know that \(C^3(\G; \Gm)\) exists as an affine scheme, since we can explicitly construct it as a closed subscheme of the scheme of trivariate power series, and so we seek a map \[\Spec E_0 BU[6, \infty) \to C^3(\CP^\infty_E; \Gm)\] that does not pass through any intermediate cohomological construction.
Our main tool for accomplishing this is as follows:
\begin{definition}
A map \(f\co X \to Y\) of spaces induces a map \(f_E \co X_E \to Y_E\) of formal schemes.
In the case that \(Y\) is a commutative \(H\)--space and \(Y_E\) is connected, we can construct a map according to the composite
\begin{center}
\begin{tikzcd}[column sep=1em]
X_E \times \InternalHom{GroupSchemes}(Y_E, \Gm) \arrow[equal]{d} \arrow[densely dotted]{rr} & & \A^1 \\
X_E \times \InternalHom{FormalGroups}(Y_E, \G_m) \arrow["f_E \times 1"]{r} & Y_E \times \InternalHom{FormalGroups}(Y_E, \G_m) \arrow["\operatorname{ev}"]{r} & \G_m. \arrow["\simeq"]{u}
\end{tikzcd}
\end{center}
This is called \index{adjoint map}\textit{the adjoint map}, and we write \(\widehat f\) for any of the above versions of this map, whether valued in \(\G_m\), \(\Gm\), or \(\A^1\).
It encodes equivalent information to the \(E_0\)--linear map \[E_0 \to E_0 Y \widehat\otimes_{E_0} E^0 X\] dual to the map \(E_0 X \to E_0 Y\) induced on \(E\)--homology.
\end{definition}
\begin{remark}
This construction converts many properties of \(f\) into corresponding properties of this adjoint element.
For instance:
\begin{itemize}
\item It is natural in the source: for \(f\co X \to Y\) and \(g\co W \to X\), we have \[\widehat{fg} = \widehat{f} \circ (g_E \times 1)\co W_E \times D(Y_E) \to \Gm.\]
\item It is natural in the target: for \(f\co X \to Y\) and \(h\co Y \to Z\) a map of \(H\)--spaces, we have \[\widehat{hf} = \widehat{f} \circ (1 \times D(h_E))\co X_E \times D(Z_E) \to \Gm.\]
\item It converts sums of classes to products of maps to \(\Gm\).
\end{itemize}
\end{remark}
\begin{example}\label{AdjointBSUExample}
Recall the vector bundle \(\Pi_2\) lifted through \(B\SU\), defined at the top of this Lecture and of great interest to us in \Cref{MSUDay}.
The adjoint to the classifying map of \(\Pi_2\) is a map of formal schemes \[\widehat \Pi_2\co (\CP^\infty_E)^{\times 2} \times \Spec E_0 B\SU \to \Gm,\] which passes through the exponential adjunction to become a map \[\Spec E_0 B\SU \to \InternalHom{FormalSchemes}((\CP^\infty_E)^{\times 2}, \Gm).\]
Because the adjoint construction preserves properties of the class \(\Pi_2\), we learn that this map factors through the closed subscheme
\begin{center}
\begin{tikzcd}
\Spec E_0 B\SU \arrow[densely dotted, "\widehat \Pi_2"]{r} \arrow[bend right=10]{rr} & C^2(\CP^\infty_E; \Gm) \arrow{r} & \InternalHom{FormalSchemes}((\CP^\infty_E)^{\times 2}, \Gm)
\end{tikzcd}
\end{center}
of symmetric, rigid functions satisfying \(kU^0\)--linearity.
By careful manipulation of divisors in \Cref{SDivModelsC2}, we showed an isomorphism \[B\SU_E \cong \SDiv_0 \CP^\infty_E,\] which on applying Cartier duality showed the factorized map \[\Spec E_0 B\SU \to C^2(\CP^\infty_E; \Gm)\] to be an isomorphism.
\end{example}
\begin{example}
Similarly, we have defined a cohomology class \[\Pi_3 = (\L_1 - 1)(\L_2 - 1)(\L_3 - 1) \in kU^6(\CP^\infty)^{\times 3} = [(\CP^\infty)^{\times 3}, BU[6, \infty)].\]
As above, its adjoint induces a map (which we abusively also denote by \(\widehat \Pi_3\)) \[\widehat \Pi_3\co \Spec E_0 BU[6, \infty) \to C^3(\CP^\infty_E; \Gm),\] where \(C^3(\CP^\infty_E; \Gm)\) is the scheme of \(\Gm\)--valued trivariate functions on \(\CP^\infty_E\) satisfying symmetry, rigidity, and \(kU^0\)--linearity.%
\footnote{%
If \(C_3 \CP^\infty_E := \Sym^3_{\Div \CP^\infty_E} \Div_0 \CP^\infty_E\) were to exist, this scheme \(C^3(\CP^\infty_E; \Gm)\) would be its Cartier dual.
}
\end{example}
We also have the following analogue of the compatibility results \Cref{BUtoBUZ} and \Cref{BSUToBU} of the previous section:
\begin{lemma}[{\cite[Lemma 7.1]{AndoStrickland}, \cite[Proposition 2.27, Corollary 2.30]{AHSTheoremOfTheCube}}]
There is a commutative square
\begin{center}
\begin{tikzcd}
\Spec E_0 B\SU \arrow{d}{\widehat \Pi_2} \arrow{r} & \Spec E_0 BU[6, \infty) \arrow{d}{\widehat \Pi_3} \\
C^2(\CP^\infty_E; \Gm) \arrow{r}{\delta} & C^3(\CP^\infty_E; \Gm),
\end{tikzcd}
\end{center}
where the map%
\footnote{%
Despite its name and its formula, this map \(\delta\) does not really belong to a cochain complex from our perspective.
\emph{All} of the functions we are considering, no matter how many inputs they take, are always subject to a \emph{\(2\)}--cocycle condition.
}
\(\delta\) is specified by \[\delta(f)(x_1, x_2, x_3) := \frac{f(x_1, x_3) f(x_2, x_3)}{f(x_1 +_E x_2, x_3)}.\]
\end{lemma}
\begin{proof}
As in the proofs of \Cref{BUtoBUZ} and \Cref{BSUToBU}, this is checked by performing a calculation in \(kU\)--cohomology of projective space, where we have the relation
\begin{align*}
\Pi_3 & = (1 - \L_1)(1 - \L_2)(1 - \L_3) \\
& = ((1 - \L_1) - (1 - \L_1 \L_2) + (1 - \L_2))(1 - \L_3) \\
& = ((\pi_1 \times 1)^* - (\mu \times 1)^* + (\pi_2 \times 1)^*)((1 - \L_1)(1 - \L_3)) \\
& = ((\pi_1 \times 1)^* - (\mu \times 1)^* + (\pi_2 \times 1)^*)\Pi_2. \qedhere
\end{align*}
\end{proof}
Thus far, we have constructed the solid maps in the following commutative diagram:
\begin{center}
\begin{tikzcd}[column sep=1.5em]
\Spec E_0 B\SU \arrow{r} \arrow["\widehat \Pi_2","\cong"']{d} & \Spec E_0 BU[6, \infty) \arrow{r} \arrow["\widehat \Pi_3"]{d} & \Spec E_0 \OS{H\Z}{3} \arrow["\cong"']{d} \\
C^2(\CP^\infty_E; \Gm) \arrow["\delta"]{r} & C^3(\CP^\infty_E; \Gm) \arrow[densely dotted, "e"]{r} & \InternalHom{FormalGroups}((\CP^\infty_E)^{\wedge 2}, \G_m),
\end{tikzcd}
\end{center}
where \(\G^{\sm n}\) denotes the \index{p divisible group@\(p\)--divisible group!alternating power}exterior \(n\){\th} power of \(\G\), the left-most vertical map is an isomorphism by \Cref{CharacterizationOfBSUUpperE}, and right-most vertical map is an isomorphism by combining \Cref{EThyOfEMSpaces} with \Cref{DieudonneModsForPDivVsFormal} and \Cref{TopologicalCartierDuality}.
We would like to promote this diagram to an isomorphism of short exact sequences, and to do so we need to finish constructing the sequences themselves---we need a horizontal map \(e\) making the diagram commute.
The idea behind the construction of \(e\) is to pretend that \(\widehat \Pi_3\) is an isomorphism, so that we could completely detect \(e\) by comparing the image of the identity on \(\Spec E_0 BU[6, \infty)\) through \(\widehat \Pi_3\) to the image of the identity through \[\Spec E_0 BU[6, \infty) \to \Spec E_0 \OS{H\Z}{3} \to \CatOf{FormalGroups}((\CP^\infty_E)^{\sm 2}, \Gm).\]
Using our calculation that \((\CP^\infty_E)^{\sm 2}\) is a \index{p divisible group@\(p\)--divisible group}\(p\)--divisible group, we see that we can further restrict attention to the torsion subgroups \[(\CP^\infty_E)^{\sm 2}[p^j] = (BS^1[p^j]_E)^{\sm 2}\] which filter it, corresponding to analyzing the bundle classified by the restriction \[BS^1[p^j]^{\sm 2} \xrightarrow{\mu} \OS{HS^1[p^j]}{2} \xrightarrow{\beta_j} \OS{H\Z}{3} \xrightarrow{\gamma} \OS{kU}{6}.\]
Using the abbreviation \(B_j = BS^1[p^j]\), our summary goal is to find an express description of a map \(d\) making the following square commute:
\begin{center}
\begin{tikzcd}
B_j \sm B_j \arrow{r} \arrow["\beta_j\mu(\alpha \sm \alpha)"]{d} & \CP^\infty \sm \CP^\infty \arrow[densely dotted, "d"]{d} \\
\Susp^3 H\Z \arrow["\gamma"]{r} & \Susp^6 kU,
\end{tikzcd}
\end{center}
where we have quietly replaced spaces by their suspension spectra, and where \(\beta_j \mu(\alpha \sm \alpha)\) denotes the composite \[B_j^{\sm 2} \xrightarrow{\alpha \sm \alpha} (\Susp H\Z/p^j)^{\sm 2} \xrightarrow{\mu} \Susp^2 H\Z/p^j \xrightarrow{\beta_j} \Susp^3 H\Z.\]
Our strategy is to extend this putative square to a map of putative cofiber sequences
\begin{center}
\begin{tikzcd}[column sep=1.5em]
(\CP^\infty)^{\sm 2} / B_j^{\sm 2} \arrow["\Delta"]{r} \arrow["f", densely dotted]{d} & \Susp B_j \sm B_j \arrow{r} \arrow["\beta_j\mu(\alpha \sm \alpha)"]{d} & \Susp \CP^\infty \sm \CP^\infty \arrow[densely dotted, "d"]{d} \arrow{r} & \Susp (\CP^\infty)^{\sm 2} / (B_j)^{\sm 2} \arrow["f", densely dotted]{d} \\
\Susp^4 kU \arrow["\sigma"]{r} & \Susp^4 H\Z \arrow["\gamma"]{r} & \Susp^7 kU \arrow{r} & \Susp^5 kU,
\end{tikzcd}
\end{center}
and thereby trade the task of constructing \(d\) for the task of constructing \(f\).
This is a gain because \(\sigma\co kU \to H\Z\), the standard \(kU\)--orientation of \(H\Z\), is a considerably simpler map to understand than \(\gamma\).
\begin{lemma}[{\cite[Section 5]{AndoStrickland}}]
Make the definitions
\begin{itemize}
\item \(x\co \CP^\infty \to \Susp^2 kU\) is the \(kU\)--Euler class for \((1 - \L)\).
\item \(u\co T(\L^{\otimes p^j}) \to kU^2\) is the \(kU\)--Thom class for \(T(\L^{\otimes p^j}) = \CP^\infty / B_j\).
\item \(A_1\) is the projection \[\frac{\CP^\infty \sm \CP^\infty}{B_j \sm B_j} \to \frac{\CP^\infty \sm \CP^\infty}{B_j \sm \CP^\infty} = (\CP^\infty / B_j) \sm \CP^\infty = T(\L^{\otimes p^j}) \sm \CP^\infty.\]
\item Similarly, \(A_2\) is the swapped projection \((\CP^\infty)^{\sm 2} / B_j^{\sm 2} \to \CP^\infty \sm T(\L^{\otimes p^j})\).
\end{itemize}
Setting \(f = \mu(u \sm x) A_1 - \mu(x \sm u) A_2\) gives the desired commuting square: \[\sigma \circ f = \beta_j \mu(\alpha \sm \alpha) \circ \Delta.\]
\end{lemma}
\begin{proof}
The idea is to gain control of the cohomology group \(H\Z^4((\CP^\infty)^{\sm 2}, B_j^{\sm 2})\) by Mayer-Vietoris, which is rendered complicated by our simultaneous use of the cofiber sequence \(B_j \to \CP^\infty \to T(\L^{\otimes p^j})\) in \emph{two} factors of a smash product.
Toward this end, consider the maps
\begin{align*}
B_1\co B_j \sm T(\L^{\otimes p^j}) & \to (\CP^\infty)^{\sm 2} / B_j^{\sm 2}, &
B_2\co T(\L^{\otimes p^j}) \sm B_j & \to (\CP^\infty)^{\sm 2} / B_j^{\sm 2},
\end{align*}
which have cofibers \(A_1\) and \(A_2\) respectively.
Direct calculation~\cite[Lemma 5.6]{AndoStrickland} shows that \((\ker B_1^*) \cap (\ker B_2^*)\) is torsion-free, so if we can identify \(B_1^*(\beta_j \mu \circ \Delta)\) and \(B_2^*(\beta_j \mu \circ \Delta)\), we will be most of the way there.
We pick \(B_1\) to consider, as \(B_2\) is similar, and we start computing, beginning with
\begin{align*}
B_1^*(\beta_j \mu (\alpha \sm \alpha) \circ \Delta) & = \beta_j \mu (\alpha \sm \alpha) \circ \Delta B_1. \\
\intertext{Writing \(\delta\co T(\L^{\otimes p^j}) \to \Susp B_j\) for the going-around map, we have
\begin{center}
\begin{tikzcd}[ampersand replacement=\&, row sep=1.2em]
\Susp B_j^{\sm 2} \& \arrow["1 \sm \delta"']{l} B_j \sm T(\L^{\otimes p^j}) \arrow["B_1"]{d} \\
\& (\CP^\infty)^{\sm 2} / B_j^{\sm 2} \arrow["\Delta"]{ul},
\end{tikzcd}
\end{center}
and hence}
\beta_j \mu (\alpha \sm \alpha) \circ \Delta B_1 & = \beta_j \mu (\alpha \sm \alpha) \circ (1_B \sm \delta) \\
& = \beta_j \mu (\alpha \sm \alpha\delta). \\
\intertext{
The maps \(\alpha\) and \(\delta\) appear in the following map of cofiber sequences:
\begin{center}
\begin{tikzcd}[ampersand replacement=\&, row sep=1.2em]
B \arrow["j"]{r} \arrow["\alpha"]{d} \& P \arrow["q"]{r} \arrow["y"]{d} \& T \arrow["\delta"]{r} \arrow["w"]{d} \& \Susp B \arrow["\alpha"]{d} \\
\Susp H\Z/p^j \arrow["\beta_j"]{r} \& \Susp^2 H\Z \arrow["p^j"]{r} \& \Susp^2 H\Z \arrow["\rho"]{r} \& \Susp^2 H\Z/p^j,
\end{tikzcd}
\end{center}
where \(y\) is the standard Euler class in \(H^2 \CP^\infty\) and the first block commutes because the bottom row is the stabilization of the top row; \(w\) is the Thom class associated to \(T(\L^{\otimes p^j})\) and the middle block commutes because it witnesses the \(H\Z\)--analogue of \Cref{KtheoryConvertsTorsionToTorsion}; and the last block commutes because \([B, \Sigma^2 H\Z] = 0\) and because the other two do.
In particular, an application of the right-most block gives}
\beta_j \mu (\alpha \sm \alpha\delta) & = \beta_j \mu (\alpha \sm \rho w). \\
\intertext{Using the fact that \(\beta_j\) is the cofiber of the ring map \(\rho\), there is a juggle}
\beta_j \mu (\alpha \sm \rho w) & = \mu(\beta_j \alpha \sm w), \\
\intertext{and then we use the first block in the above map of cofiber sequences to conclude}
\mu(\beta_j \alpha \sm w) & = \mu(yj \sm w).
\end{align*}
Finally, we can use this to guess a formula for our desired map \(f\): we set \[f = \mu(u \sm x) A_1 + \mu(x \sm u) A_2,\] because, for instance,
\begin{align*}
B_1^*(\sigma f) & = \sigma (\mu(u \sm x) A_1 + \mu(x \sm u) A_2) B_1 \\
& = \sigma \mu(x \sm u) (j \sm 1),
\intertext{where we used \(A_1 B_1 = 0\) and \(A_2 B_1 = (j \sm 1)\), a calculation similar to the calculation involving \(\delta\) earlier in the proof.
Then, because \(\sigma\co kU \to H\Z\) sends Euler classes to Euler classes, we have}
\sigma \mu(x \sm u) (j \sm 1) & = \mu(y \sm w)(j \sm 1) \\
& = \mu(yj \sm w).
\end{align*}
Hence, we have crafted a class \(f\) with \(\sigma f - \beta_j \mu(\alpha \sm \alpha) \in (\ker B_1^*) \cap (\ker B_2^*)\).
What remains is to show that this class is torsion, hence identically zero.
Half of this is obvious: \(p^j \beta_j \mu(\alpha \sm \alpha) = 0\), since \(p^j \beta_j = 0\) on its own.
For \(p^j \sigma f\), we make an explicit calculation:
\begin{align*}
p^j \sigma f & = p^j(\mu(w \sm y) A_1 - \mu(y \sm w) A_2) \\
& = \mu(w \sm p^j y) A_1 - \mu(p^j y \sm w) A_2 \\
& = \mu(w \sm q^* w) A_1 - \mu(q^* w \sm w) A_2 \\
& = \mu(w \sm w) \circ ((1 \sm q)A_1 - (q \sm 1) A_2) = 0. \qedhere
\end{align*}
\end{proof}
The upshot of all of this is that we have our desired calculation of the map \(e\):
\begin{corollary}[{\cite[Lemma 5.4 and Subsection ``Modelling {\(d_n(L_1, L_2)\)}'']{AndoStrickland}}]
There is a commuting triangle
\begin{center}
\begin{tikzcd}
(\Susp^\infty BS^1[p^j])^{\sm 2} \arrow["\beta_j"]{d} \arrow["d_j"]{rd} \\
\OS{H\Z}{3} \arrow["\gamma"]{r} & \OS{kU}{6},
\end{tikzcd}
\end{center}
where \(d_j\) classifies the bundle \[d_j = \sum_{k=1}^{p^j-1}\left((1 - \L_1)(1 - \L_1^{\otimes k})(1 - \L_2) - (1 - \L_1)(1 - \L_2^{\otimes k})(1 - \L_2)\right).\]
\end{corollary}
\begin{proof}
We return to our putative map of cofiber sequences, and in particular to the right-most block
\begin{center}
\begin{tikzcd}
\CP^\infty \sm \CP^\infty \arrow["r"]{r} \arrow["d", densely dotted]{d} & (\CP^\infty)^{\sm 2} / B_j^{\sm 2} \arrow["f"]{d} \\
\Susp^6 kU \arrow["\beta"]{r} & \Susp^4 kU.
\end{tikzcd}
\end{center}
This expresses \(d\) in terms of \(f\) in the cohomology ring \(kU^*(\CP^\infty)^{\times 2}\), a by-now familiar situation.
Namely, we have
\begin{align*}
\beta d & = (\mu(u \sm x) A_1 - \mu(x \sm u) A_2)r \\
& = \mu(u \sm x)(q \sm 1) - \mu(x \sm u)(1 \sm q) \\
& = \mu(q^* u \sm x) - \mu(x \sm q^* u). \\
\intertext{At this point, we need to make an actual identification: \(u\) is a Thom class associated to the line bundle \(\L^{\oplus p^j}\), hence \(q^* u\) is its associated Euler class, which we compute in terms of \(x\) to be \(q^* u = [p^j]_{\CP^\infty_{kU}}(x)\), where the \(n\)--series on \(\CP^\infty_{kU}\) expressed in terms of the coordinate \(x\) is given by \[[n]_{\CP^\infty_{kU}}(x) = \beta^{-1}(1 - (1 - \beta x)^n).\]
We use this formula to continue the calculation:}
\mu(q^* u \sm x) - \mu(x \sm q^* u) & = [p^j]_{\CP^\infty_{kU}}(x_1) \cdot x_2 - x_1 \cdot [p^j]_{\CP^\infty_{kU}}(x_2) \\
& = x_1 x_2 \left( \frac{1 - (1 - \beta x_1)^{p^j}}{\beta x_1} - \frac{1 - (1 - \beta x_2)^{p^j}}{\beta x_2} \right) \\
& = \sum_{k=1}^{p^j-1} (x_1 [k](x_1) x_2 - x_1 [k](x_2) x_2).
\qedhere
\end{align*}
\end{proof}
We take this as inspiration for an algebraic definition:
\begin{definition}
Let \(\G\) be a connected \(p\)--divisible group of dimension \(1\).
Given a point \(f \in C^3(\G; \Gm)(T)\), we construct the function
\begin{align*}
e_{p^j}(f)\co \G[p^j]^{\sm 2} & \to \Gm, \\
e_{p^j}(f)\co (x_1, x_2) & \mapsto \prod_{k=1}^{p^j} \frac{f(x_1, kx_1, x_2)}{f(x_1, kx_2, x_2)}.
\end{align*}
As \(j\) ranges, this assembles into a map \[e\co C^3(\G; \Gm) \to \InternalHom{FormalGroups}(\G^{\sm 2}, \Gm),\] called the \index{Weil pairing}\textit{Weil pairing} associated to \(f\).
\end{definition}
By design, the map \(e\) participates in a commuting square with \[\Spec E_0 BU[6, \infty) \to \Spec E_0 \OS{H\Z}{3},\] so that this fills out the map of sequences we were considering before we got involved in this analysis of vector bundles.
What remains, then, is to assemble enough exactness results to apply the \(5\)--lemma.
\begin{lemma}[{\cite[Lemma 7.2]{AndoStrickland}}]
For \(\G\) a connected \(p\)--divisible group of dimension \(1\), the map \(\delta\co C^2(\G; \Gm) \to C^3(\G; \Gm)\) is injective.
\end{lemma}
\begin{proof}
Being finite height means that the multiplication-by-\(p\) map of \(\G\) is fppf--surjective.
The kernel of \(\delta\) consists of symmetric, biexponential maps \(\G^{\times 2} \to \Gm\).%
\footnote{%
The condition \(f \in \ker \delta\) gives \(f(t, x+y) = f(t, x) f(t, y)\), so that the \(kU^0\)--linearity condition becomes redundant: \[\frac{f(x, y) f(t, x+y)}{f(t+x, y) f(t, x)} = \frac{f(x, y) [f(t, x) f(t, y)]}{[f(t, y) f(x, y)] f(t, x)} = 1.\]
}
By restricting such a map \(f\) to \[f \co \G[p^j] \times \G \to \Gm,\] we can calculate \[f(x, p^j y) = f(p^j x, y) = f(0, y) = 1.\]
But since \(p^j\) is surjective on \(\G\), every point on the right-hand side can be so written (after perhaps passing to a flat cover of the base), so at every left-hand stage the map is trivial.
Finally, \(\G = \colim_j \G[p^j]\), so this filtration is exhaustive and we conclude that the kernel is trivial.
\end{proof}
\begin{lemma}[{\cite[Lemma 7.3]{AndoStrickland}}]
More generally, the following sequence is exact \[0 \to C^2(\G; \Gm) \xrightarrow\delta C^3(\G; \Gm) \xrightarrow{e} \InternalHom{FormalGroups}(\G^{\sm 2}, \Gm).\]
\end{lemma}
\begin{proof}[Remarks on proof]
The previous Lemma demonstrates exactness at the first node.
Showing that \(e \circ \delta = 0\) is simple enough, but constructing preimages of \(\ker e\) through \(\delta\) is hard work.
The main tool, again, is \(p\)--divisibility: given a point \((g_1, g_2) \in \G[p^j]^{\sm 2}\), over some flat base extension we can find \(g'_2\) satisfying \(p^j g'_2 = g_2\).
With significant effort, the assignment \[(g_1, g_2) \mapsto \{e_{p^j}(f)(g_1, g'_2)^{-1}\}\] as \(j\) ranges can be shown to be independent of the choices \(g'_2\).
Furthermore, if \(e(f) = 1\), it even determines an element of \(C^2(\G; \Gm)\).
\end{proof}
Luckily, the remaining bit of topology is very easy:
\begin{lemma}[{\cite[Lemma 7.5]{AndoStrickland}}]\label{ASTopologyExactSequence}
The top row of the main diagram is a short exact sequence of group schemes.
\end{lemma}
\begin{proof}
Consider the sequence of homology Hopf algebras, before applying \(\Spec\).
Since the integral homology of \(B\SU\) and the \(E\)--homology of \(\OS{H\Z}{3}\) are both free and even, the Atiyah--Hirzebruch spectral sequence for \(E_* BU[6, \infty)\) collapses to their tensor product over \(E_*\).
\end{proof}
\begin{corollary}[{\cite[Theorem 1.4]{AndoStrickland}}]
The map \[\widehat \Pi_3\co \Spec E_0 BU[6, \infty) \to C^3(\CP^\infty_E; \Gm)\] is an isomorphism.
\end{corollary}
\begin{proof}
This is now a direct consequence of the \(5\)--lemma.
\end{proof}
\begin{remark}[{cf.\ \Cref{HF2BU6Calculation}}]
We will soon show that \(H_* BU[6, \infty)\) is also free and even.
The proof of \Cref{ASTopologyExactSequence} thus also shows that the \(E\)--theory of \(\OS{kU}{8}\) fits into a similar short exact sequence.
\end{remark}
\begin{remark}[{\cite[Corollary 7.6]{AndoStrickland}}]
The topological input to the \(5\)--lemma also gave us a purely algebraic result for free: the map \(e\) is a \emph{surjective} map of group schemes.
\end{remark}
\section{Analysis of \texorpdfstring{\(BU[6, \infty)\)}{BU[6, \infty)} at infinite height}\label{SectionBU6AtInfiniteHeight}
\begin{center}
\textbf{Convention: We will write \(H\) for \(\HFp\) for the duration of the lecture.}
\end{center}
Motivated by our success at analyzing the schemes \(\Spec (E_\Gamma)_0 BU[6, \infty)\) associated to \(BU[6, \infty)\) through Morava \(E\)--theory, we move on to considering the scheme constructed via ordinary homology.
As usual, we expect this to be harder: the formal group associated to ordinary homology is not \(p\)--divisible, and this causes many sequences which are short exact from the perspective of Morava \(E\)--theory to go awry.
Instead, we will have to examine the problem more directly---luckily, the extremely polite formal group law associated to \(\G_a\) and the strong effects of the grading together make computations accessible.
We also expect the reward to be greater: as in \Cref{HopfRingForEBP}, we will be able to use a successful analysis of the ordinary homology scheme to give a description of the complex-orientable homology schemes, no matter what complex-orientable homology theory we use.
As in the \(p\)--divisible case, our framework is a map of sequences
\begin{center}
\begin{tikzcd}
\Spec H_* B\SU \arrow{r} \arrow{d} & \Spec H_* BU[6, \infty) \arrow{r} \arrow{d} & \text{``\(\Spec H_* \OS{H\Z}{3}\)''} \arrow{d} \\
C^2(\G_a; \Gm) \arrow{r} & C^3(\G_a; \Gm) \arrow{r} & \InternalHom{FormalGroups}(\G_a^{\sm 2}, \Gm).
\end{tikzcd}
\end{center}
Our task, as then, is to discern as much about these nodes as possible, as well as any exactness properties of the two sequences.%
\footnote{%
The quotes indicate that the right-hand topological node does not even make sense: \(H_* \OS{H\Z}{3}\) is not even-concentrated, and we do not understand the algebraic geometry of spaces whose homology is not even-concentrated.
This is quite troubling---but we will press on for now.
}
We begin with the topological sequence.
The Serre spectral sequence \[E_2^{*, *} = H^* B\SU \otimes H^* \OS{H\Z}{3} \Rightarrow H^* BU[6, \infty)\] gives us easy access to the middle node, and we will recount the case of \(p = 2\) in detail.
In this case, the spectral sequence has \(E_2\)--page
\begin{align*}
E_2^{*, *} & = \HFtwo^* B\SU \otimes \HFtwo^* \OS{H\Z}{3} \\
& \cong \F_2[c_2, c_3, \ldots] \otimes \F_2\left[\Sq^{2^n} \Sq^{2^{n-1}} \cdots \Sq^2 \iota_3 \mid n \ge 1 \right].
\end{align*}
Because the target is \(6\)--connective, we must have the differential \(d_4 \iota_3 = c_2\), which via the Kudo transgression theorem spurs the family of differentials \[d_{4+I_+} \Sq^I \iota_3 = \Sq^I c_2.\]
This necessitates understanding the action of the Steenrod operations on the cohomology of \(B\SU\), which is due to \index{Wu formulas}Wu~\cite[Section 23.6]{MayConciseCourse}:%
\footnote{%
The reader might enjoy reviewing some of the formulas from \Cref{PiStarMOSection} and proving their \(BU\)-- and \(BSU\)--analogues, which entail this one.
}
\[\Sq^{2^j} \cdots \Sq^4 \Sq^2 c_2 \equiv c_{1 + 2^j} \pmod{\text{decomposables}}.\]
Accounting for the squares of classes left behind, this culminates in the following calculation:
\begin{theorem}\label{HF2BU6Calculation}
There is an isomorphism \[\HFtwo^* BU[6, \infty) \cong \frac{\HFtwo^* BU}{(c_j \mid j \ne 2^k + 1, j \ge 3)} \otimes \F_2[\iota_3^2, (\Sq^2 \iota_3)^2, \ldots].\]
\end{theorem}
\begin{proof}[Further remarks on proof]
More generally, there is an isomorphism \[\HFtwo^* \OS{kU}{2k} \cong \frac{\HFtwo^* BU}{(c_j \mid \sigma_2(j - 1) < k - 1)} \otimes \operatorname{Op}[\Sq^3 \iota_{2k-1}],\] where \(\sigma_2\) is the dyadic digital sum and ``\(\operatorname{Op}\)'' denotes the Steenrod--Hopf--subalgebra of \(\HFtwo^* \OS{H\Z}{2k-1}\) generated by the indicated class~\cite{Singer,Stong}.
Stong specialized to \(p = 2\) and carefully applied the Serre spectral sequence to the fibrations \[\OS{kU}{2(k+1)} \to \OS{kU}{2k} \to \OS{H\Z}{2k}.\]
Singer worked at an arbitrary prime and used the \index{bar spectral sequence}Eilenberg--Moore spectral sequence for the fibrations \[\OS{H\Z}{2k-1} \to \OS{kU}{2(k+1)} \to \OS{kU}{2k}.\]
Both used considerable knowledge of the interaction of these spectral sequences with the Steenrod algebra.
These methods and results generalize directly to odd primes: Singer shows \[\HFp^* \OS{kU}{2k} \cong \frac{\HFp^* BU}{(c_j \mid \sigma_p(j-1) < k-1)} \otimes \prod_{t=0}^{p-2} \operatorname{Op}[\beta \mathcal P^1 \iota_{2k-3-2t}].\]
The necessary modifications come from the structure of the unstable mod--\(p\) Steenrod algebra, odd--primary analogues of Wu's formulas~\cite{Shay}, and the Eilenberg--Moore spectral sequence.
Specializing to \(k = 3\), this again presents \(H^* BU[6, \infty)\) as a quotient by \(H^* BU\) by certain Chern classes whose indices satisfy a \(p\)--adic digital sum condition, tensored up with the Steenrod--Hopf--subalgebra of \(H^* \OS{H\Z}{3}\) generated by \(\beta \mathcal P^1 \iota_3\).
\end{proof}
From the edge homomorphisms in \Cref{HF2BU6Calculation}, we can already see that the sequence of Hopf algebras \[H_* \OS{H\Z}{3} \to H_* BU[6, \infty) \to H_* B\SU\] modeling the sequence of formal group schemes \[\text{``\((\OS{H\Z}{3})_{\mathit{HP}}\)''} \to BU[6, \infty)_{\mathit{HP}} \to B\SU_{\mathit{HP}}\] is neither left-exact nor right-exact.
This seems bleak.
Ever the optimists, we embark on an analysis of the available algebra all the same.
We begin by reusing a strategy previously employed in \Cref{CalculationOfLTTangentSpace}: first perform a \index{formal scheme!tangent space}\index{tangent spectral sequence}tangent space calculation \[T_0 C^k(\G_a; \Gm) \cong C^k(\G_a; \G_a),\] then study the behavior of the different tangent directions to determine the full object \(C^k(\G_a; \Gm)\).
As a warm-up to the case \(k = 3\) of interest, we will first consider the case \(k = 2\).
We have already performed the tangent space calculation:
\begin{corollary}[{cf.\ \Cref{Symmetric2CocycleLemma}}]
The collection of \index{symmetric 2 cocycle@symmetric \(2\)--cocycle!lemma}symmetric additive \(2\)--cocycles of homogeneous degree \(n\) is spanned by the single element
\[\pushQED{\qed}
c_n(x, y) = \begin{cases} (x + y)^n - x^n - y^n & \text{if \(n \ne p^j\)}, \\ \frac{1}{p} \left( (x + y)^n - x^n - y^n \right) & \text{if \(n = p^j\)}. \end{cases} \qedhere
\popQED\]
\end{corollary}
Our goal, then, is to select such an \(f_+ \in C^2(\G_a; \G_a)\) and study the minimal conditions needed on a symbol \(a\) to produce a point in \(C^2(\G_a; \Gm)\) of the form \(1 + af_+ + \cdots\).
Since \(c_n = \frac{1}{d_n} \delta(x^n)\) is itself produced by an additive formula, life would be easiest if we had access to an exponential, so that we could build \[\text{``\( \delta_{(\G_a; \Gm)} \exp(a_n x^n)^{1/d_n} = \exp(\delta_{(\G_a; \G_a)} a_n x^n / d_n) = \exp(a_n c_n). \)''}\]
However, the existence of an exponential series is equivalent to requiring that \(a_n\) carry a divided-power structure, which turns out not to be minimal.
In fact, we can show that \emph{no} conditions on \(a_n\) are required \emph{at all}.
\begin{lemma}[{\cite[Proposition 3.9]{AHSTheoremOfTheCube}}]
Recall from \Cref{ArtinHasseExponential} that the \index{Artin Hasse exponential@Artin--Hasse exponential}\textit{Artin--Hasse exponential} is the power series \[E_p(t) = \exp\left( \sum_{j=0}^\infty \frac{t^{p^j}}{p^j} \right) \in \Z_{(p)}\ps{t}.\]
Write \(\delta_{(\G_a, \Gm)}\co C^1(\G_a; \Gm) \to C^2(\G_a; \Gm)\) and \[d_n = \begin{cases} 1 & \text{if \(n = p^j\)}, \\ 0 & \text{otherwise}. \end{cases}\]
The class \(g_n(x, y) = \delta_{(\G_a,\Gm)} E_p(a_n x^n)^{1/p^{d_n}}\) is a series in \(\F_p[a_n]\ps{x,y}\) and presents a point in \(C^2(\G_a; \Gm)\) reducing to \(a_n c_n \in C^2(\G_a; \G_a)\) on tangent spaces.
\end{lemma}
\begin{proof}
Recall furthermore from \Cref{ArtinHasseExponential} that \(E_p\) has coefficients in \(\Z_{(p)}\), and hence it can be reduced to a series with coefficients in \(\F_p\) if we so choose.
With this in mind, we make the calculation
\begin{align*}
g_n(x, y) & = \delta_{(\G_a, \Gm)} E_p(a_n x^n)^{1/p^{d_n}} \\
& = \exp\left( \sum_{j=0}^\infty \frac{a_n^{p^j} \delta_{(\G_a, \G_a)} x^{np^j}}{p^{j + d_n}} \right) \\
& = \exp\left( \sum_{j=0}^\infty \frac{a_n^{p^j} c_{np^j}(x, y)}{p^j} \right).
\end{align*}
As claimed, the leading term is exactly \(a_n c_n\), this series is symmetric, and since it is in the image of \(\delta_{(\G_a, \Gm)}\) it is certainly a \(2\)--cocycle.
Finally, the integrality properties of \(E_p\) mean that \(g_n\) has coefficients in \(\Z_{(p)}[a_n]\).
\end{proof}
Letting \(n\) range, this culminates in the following calculation:
\begin{lemma}[{\cite[Equation 3.7]{AHSTheoremOfTheCube}}]
The map \[\Spec \Z_{(p)}[a_n \mid n \ge 2] \xrightarrow{\prod_{n \ge 2} g_n} C^2(\G_a; \Gm) \times \Spec \Z_{(p)}\] is an isomorphism.%
\footnote{%
This product decomposition only happens after \(p\)--localization, and the decomposition is different at each prime~\cite[Section 3.3]{AHSTheoremOfTheCube}.
Compare this with results of Adams~\cite{AdamsPrimitiveElts} or of Adams--Priddy~\cite{AdamsPriddy}.
}
\qed
\end{lemma}