<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.10.0">Jekyll</generator><link href="https://antieau.github.io/feed.xml" rel="self" type="application/atom+xml" /><link href="https://antieau.github.io/" rel="alternate" type="text/html" /><updated>2026-04-06T20:42:43+00:00</updated><id>https://antieau.github.io/feed.xml</id><title type="html">Benjamin Antieau</title><subtitle>Blog on K-theory, Hochschild homology, and algebraic geometry by Benjamin Antieau.</subtitle><author><name>Benjamin Antieau</name><email>antieau@northwestern.edu</email></author><entry><title type="html">snforacle</title><link href="https://antieau.github.io/2026/04/06/snforacle.html" rel="alternate" type="text/html" title="snforacle" /><published>2026-04-06T00:00:00+00:00</published><updated>2026-04-06T00:00:00+00:00</updated><id>https://antieau.github.io/2026/04/06/snforacle</id><content type="html" xml:base="https://antieau.github.io/2026/04/06/snforacle.html"><![CDATA[<link rel="stylesheet" type="text/css" href="/assets/asciinema-player.css" />

<div id="snf-demo"></div>
<script src="/assets/asciinema-player.min.js"></script>

<script>
  AsciinemaPlayer.create('/assets/casts/snf_demo.cast', document.getElementById('snf-demo'), { autoPlay: true, fit: "width", terminalFontSize: "small" });
</script>

<p>If $M$ is an integer matrix, then the Smith normal form of $M$ is an $m\times n$ matrix $D$ with non-zero
entries concentrated along the diagonal given by $d_i=d_{i,i}$. These entries satisfy the
divisibility relation $d_i|d_{i+1}$. The matrix $D$ is uniquely determined by the requirement that
$UMV=D$ for $U$ and $V$ unimodular square matrices, where unimodular means that $\det(U)=\det(V)=1$.</p>

<p>An SNF algorithm is one which computes $D$ from $M$. In many cases, one also requires the
matrices $U$ and $V$, although these are not unique. The performance of SNF algorithms is somewhat
variable across different back ends and I required the ability to easily call these different forms
from a uniform Python package. <code class="language-plaintext highlighter-rouge">SAGE</code> performs just such an abstraction, but I did not want to
assume SAGE is available.</p>

<p>The construction of such a Python package would not have been difficult for me, but doing it well
would have taken 2-3 days of time, essentially spent on non-mathematical work. For that reason, I
provided <code class="language-plaintext highlighter-rouge">Claude Code</code> (henceforth Claude) with the following prompt.</p>

<p><code class="language-plaintext highlighter-rouge">This will be a Python project aimed at exposing different libraries Smith normal form
algorithms via a uniform JSON interface.  The first interface should be to cypari2.
I would like this to be controlled by two JSON Schemas, one for dense integer matrices
and one for sparse integer matrices.  It should be validated by Pydantic.  Then, the main
exposed functions should take in as input an integer matrix in one of these JSON formats
and should output either the diagonal SNF matrix or the diagonal SNF matrix together with
the transformation matrices, both with appropriate JSON outputs.</code></p>

<p>Pydantic is a Python library to automate the validation of Python classes. JSON is a standard for
making human-readable data formats that can also be read by machine.</p>

<p>The response to this first prompt was a handful of JSON schemas for input and output as well as a
working Pari back end. Since then, I have prompted Claude to add back ends for SAGE, Magma, and Flint
and to extend the functionality to Hermite normal form, matrices over finite fields $\bF_p$, and
matrices over $\bF_p[x]$.</p>

<p>In addition to those major features, Claude also created an implementation in pure Python for the
functionality above. There are now hundreds of tests designed to test the correctness of the system
and an extensive benchmarking suite. (Pari is the clear winner in the integer matrix tests.)</p>

<p>Here are some notes on the process.</p>

<ol>
  <li>
    <p>Claude noticed quickly that Pari returns elementary divisors in a non-conventional order; without
prompting, it created the appropriate permutation matrices to transform the Pari return type to
the usual convention where $d_i$ divides $d_{i+1}$.</p>
  </li>
  <li>
    <p>In our extensive testing we discovered a bug in <code class="language-plaintext highlighter-rouge">FLINT</code> which has now been <a href="https://github.com/flintlib/flint/issues/2592">fixed</a> by their team.</p>
  </li>
  <li>
    <p>I say we in the preceding paragraph for the following reason. In order to seriously test
<code class="language-plaintext highlighter-rouge">snforacle</code>, I prompted Claude to create an <em>agent</em> to attempt to break the package using
mathematics. The <em>evil-mathematician</em> agent it created based on my prompt has a system prompt
which begins with
 <em>`You are an evil mathematician — a chaos-loving adversarial tester with deep expertise in linear algebra, number theory, and integer matrix computation. Your mission is to break code by crafting the most
 diabolical, pathological, and sneaky inputs imaginable. You take perverse delight in finding the edge cases that developers forgot.</em>
 and then goes on in detail.
 For the most part, this agent did not discover any big bugs, but it did result in a huge number
 of unit tests on a wide array of matrices.</p>
  </li>
  <li>
    <p>The previous testing did reveal certain problems with huge input lines to MAGMA which were
discovered with further testing.</p>
  </li>
  <li>
    <p>In addition to the tests produced by the <code class="language-plaintext highlighter-rouge">evil-mathematician</code> agent, I instructed Claude to
create a test comparing all back ends where possible. (Not each system makes available SNF and
HNF over all of the rings in question.)</p>
  </li>
</ol>

<p>The utility demonstrated above by Claude is immense. I also had a lot of fun creating this little
utility and it is now live and being used in other parts of my work which are currently AI-free.
My confidence in the mathematical correctness of this system is higher than the typical standard in
computer algebra systems, in part because of the ability to easily create hundreds or thousands of
tests.</p>

<p>Despite my enthusiasm, there are some tasks at which Claude does not excel. I played around for 30
minutes one day attempting to create a video like the one above with <code class="language-plaintext highlighter-rouge">asciinema</code>, a Python package
which makes it possible to record terminal sessions and display them. These result in very
light-weight videos. I prompted Claude to create a video correctly displaying the SNF algorithm on
a small integer matrix. (I believe I first asked for a $4\times 4$ matrix.) After all, Claude had
provided the algorithm for the pure Python implementation of SNF, so this should have been easy.
But, I did not succeed in eliciting the desired response.</p>

<p>A few days later I realized that I should change the task. I asked Claude instead to write a script
that creates such videos for arbitrary input matrices. This it accomplished in one go, creating the
kind of video you can watch below. This was created with</p>

<p><code class="language-plaintext highlighter-rouge">python tools/generate_asciinema.py '[[2,2,5],[1,3,-1],[3,6,11]]' snf_demo.cast</code></p>

<p>and can then be played with</p>

<p><code class="language-plaintext highlighter-rouge">asciinema play snf_demo.cast</code></p>

<p>The only changes I asked it to make after the first attempt were
stylistic.</p>

<p>The lesson I take from this is that Claude Code is <em>very</em> good at coding, but less good at long,
deterministic explanations. Of course, this is a well-documented property of LLMs and is also
obviously a feature of their training. It might be easier to get good results by reducing tasks to
replicable scripts.</p>]]></content><author><name>Benjamin Antieau</name><email>antieau@northwestern.edu</email></author><summary type="html"><![CDATA[New Python package snforacle giving a uniform interface for Smith normal form.]]></summary></entry><entry><title type="html">New paper: the animation of the opposite of finite sets</title><link href="https://antieau.github.io/2025/09/15/finop.html" rel="alternate" type="text/html" title="New paper: the animation of the opposite of finite sets" /><published>2025-09-15T00:00:00+00:00</published><updated>2025-09-15T00:00:00+00:00</updated><id>https://antieau.github.io/2025/09/15/finop</id><content type="html" xml:base="https://antieau.github.io/2025/09/15/finop.html"><![CDATA[<p>My paper <a href="#finop">[1]</a> is out. The main result is that the animation of the category $\Fin^\op$
is a $1$-category, where $\Fin^\op$ denotes the opposite of the category of finite sets. Recall
that the animation of an $\infty$-category $\Cscr$ with finite coproducts is the full subcategory
$\mathrm{An}(\Cscr)\subseteq\Fun(\Cscr^\op,\An)$ consisting of the
functors $\Cscr^\op\rightarrow\An$ which preserve finite products. The animation of $\Fin^\op$
is thus the $\infty$-category $\An(\Fin^\op)$ of functors $\Fin\rightarrow\An$ that preserve
finite products.</p>

<p>The proof is to show that any $X\in\mathrm{An}(\Fin^\op)$, when viewed as a product preserving
functor $\Fin\rightarrow\An$ takes values in $\Set\subseteq\An$. For this, I observed that each set
with $p$ elements admits a group structure corresponding to $\bZ/p$. Since $X$ preserves finite
products, $X(\bZ/p)$ inherits the structure of a grouplike $\bE_\infty$-object in anima. But, it
also has the property that $p=0$ on $X(\bZ/p)$, which implies that $p=0$ on $\pi_i(X(\bZ/p))$ for
any $i\geq 0$ and any choice of base point. Using that $\bZ/p$ is a retract of $(\bZ/\ell)^N$ for
any other prime $\ell$ and a suitable $N&gt;0$, we conclude that $\pi_i(X(\bZ/p))=0$ for $i&gt;0$ and any
base point. It follows that $X(S)$ is a retract of a set for any nonempty finite set $S$ and is
hence equivalent to a set.
One can give a direct argument to show that $X(\emptyset)$ is also equivalent to a set, which finishes the
proof.</p>

<p>Georg Lehner has also proved this result Theorem 5.6 of <a href="#lehner">[3]</a>. His idea is very similar but instead
of working with group objects in $\Fin$ he works with Boolean algebra objects.
Another proof uses commutative algebra and the fact that if $S\leftarrow R\rightarrow T$ is
a span of perfect commutative $\bF_p$-algebras, then the derived tensor product $S\otimes_RT$ is in
fact equivalent to an ordinary commutative $\bF_p$-algebra. This was established in <a href="#bs">[2]</a> by Bhatt and Scholze.</p>

<p><em>Thanks to Emile Bouaziz for the following.</em>
A related result is noted by Pridham in <a href="#pridham">[4]</a> who shows that animated $C^0$-rings take
$\Set$-values.</p>

<h1 id="references">References</h1>

<p><span id="finop">
[1] Antieau, <em>The animation of the opposite of finite sets</em>,
<a href="https://arxiv.org/abs/2508.13106"><tt>arXiv:2508.13106</tt></a>.
</span></p>

<p><span id="bs">
[2] Bhatt, Scholze, <em>Projectivity of the Witt vector affine Grassmannian</em>,
Invent. math. (2017) 209:329–403,
<a href="https://arxiv.org/abs/1507.06490"><tt>arXiv:1507.06490</tt></a>.
</span></p>

<p><span id="lehner">
[3] Lehner, <em>Algebraic K-theory of coherent spaces</em>, 
<a href="https://arxiv.org/abs/2507.00221"><tt>arXiv:2507.00221</tt></a>.
</span></p>

<p><span id="pridham">
[4] Pridham, <em>Derived topological stacks?</em>,
<a href="https://mathoverflow.net/a/291414/100"><tt>MathOverflow answer</tt></a>.</span></p>]]></content><author><name>Benjamin Antieau</name><email>antieau@northwestern.edu</email></author><category term="2025" /><category term="XR" /><summary type="html"><![CDATA[New paper proving that the animation of the opposite of finite sets is a 1-category.]]></summary></entry><entry><title type="html">Complete Segal objects</title><link href="https://antieau.github.io/2025/08/18/cso.html" rel="alternate" type="text/html" title="Complete Segal objects" /><published>2025-08-18T00:00:00+00:00</published><updated>2025-08-18T00:00:00+00:00</updated><id>https://antieau.github.io/2025/08/18/cso</id><content type="html" xml:base="https://antieau.github.io/2025/08/18/cso.html"><![CDATA[<div style="display:none">
$\renewcommand\CGp{\mathrm{CGp}}\renewcommand\CMon{\mathrm{CMon}}$
</div>

<!--ëé-->

<p>One model for $\infty$-categories is the theory of complete Segal objects in anima, due to Rezk <a href="#rezk">[5]</a>. The internal
theory of complete Segal anima is shown by Lurie <a href="#lurie_goodwillie">[3]</a> to be equivalent to $\Cat_\infty$.
In general, one can use complete Segal objects to speak of category objects in quite general
$\infty$-categories.
In this post,
I explain that, for example, complete Segal objects in $\CMon(\Ani)$ are equivalent to symmetric monoidal
$\infty$-categories. Here, $\CMon(\Ani)$ is the $\infty$-category of commutative monoid objects in
$\Ani$, also known as the homotopy theory of $\bE_\infty$-spaces.
This material is well-known to experts and I claim no originality.</p>

<h1 id="segal-objects">Segal objects</h1>

<p>Let $\Cscr$ be an $\infty$-category with finite limits and let $\s\Cscr$ denote the
$\infty$-category $\Fun(\Delta^\op,\Cscr)$ of simplicial objects in $\Cscr$. For $n\geq 1$ and
$1\leq i\leq n$, let $\rho_i\colon[1]\rightarrow[n]$ be the function $\rho_i(0)=i-1$ and $\rho_i(1)=i.$
Given an object
$X_\bullet\in\s\Cscr$, there are induced maps $\rho_i\colon X_n\rightarrow X_1$.
Moreover, since $\rho_i\circ\partial_0=\rho_{i+1}\circ\partial_1$, the $\rho_i$ assemble into a map
\(X_n\rightarrow X_1\times_{X_0}X_1\times_{X_0}\cdots\times_{X_0}X_1.\) The <strong>Segal condition</strong> is that these
maps are equivalences for $n\geq 2$.
A <strong>Segal object</strong>, or <strong>category object</strong>, in $\Cscr$ is a simplicial object satisfying the Segal condition. The
$\infty$-category of Segal objects in $\Cscr$ is the full subcategory $\Cat(\Cscr)\subseteq\s\Cscr$ on the
Segal objects.</p>

<p>Suppose that $X_\bullet\in\Cat(\Ani)$ is a Segal anima.
The connection between Segal objects and category theory is that $X_0$ is supposed to be anima of objects,
$X_1$ is the anima of morphisms, and the Segal condition says that composition is well-defined up
to coherent homotopy. For example, given two points $x,y\in X_0$, the mapping anima
$\Map_\Cscr(x,y)$ will be obtained as the fiber of $X_1$ over the <code class="language-plaintext highlighter-rouge">source</code> and <code class="language-plaintext highlighter-rouge">target</code> maps
$X_1\xrightarrow{\partial_1\times\partial_0} X_0\times X_0$.</p>

<h1 id="groupoids">Groupoids</h1>

<p>Again, suppose that $\Cscr$ admits finite limits.
Let $X=X_\bullet\in\s\Cscr$ be a simplicial object. Suppose that $S\cup T=[n]$ is a partition of
$[n]$ and that $S\cap T$ is a singleton ${i}$. Then, there is a natural map \(X([n])\rightarrow
X(S)\times_{X(\{i\})}X(T).\) One says that $X_\bullet$ is a <strong>groupoid</strong> object of $\Cscr$ if this
map is an equivalence for all $n\geq 2$ and all such partitions. Let $\Gpd(\Cscr)\subseteq\s\Cscr$
denote the full subcategory of groupoid objects.</p>

<p>The definition here is a form of the Kan condition.</p>

<p>The notion of groupoid objects is also important in theory of $\infty$-topoi. Indeed,
the $\infty$-categorical generalization of Giraud’s axioms for an $\infty$-topos includes the axiom
that every groupoid object $X_\bullet$ be effective. This means that the geometric realization
$|X_\bullet|$ exists and that $X_\bullet$ is equivalent to the Čech complex of the natural map
$X_0\rightarrow|X_\bullet|$.</p>

<p><strong>Example.</strong>
Constant simplicial objects are groupoids and groupoid objects are category objects.
A groupoid object is said to be constant if it is in the image of the constant simplicial object
functor $\Cscr\rightarrow\Gpd(\Cscr)\subseteq\Cat(\Cscr)\subseteq\s\Cscr$.</p>

<h1 id="complete-segal-objects">Complete Segal objects</h1>

<p>If $\Cscr$ admits finite limits, the inclusion $\Gpd(\Cscr)\subseteq\Cat(\Cscr)$ admits a right
adjoint $(-)^\we$. When $\Cscr=\Ani$, this adjoint can be described as follows. Given a category object
$X_\bullet\in\Cat(\Ani)$ there is a homotopy category $\Ho(X_\bullet)$ whose set of objects is
$X_0$ and whose morphisms are built out of homotopy classes of elements of $X_1$. One can define
$X_\bullet^\we\rightarrow X_\bullet$ by declaring that in simplicial degree $0$ it is $X_0$ and
in simplicial degree $n\geq 1$ it corresponds to the components of $X_n$
corresponding to $n$ composable morphisms each of which is invertible in the homotopy category.</p>

<p>One can use Yoneda to extend this construction to more general $\Cscr$. To do so, one uses the
univalence property. (This perspective was explained to me by Peter Haine.) Let $\Delta^3$ be the
$3$-simplex on objects ${0,1,2,3}$. Let $K$ be the quotient of $\Delta^3$ obtained by collapsing
the $1$-simplices $\Delta^{{0,2}}$ and $\Delta^{{1,3}}$ to separate points. Let $K^0\subseteq K$ be the
image of $\Delta^{{1,2}}$. Since $\Cscr$ admits finite limits, given $X\in\s\Cscr$, it makes
sense to evaluate $X$ on $K$ and on $K^0$.</p>

<p>The main thing we need about the right adjoint $X\mapsto X^\we$ is that the span
$X^\we(K^0)\leftarrow X^\we(K)\rightarrow X(K)$ consists of equivalences and that
$X^\we(\Delta^0)\rightarrow X(\Delta^0)$ is an equivalence for every $X\in\Cat(\Cscr)$.</p>

<p>A category object $X\in\Cat(\Cscr)$ is a <strong>complete Segal object</strong> in $\Cscr$ if the
groupoid object $\Cscr^\we$ is constant (in which case it is constant on $X_0$).</p>

<p><strong>Theorem</strong> (Lurie). There is a fully faithful functor
$\Cat_\infty\rightarrow\s\Ani$ whose essential image consists of the complete Segal anima.</p>

<p>In more detail, there is a full subcategory of $\Cat_\infty$ consisting of the objects $\Delta^n=[n]$ for
$n\geq 0$, where $[n]={0&lt;\cdots&lt;n}$. These assemble into a cosimplicial ($\infty$-)category. The
restricted Yoneda along $\Delta^\bullet\colon\Delta\rightarrow\Cat$ induces a functor
$\Cat_\infty\rightarrow\s\Ani$. It is this functor which appears in the theorem.
This means in particular that if $\Cscr$ is an $\infty$-category with associated complete Segal
anima $X_\bullet$, then $X_0=\Map_{\Cat_\infty}(\Delta^0,\Cscr)$, the underlying anima
of $\Cscr$ and $X_1=\Map_{\Cat_\infty}(\Delta^1,\Cscr)$, the anima of arrows in $\Cscr$.</p>

<h1 id="symmetric-monoidal-infty-categories">Symmetric monoidal $\infty$-categories</h1>

<p>These too admit a description as certain functor objects. Recall from Section 2.4.2 of <a href="#lurie_ha">[4]</a> that a symmetric monoidal
$\infty$-category is the same as a commutative monoid object in $\Cat_\infty$. In particular, the
$\infty$-category of symmetric monoidal $\infty$-categories and symmetric monoidal functors is
equivalent to $\CMon(\Cat_\infty)$. These admit a compact description as follows. Let
$\Fin^\part$ denote the category of finite sets and partially defined functions. The objects can be
indexed on sets $\langle n\rangle = {1,\ldots,n}$ for $n\geq 0$. The morphisms $\langle
m\rangle\rightarrow\langle n\rangle$ are functions to ${1,\ldots,n}$ defined on a subset of
${1,\ldots,m}$.</p>

<p>Let $\Cscr$ be an $\infty$-category with finite products.
Given a functor $Y\colon\Fin^{\part}\rightarrow\Cscr$, there are partially defined functions
$\gamma_i\colon{1,\ldots,n}\dashrightarrow{1}$ for $1\leq i\leq n$ sending $i$ to $1$ and
undefined elsewhere. These induce a map $Y(\langle n\rangle)\rightarrow\prod_{i=1}^n Y(\langle
1\rangle)$.</p>

<p><strong>Definition.</strong> 
A commutative monoid object in $\Cscr$ is a functor $Y\colon\Fin^\part\rightarrow\Cscr$ such that
for each $n\geq 0$, the map $Y(\langle n\rangle)\rightarrow\prod_{i=1}^n Y(\langle
1\rangle)$ defined above is an equivalence.</p>

<p>This definition is due to Segal who called these objects $\Gamma$-spaces in the special case they
take values in an appropriate model for the $\infty$-category of anima.</p>

<p><strong>Remark.</strong> In anima, the commutative monoid objects model $\bE_\infty$-anima, i.e., the homotopy
theory of topological spaces equipped with an action of an appropriate $\bE_\infty$-operad.</p>

<p>The principal I want to highlight is summarized in the following proposition.</p>

<p><strong>Proposition.</strong>
There is a fully faithful functor $\CMon(\Cat_\infty)\rightarrow\s\CMon(\Ani)$ whose essential
image consists of the complete Segal objects in $\bE_\infty$-anima.</p>

<p><strong>Proof.</strong>
Both sides admit embeddings into $\Fun(\Fin^\part\times\Delta^\op,\Ani)$. It suffices to check that
the two sides match up. If we drop completeness, we see that
$\Cat(\CMon(\Ani))\we\CMon(\Cat(\Ani))$, since limits in functor categories are computed pointwise.
However, the same fact implies that an object of $\Cat(\CMon(\Ani))$ is complete if and only if the
corresponding object of $\Fun(\Fin^\part,\Cat(\Ani))$ takes values in complete Segal anima.
This completes the proof.</p>

<p>I like this description because it makes somewhat more transparent how the symmetric monoidal
structure interacts with the category theory structure. The proposition says that to give a
symmetric monoidal $\infty$-category, one must first of all specify an anima $X_0$ of objects
<em>together with a commutative monoid structure on $X_0$</em>. Then, there must be an $\bE_\infty$-anima
$X_1$ of morphisms. The <code class="language-plaintext highlighter-rouge">identity morphism</code> map $X_0\rightarrow X_1$ is a map of
$\bE_\infty$-anima. The <code class="language-plaintext highlighter-rouge">source</code> and <code class="language-plaintext highlighter-rouge">target</code> maps $X_1\rightarrow X_0$ are maps of
$\bE_\infty$-anima, and on and on and on.</p>

<p><strong>Example.</strong>
More generally, if $\Iscr$ is an algebraic theory, then we see that $\Mod_\Iscr(\Cat_\infty)$, the
$\infty$-category of models of $\Iscr$ in $\Cat_\infty$, is
equivalent to the $\infty$-category of complete Segal objects in $\Mod_\Iscr(\Ani)$.</p>

<p><strong>Remark.</strong> The proposition is related to a result of Gepner–Groth–Nikolaus, specifically
Proposition B-3 of <a href="#ggn">[1]</a>, which implies in particular that
$\CMon(\Cat_\infty)\we\Cat_\infty\otimes\CMon(\Ani)$, where the tensor product is taking place in
$\Pr^\L$.</p>

<h1 id="grouplike-symmetric-monoidal-infty-categories">Grouplike symmetric monoidal $\infty$-categories</h1>

<p>Recall that a commutative monoid $X$ is grouplike if the map $X\times X\rightarrow X\times X$
induced by summation and one of the projections is an equivalence. If $\Cscr$ has finite products, let $\CGp(\Cscr)\subseteq\CMon(\Cscr)$
be the full subcategory of grouplike commutative monoids.</p>

<p><strong>Example.</strong> The $\infty$-category $\CGp(\Ani)$ is equivalent to the $\infty$-category $\Sp_{\geq
    0}$ of connective spectra.</p>

<p><strong>Lemma.</strong> Suppose that $\Cscr$ is a symmetric monoidal $\infty$-category. If $\Cscr$ is grouplike,
then it is contained in $\CGp(\Ani)$.</p>

<p><strong>Proof.</strong> Arguments such as we have already made imply that $\CGp(\Cat_\infty)$ is equivalent to
the $\infty$-category of complete Segal objects in $\CGp(\Ani)$. I claim that any complete Segal
object in $\CGp(\Ani)$ is in fact a groupoid and hence constant. This will imply that the entire
$\infty$-category of complete Segal objects in $\CGp(\Ani)$ is equivalent to $\CGp(\Ani)$.
For this it is enough to check that every morphism in a grouplike symmetric monoidal
$\infty$-category is in fact an equivalence. This is a straightforward exercise left to the reader.</p>

<h1 id="references">References</h1>

<p><span id="ggn">
[1] Gepner, Groth, and Nikolaus, <em>Universality of multiplicative infinite loop space machines</em>,
Alg. Geo. Top. <strong>15</strong> (2015), 3107-3153. [<a href="https://arxiv.org/abs/1305.4550">arXiv:1305.4550</a>]</span></p>

<p><span id="lurie_htt">
[2] Lurie, <em>Higher topos theory</em>, <a href="https://www.math.ias.edu/~lurie/papers/HTT.pdf">version dated April 2017</a>.
</span></p>

<p><span id="lurie_goodwillie">
[3] Lurie, <em>$(\infty,2)$-categories and Goodwillie calculus</em>, <a href="https://www.math.ias.edu/~lurie/papers/GoodwillieI.pdf">version dated 8 October
2009</a>.</span></p>

<p><span id="lurie_ha">
[4] Lurie, <em>Higher algebra</em>, <a href="https://www.math.ias.edu/~lurie/papers/HA.pdf">version dated 18 September 2017</a>.
</span></p>

<p><span id="rezk">
[5] Rezk, <em>A model for the homotopy theory of homotopy theory</em>,
Trans. Amer. Math. Soc. <strong>35</strong>(3) (2001), 973–1007.
[<a href="https://arxiv.org/abs/math/9811037">arXiv:math/9811037</a>]</span></p>

<p><span id="segal">
[6] Segal, <em>Categories and cohomology theories</em>, Topology <strong>13</strong> (1974), 293–312.</span></p>]]></content><author><name>Benjamin Antieau</name><email>antieau@northwestern.edu</email></author><summary type="html"><![CDATA[Expository post explaining that complete Segal objects in E-infinity-spaces model symmetric monoidal infinity-categories.]]></summary></entry><entry><title type="html">arXiv reviews 11: every motive is a motive</title><link href="https://antieau.github.io/2025/06/23/xr011-rsw.html" rel="alternate" type="text/html" title="arXiv reviews 11: every motive is a motive" /><published>2025-06-23T00:00:00+00:00</published><updated>2025-06-23T00:00:00+00:00</updated><id>https://antieau.github.io/2025/06/23/xr011-rsw</id><content type="html" xml:base="https://antieau.github.io/2025/06/23/xr011-rsw.html"><![CDATA[<p>Motiquity means <code class="language-plaintext highlighter-rouge">the ubuquity of motives</code>.</p>

<p>In their paper <a href="#rsw">[2]</a>, which I wrote about <a href="/2024/01/18/xr009-rsw.html">here</a>,
Ramzi–Sosnilo–Winges proved that every spectrum is the $\K$-theory spectrum of a stable
$\infty$-category. Ramzi, Sosnilo, and Winges have posted <a href="#rws2">[3]</a>, which proves a fantastic result about the $\infty$-category $\Mot$ of
noncommutative motives in the sense of <a href="#bgt">[1]</a> and in particular gives a new proof of the theorem from the previous paper.</p>

<p><strong>Theorem.</strong> If $\M\colon\Cat_\infty^\perf\rightarrow\Mot$ denotes the universal finitary localizing
invariant, then $\M$ is essentially surjective. More precisely, $\Mot$ is a Dwyer–Kan
localization of $\Cat_\infty^\perf$ at the class of morphisms $W$ consisting of those $f$ such that $E(f)$ is an equivalence for
every finitary localizing invariant.</p>

<p>Moreover, using work of Efimov, $\Mot$ agrees with the Dwyer–Kan localization at the class of
morphisms $f$ such that $\K(\Cscr\otimes(-))$ is an equivalence.</p>

<p><em>Methods.</em> The basic idea is to use a construction of
Grayson to obtain suspensions for stability and to use. Another is to prove that
$\Cat_\infty^\perf$ admits the structure of a cofibration category in Cisinski’s sense.</p>

<p><em>Applications.</em> One notable application is that $\M$ preserves countable products. Another is that
$\M$ admits another universal property as the universal $\aleph_1$-finitary localizing invariant,
which means in particular that $\TC$ induces a functor $\Mot\rightarrow\Sp$.</p>

<p>Coming to you live from the <a href="https://www.math.ntnu.no/Abel2025/">Abel Symposium</a> meeting, Ramzi explained
another application based on forthcoming joint work with Kaif Hilman. Specifically, if $G$ is a
finite group and 
$\underline{\Mot}$ denotes the functor $\underline{\Mot}(G/H)=\Mot((\Cat_\infty^\perf)^{\B H})$,
then $\underline{\Mot}$ admits the structure of a $G$-symmetric monoidal $G$-category.</p>

<p><em>Bonus material.</em> Details are given on Grayson’s construction as well as the variant where one
works with motives relative to some other symmetric monoidal $\infty$-category $\Vscr$.</p>

<h1 id="references">References</h1>

<p><span id="bgt">
[1] Blumberg, Gepner, Tabuada, <em>A universal characterization of higher algebraic $\K$-theory</em>,
Geometry &amp; Topology <strong>17</strong> (2013), 733–838.
</span></p>

<p><span id="rsw">
[2] Ramzi, Sosnilo, Winges, <em>Every spectrum is the K-theory of a stable $\infty$-category</em>,
    <a href="https://arxiv.org/abs/2401.06510"><tt>arXiv:2401.06510</tt></a>.
</span></p>

<p><span id="rsw2">
[3] Ramzi, Sosnilo, Winges, <em>Every motive is the motive of a stable $\infty$-category</em>,
<a href="https://arxiv.org/abs/2503.11338"><tt>arXiv:2503.11338</tt></a>.</span></p>]]></content><author><name>Benjamin Antieau</name><email>antieau@northwestern.edu</email></author><category term="2025" /><category term="XR" /><summary type="html"><![CDATA[Review of Ramzi-Sosnilo-Winges proving the universal localizing invariant is essentially surjective.]]></summary></entry><entry><title type="html">New paper: spectral sequences, décalage, and the Beilinson t-structure</title><link href="https://antieau.github.io/2025/03/07/ss.html" rel="alternate" type="text/html" title="New paper: spectral sequences, décalage, and the Beilinson t-structure" /><published>2025-03-07T00:00:00+00:00</published><updated>2025-03-07T00:00:00+00:00</updated><id>https://antieau.github.io/2025/03/07/ss</id><content type="html" xml:base="https://antieau.github.io/2025/03/07/ss.html"><![CDATA[<!--ëé-->

<p>I am finally writing about a paper <a href="#ss">[1]</a> I put on the <code class="language-plaintext highlighter-rouge">arXiv</code> last year about spectral sequences. This
paper gives a new construction of all pages of the spectral sequence of a filtered object in a
stable $\infty$-category equipped with a $t$-structure.</p>

<p>The idea is quite simple. Let $\Cscr$ be a stable $\infty$-category which admits sequential limits
and colimits. Suppose that $\Cscr$ moreover admits a $t$-structure. On the $\infty$-category
$\F\Cscr=\Fun(\bZ^\op,\Cscr)$ of decreasing filtrations in $\Cscr$ there is a $t$-structure where
an object $\F^\star$ is connective, i.e., in $\F\Cscr_{\geq 0}^\B$ if and only if $\gr^i\in\Cscr_{\geq
-i}$, the latter with respect to the given $t$-structure above. This is called the Beilinson
$t$-structure and has been considered in <a href="#ariotta">[2]</a>, <a href="#bms2">[3]</a>, and <a href="#raksit">[9]</a>.
The heart of this $t$-structure
is equivalent to the abelian category of cochain complexes in $\Cscr^\heart$. It is not difficult
to see that the homotopy objects $\pi_i^\B(\F^\star)$ are precisely the (co)chain complexes
appearing on the $\E^1$-page of the spectral sequence associated to $\F^\star$.</p>

<p>The paper <a href="#ss">[1]</a> provides an answer to the question of how to coherently construct the other pages. I
use the $t$-structure to define an endofunctor of $\F\Cscr$, called $\Dec$. By definition, given an
object $\F^\star\in\F\Cscr$ there is a Whitehead tower</p>

\[\cdots\rightarrow\tau_{\geq n+1}^\B(\F^\star)\rightarrow\tau_{\geq n}^\B(\F^\star)\rightarrow\tau_{\geq n-1}^\B(\F^\star)\rightarrow\cdots.\]

<p>Let $|-|\colon\F\Cscr\rightarrow\Cscr$ denote the colimit functor, which exists as we assume that
$\Cscr$ admits sequential colimits. We can apply $|-|$ to the Whitehead tower to obtain a new
decreasing filtration</p>

\[\cdots\rightarrow|\tau_{\geq n+1}^\B(\F^\star)|\rightarrow|\tau_{\geq n}^\B(\F^\star)|\rightarrow|\tau_{\geq n-1}^\B(\F^\star)|\rightarrow\cdots.\]

<p>This is $\Dec(\F^\star)$. More generally, we can iterate to obtain $\Dec^{(n)}(\F^\star)$.</p>

<p>This leads to a simple definition of all pages.</p>

<p><strong>Definition.</strong> For $n\geq 1$, the $\E^n$-page of the spectral sequence attached to $\F^\star$ is
the $\E^1$-page of the spectral sequence of $\Dec^{(n-1)}(\F^\star)$, with some reindexing.</p>

<p>The difficult part of the paper is the proof of the following result.</p>

<p><strong>Theorem.</strong> This agrees with the definition of the higher pages given in <a href="#lurie">[8]</a>.</p>

<p>One reason I find this interesting is that in the presence of a symmetric monoidal structure on
$\Cscr$, and assuming that the $t$-structure on $\Cscr$ is compatible with the symmetric monoidal
structure, one finds that $\Dec$ is lax symmetric monoidal. From this, one can easily prove
multiplicativity results about all pages of a spectral sequence.</p>

<p>Another reason is that it makes it straightforward to compare, say, the two standard definitions of
the Atiyah-Hirzebruch spectral sequence computing the $E$-cohomology of a space $X$, one using the
Whitehead tower of $E$ and the other using a cellular filtration on $X$.</p>

<p>This work did not arise in a vacuum and some of our results are closely related to work of
Deligne <a href="#deligne">[4]</a>, Lawson <a href="#lawson">[6]</a>, and Levine <a href="#levine">[7]</a>.
Some of the ideas also were explained in the PhD thesis <a href="#hedenlund">[5]</a> of Alice
Hedenlund.</p>

<h1 id="references">References</h1>

<p><span id="ss">
[1] Antieau, <em>Spectral sequences, décalage, and the Beilinson t-structure</em>,
    <a href="https://arxiv.org/abs/2411.09115"><tt>arXiv:2411.09115</tt></a>.
</span></p>

<p><span id="ariotta">
[2] Ariotta, <em>Coherent cochain complexes and Beilinson $t$-structures, with an
appendix by Achim Krause</em>,
<a href="https://arxiv.org/abs/2109.01017"><tt>arXiv:2109.01017</tt></a>.
</span></p>

<p><span id="bms2">
[3] Bhargav Bhatt, Matthew Morrow, and Peter Scholze, <em>Topological Hochschild homology and integral p-adic Hodge theory</em>, Publ. Math. Inst. Hautes Études Sci.
<strong>129</strong> (2019), 199–310.
</span></p>

<p><span id="deligne">
[4] Deligne, <em>Théorie de Hodge. II</em>, Inst. Hautes Études Sci. Publ. Math. (1971), no. 40, 5–57.
</span></p>

<p><span id="hedenlund">
[5] Hedenlund, <em>Multiplicative Tate spectral sequences</em>, <a href="https://www.mn.uio.no/math/personer/vit/rognes/theses/hedenlund-thesis.pdf">PhD
Thesis at Oslo</a>.
</span></p>

<p><span id="lawson">
[6] Lawson, <em>Filtered spaces, filtered objects</em>,
    <a href="https://arxiv.org/abs/2410.08348"><tt>arXiv:2410.08348</tt></a>.
</span></p>

<p><span id="levine">
[7] Levine, <em>The Adams-Novikov spectral sequence and Voevodsky’s slice tower</em>, Geom. Topol. <strong>19</strong> (2015),
no. 5, 2691–2740.
</span></p>

<p><span id="lurie">
[8] Lurie, <em>Higher algebra</em>, <a href="https://www.math.ias.edu/~lurie/papers/HA.pdf">version dated 18 September 2017</a>.
</span></p>

<p><span id="raksit">
[9] Raksit, <em>Hochschild homology and the derived de Rham complex
revisited</em>,
<a href="https://arxiv.org/abs/2007.02576"><tt>arXiv:2007.025760</tt></a>.
</span></p>]]></content><author><name>Benjamin Antieau</name><email>antieau@northwestern.edu</email></author><summary type="html"><![CDATA[New paper constructing spectral sequence pages via the Beilinson t-structure and iterated décalage.]]></summary></entry><entry><title type="html">arXiv reviews 10: big invertible categories</title><link href="https://antieau.github.io/2025/03/07/xr010-stefanich.html" rel="alternate" type="text/html" title="arXiv reviews 10: big invertible categories" /><published>2025-03-07T00:00:00+00:00</published><updated>2025-03-07T00:00:00+00:00</updated><id>https://antieau.github.io/2025/03/07/xr010-stefanich</id><content type="html" xml:base="https://antieau.github.io/2025/03/07/xr010-stefanich.html"><![CDATA[<!--ëé-->

<h1 id="history">History</h1>

<p>Let $\Cat_\infty^\perf$ denote the $\infty$-category of small idempotent complete stable
$\infty$-categories. A typical example of an object is $\Perf(R)$ for a commutative ring $R$.
The $\infty$-category $\Cat_\infty^\perf$ admits a natural symmetric monoidal structure which has the property that 
if $R$ and $S$ are commutative rings, then $\Perf(R)\otimes\Perf(S)\we\Perf(R\otimes_\bS S)$,
where $\bS$ denotes the sphere spectrum. If $R$ is an $\bE_\infty$-ring spectrum, for example if it
is a commutative ring, then $\Perf(R)$ is an $\bE_\infty$-algebra in $\Cat_\infty^\perf$.</p>

<p>A modern perspective on the Brauer group of a ring $R$ is that it is the Picard group of the
symmetric monoidal category $\Cat_R$, which is defined to be the $\infty$-category of
$\Perf(R)$-modules in $\Cat_\infty^\perf$. This definition was given by Toën in <a href="#toen">[4]</a> over animated
commutative rings using dg categories and extended by myself and David Gepner in <a href="#ag">[1]</a> to handle the case
when $R$ is an $\bE_\infty$-ring spectrum.</p>

<p>We will write $\bBr(R)$ for the space of invertible objects in $\Cat_R$. Specifically, there is an inclusion
of $\CGp(\Sscr)\subseteq\CMon(\Cat_\infty)$ of the $\infty$-category of grouplike $\bE_\infty$-spaces<sup id="fnref:a" role="doc-noteref"><a href="#fn:a" class="footnote" rel="footnote">1</a></sup> into
the $\infty$-category of symmetric monoidal $\infty$-categories. This inclusion admits a right
adjoint $\bPic$. We let $\bBr(R)=\bPic(\Cat_R)$. Toën’s Bruer group is $\Br(R)=\pi_0\bPic(R)$.</p>

<p>If $R$ is connective, meaning that $\pi_iR=0$ for $i&lt;0$, every $\Cscr\in\Br(R)$ is étale-locally
trivial. We also have $\bPic(R)=\bPic(\Perf(R))$, which is the space of automorphisms of the
$\Perf(R)$. This implies that $\bBr(R)$ can also be described as $\R\Gamma_\et(\Spec R,\B\bPic)$.
This is a positive answer to a form of Grothendieck’s $\Br=\Br’$ question.</p>

<p>Let $\Pr^{\L,\dual}_\st$ be the $\infty$-category of dualizable stable presentable $\infty$-categories and
left adjoint functors whose right adjoints are right adjoints. A result of <a href="#efimov">[2]</a> implies
that $\Pr^{\L,\dual}_\st$ is $\omega_1$-compactly generated.
We define $\Cat_R^\dual$ to be the $\infty$-category
of $\D(R)$-modules in $\Pr^{\L,\dual}$. We let $\bBr^\dual(R)=\bPic(\Cat_R^\dual)$. There is an
inclusion of spaces $\bBr(R)\subseteq\bBr^\dual(R)$.</p>

<p>Toën’s question was whether or not $\Br(R)=\Br^\dual(R)$, say for $R$ a commutative ring. (More generally, there is
a related definition for derived stacks.) At the time, as Toën remarks, this
question seemed a bit exotic. However, in light of the recent focus on continuous $K$-theory and
dualizable stable $\infty$-categories, thanks especially to the work of Efimov <a href="#efimov">[2]</a>,
there has been renewed interest in Toën’s question.</p>

<h1 id="results">Results</h1>

<p>Germán Stefanich’s paper <a href="#stefanich">[3]</a> was first posted in 2023 and proved that $\Br(R)=\Br^\dual(R)$ for $R$ a field
and more generally for $R$ a connective truncated $\bE_\infty$-ring $R$ with $\pi_0R$ Artinian.
Maxime Ramzi and I then observed in unpublished work that we could bootstrap using Stefanich’s results
to get that $\Br(R)=\Br^\dual(R)$ also for noetherian commutative rings $R$. In particular,
$\Br(\bZ)=\Br^\dual(\bZ)$, which is one result we particularly wanted.</p>

<p>However, the recent update to Stefanich’s paper now establishes that $\Br(R)=\Br^\dual(R)$ for all
commutative rings and more generally for all connective truncated $\bE_\infty$-ring spectra $R$.
There are several similarities in the arguments, but Stefanich is able to remove the noetherian
hypotheses using a more clever argument to reduce to the Artin local case he had already
proven.</p>

<p>While not stated in his paper, Stefanich’s result also implies that $\Br(X)=\Br^\dual(X)$ for $X$ a
qcqs scheme. Indeed, one can prove this by induction on the number of affines needed to cover $X$,
giving a standard argument as in <a href="#ag">[1, Thm. 6.11]</a>.</p>

<p>Let $\Cscr$ denote an invertible dualizable $\D(R)$-linear category, which defines a point of
$\bBr^\dual(R)$. Stefanich shows that it is compactly generated, and hence is in $\bBr(R)$.
The argument used by Stefanich, which I very much like, is to look at the poset $P$ of ideals $I\subseteq R$ such
that $\Cscr\otimes_R R/I$ is not compactly generated. The goal is to show it is empty. No maximal
ideal is in $P$ by the fact that $\Br(k)=\Br^\dual(k)$ for a field $k$ (as proven in the first
        version of the paper). One argues that $I$ is
closed under filtered colimits inside the poset of all ideals of $R$. In particular, if $I$ is
nonempty, then it contains a maximal element, say $J$. Stefanich then shows that $R/J$ is a domain.
Over the fraction field $K$ one has that $\Cscr\otimes_R K$ does admit a compact generator. So, by
another filtered colimit argument,
there is some $0\neq x\in R$ such that $\Cscr$ admits a compact generator over $R/J[x^{-1}]$.
But, now $\Cscr\otimes_R R/(J,x)$ does admit a compact generator too by the maximality hypothesis
of $J$. By an arithmetic fracture square argument, one now concludes to see that $\Cscr\otimes_R
R/J$ admits a
compact generator, which is a contradiction. This means that $P$ is empty and that $\Cscr$ is compactly
generated.</p>

<p>The paper contains a lot of other interesting results, especially about Grothendieck abelian
categories.</p>

<h1 id="references">References</h1>

<p><span id="ag">
    [1] Antieau and Gepner, <em>Brauer groups and étale cohomology in derived algebraic geometry</em>,
    Geom. Topol. <strong>18</strong> (2014), no. 2, 1149–1244.
</span></p>

<p><span id="efimov">
    [2] Efimov, <em>K-theory and localizing invariants of large categories</em>,
    <a href="https://arxiv.org/abs/2405.12169"><tt>arXiv:2405.12169</tt></a>.
</span></p>

<p><span id="stefanich">
    [3] Stefanich, <em>Classification of fully dualizable linear categories</em>,
    <a href="https://arxiv.org/abs/2307.16337"><tt>arXiv:2307.16337</tt></a>.
</span></p>

<p><span id="toen">
    [4] Toën, <em>Derived Azumaya algebras and generators for twisted derived categories</em>, Invent. Math.
    <strong>189</strong> (2012), no. 3, 581–652.
</span></p>

<h1 id="footnotes">Footnotes</h1>
<div class="footnotes" role="doc-endnotes">
  <ol>
    <li id="fn:a" role="doc-endnote">
      <p>The $\infty$-category $\CGp(\Sscr)$ is equivalent to the $\infty$-category $\D(\bS)_{\geq 0}$
of connective spectra. <a href="#fnref:a" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
  </ol>
</div>]]></content><author><name>Benjamin Antieau</name><email>antieau@northwestern.edu</email></author><category term="2025" /><category term="XR" /><summary type="html"><![CDATA[Review of Stefanich's proof that every invertible dualizable linear category is compactly generated.]]></summary></entry><entry><title type="html">New paper: the K-theory of Z$/p^n$</title><link href="https://antieau.github.io/2024/11/13/kzpn.html" rel="alternate" type="text/html" title="New paper: the K-theory of Z$/p^n$" /><published>2024-11-13T00:00:00+00:00</published><updated>2024-11-13T00:00:00+00:00</updated><id>https://antieau.github.io/2024/11/13/kzpn</id><content type="html" xml:base="https://antieau.github.io/2024/11/13/kzpn.html"><![CDATA[<!--ëéłö-->

<p>After a long delay, Achim Krause, Thomas Nikolaus, and I finally uploaded our paper <a href="#akn">[3]</a>
on the $\K$-groups of $\bZ/p^n$, and more generally of $\Oscr_K/\varpi^n$ for $K$ a $p$-adic local field and $\varpi$ a uniformizer, to the <code class="language-plaintext highlighter-rouge">arXiv</code>. And, I have finally written this blog post, since the
paper has been up for six months now. These results were originally announced in
<a href="#akn-announcement">[1]</a> and <a href="/2022/04/12/kzpn.html">our previous post</a>. See the latter
for an outline of the main results. Most importantly, our implementation of the algorithm which
computes these groups is available publicly at <a href="https://github.com/antieau/kzpn">kzpn @ GitHub</a>.</p>

<p>Several related papers have appeared in the meantime, most notably the paper <a href="#hls">[5]</a> of Jeremy Hahn, Ishan
Levy, and Andrew Senger which computes the $\K$-groups of $\bZ/p^n$ modulo $p$ and $v_1$.
Remarkably, their computation shows that the answer is independent of $n$ for $n\geq 2$.</p>

<p>In a short paper using both the techniques of <a href="#akn">[3]</a> and <a href="#hls">[5]</a>, Krause and Senger have given the exact
vanishing bound for the even $\K$-groups of $\bZ/p^n$ in <a href="#ks">[6]</a>, strengthening one of the main theorems in
<a href="#akn">[3]</a>.</p>

<p>Finally, our work uses our paper <a href="#akn-delta">[2]</a> on prismatic cohomology relative to $\delta$-rings, which
introduces in particular a relative form of syntomic cohomology.</p>

<h1 id="references">References</h1>

<p><span id="akn-announcement">
[1] Antieau, Krause, and Nikolaus, <em>The K-theory of $\bZ/p^n$ – announcement</em>,
    <a href="https://arxiv.org/abs/2204.03420"><tt>arXiv:2204.03420</tt></a>.
</span></p>

<p><span id="akn-delta">
[2] Antieau, Krause, and Nikolaus, <em>Prismatic cohomology relative to $\delta$-rings</em>,
    <a href="https://arxiv.org/abs/2310.12770"><tt>arXiv:2310.12770</tt></a>.
</span></p>

<p><span id="akn">
[3] Antieau, Krause, and Nikolaus, <em>The K-theory of $\bZ/p^n$</em>,
    <a href="https://arxiv.org/abs/2405.04329"><tt>arXiv:2405.04329</tt></a>.
</span></p>

<p><span id="bs">
[4] Bhatt, Scholze, <em>Prisms and prismatic cohomology</em>,
    <a href="https://arxiv.org/abs/1905.08229"><tt>arXiv:1905.08229</tt></a>.
</span></p>

<p><span id="hls">
[5] Hahn, Levy, Senger, <em>Crystallinity for reduced syntomic cohomology and the mod
$(p,v_1^{p^{n-2}})$ $\K$-theory of $\bZ/p^n$</em>,
    <a href="https://arxiv.org/abs/2409.20543"><tt>arXiv:2409.20543</tt></a>.
</span></p>

<p><span id="ks">
[6] Krause, Senger, <em>Exact bounds for even vanishing of \(\K_*(\bZ/p^n)\)</em>,
    <a href="https://arxiv.org/abs/2409.20523"><tt>arXiv:2409.20523</tt></a>.
</span></p>]]></content><author><name>Benjamin Antieau</name><email>antieau@northwestern.edu</email></author><summary type="html"><![CDATA[Full paper with Krause and Nikolaus on K-groups of Z/p^n, with a publicly available algorithm implementation.]]></summary></entry><entry><title type="html">arXiv reviews 9: no nonconnective theorem of the heart</title><link href="https://antieau.github.io/2024/01/18/xr009-rsw.html" rel="alternate" type="text/html" title="arXiv reviews 9: no nonconnective theorem of the heart" /><published>2024-01-18T00:00:00+00:00</published><updated>2024-01-18T00:00:00+00:00</updated><id>https://antieau.github.io/2024/01/18/xr009-rsw</id><content type="html" xml:base="https://antieau.github.io/2024/01/18/xr009-rsw.html"><![CDATA[<p>Ramzi, Sosnilo, and Winges have proved a lovely result in <a href="#rsw">[6]</a>, showing that every spectrum
$M$ is equivalent to $\K(\Cscr)$ for some idempotent complete stable $\infty$-category $\Cscr$. In
fact, they prove that there is a functor $\Cscr_{(-)}\colon\Sp\rightarrow\Cat_\infty^\perf$ such the
composition $\K\circ\Cscr_{(-)}\we\id_{\Sp}$. The stable $\infty$-category $\Cscr_M$ is a
categorification of $M$.</p>

<!--
The functor $\Cscr_{(-)}$ preserves colimits, from which one can deduce the following.
Let $\Mot^\loc$ be the $\infty$-category of localizing noncommutative
motives in the sense of Blumberg, Gepner, and Tabuada. Let
$$\M^\loc\colon\Cat_\infty^\perf\rightarrow\Mot^\loc$$ be the canonical map. Then, the composition
$\M^\loc\circ\Cscr_{(-)}$ is fully faithful with essential image the localizing subcategory of
$\Mot^\loc$ generated by the unit $$\unit\we\M^\loc(\Sp^\omega)$$.
-->

<h1 id="history">History</h1>

<p>I will not go into the interesting proof of this result which uses trace
methods and Goodwillie calculus. Rather, I want to discuss their application to a conjecture of
Gepner, Heller, and mine.</p>

<p>In <a href="#agh">[2]</a> we made three conjectures, building on previous conjectures of Schlichting
<a href="#schlichting-negative">[7]</a>.</p>

<p>One was that for $X$ a noetherian scheme of finite Krull dimension, if
$X$ admits a local ring which is not regular, then $\Perf(X)$ does not admit a bounded
$t$-structure. This was proved by Smith in <a href="#smith">[8]</a> using <a href="#atjls">[1]</a> in the affine case and then in general by
Neeman in <a href="#neeman-bounded">[5]</a>. The second was that if $\Cscr$ is a stable idempotent complete
stable $\infty$-category with a bounded $t$-structure, then $\K_{-n}(\Cscr)=0$ for all $n\geq 1$.
When $n=1$, this was the main theorem of our paper which also proved the result for all $n\geq 1$
when $\Cscr^\heart$ is noetherian. These results were established by Schlichting in the case when
$\Cscr\we\D^b(\Ascr)$. However, Neeman disproved this vanishing conjecture in <a href="#neeman-counterexample">[4]</a>.</p>

<p>Only one conjecture remained open: that the  natural map
$\K(\D^b(\Cscr^\heart))\rightarrow\K(\Cscr)$ is an equivalence. In non-negative degrees, this is
Barwick’s theorem of the heart <a href="#barwick-heart">[3]</a>. In degree $-1$, this followed from our work.
But, it remained open, despite Neeman’s counterexamples.
Ramzi, Sosnilo, and Winges disprove it as a consequence of their main
theorem.</p>

<h1 id="the-counterexample">The counterexample</h1>

<p>Given their theorem that every spectrum is a $\K$-theory spectrum, it is very easy to describe the
counterexample. Choose $M$ to be a spectrum which is not
$\K(\bZ)$-local and let $\Cscr=\Cscr_M$. For example, $K(n)$ works for $n\geq 2$, where $K(n)$ denotes some Morava
$\K$-theory spectrum. Note however that every connective spectrum is
$\K(\bZ)$-local as is the $\K$-theory spectrum of every $\bZ$-linear stable $\infty$-category, such
as $\D^b(\Ascr)$ if $\Ascr$ is an abelian category.</p>

<p>Let $\Cscr^\times=\Fun^\times(\Cscr^\op,\Sp)$ be the $\infty$-category of additive presheaves on
$\Cscr$ and let $\Cscr^\fin\subseteq\Cscr^\times$ be the smallest idempotent complete stable
subcategory containing the image of the Yoneda embedding $\Cscr\hookrightarrow\Cscr^\times$.
The functor $y\colon\Cscr\rightarrow\Cscr^\fin$ is additive (and is in fact the universal additive
        functor into a small stable $\infty$-category), but it is not exact in general.
There is also a colimit map $\Cscr^\fin\rightarrow\Cscr$, which is a Verdier localization. Let
$\Ac(\Cscr)$ be the kernel, so there is an exact sequence</p>

\[\Ac(\Cscr)\rightarrow\Cscr^\fin\rightarrow\Cscr\]

<p>of small idempotent complete stable $\infty$-categories. The stable $\infty$-category $\Ac(\Cscr)$
is generated by cofibers of the natural maps $y(b)/y(a)\rightarrow y(b/a)$ for morphisms $f\colon
a\rightarrow b$ in $\Cscr$.</p>

<p>Now, $\Ac(\Cscr)$ admits a natural bounded $t$-structure, which I will not describe here. This
$t$-structure has been observed in various forms before; Neeman uses it and the exact sequence above
in <a href="#neeman-counterexample">[4]</a>. If $\K(\D^b(\Ac(\Cscr)^\heart))\rightarrow\K(\Ac(\Cscr))$ is an equivalence, as asserted
by our conjecture, then $\K(\Ac(\Cscr))$ is $\K(\bZ)$-local as $\D^b(\Ac(\Cscr))$ is $\bZ$-linear. 
If this is the case, then the cofiber sequence</p>

\[\K(\Ac(\Cscr))\rightarrow\K(\Cscr^\fin)\rightarrow\K(\Cscr)\]

<p>implies that $\K(\Cscr^\fin)$ cannot be $\K(\bZ)$-local, since we assume that $\K(\Cscr)\we M$ is
not $\K(\bZ)$-local. So, it suffices to prove that $\K(\Cscr^\fin)$ is $\K(\bZ)$-local to obtain a
contradiction.</p>

<p>However, $\Cscr^\fin$ admits a weight structure and Sosnilo’s theorem of the heart implies that the
map $\K(\Cscr^\fin)\rightarrow\K(\Ho(\Cscr^\fin))$ is an equivalence in non-positive degrees; that
is to say that the fiber is connective and hence $\K(\bZ)$-local. Additionally, $\Ho(\Cscr^\fin)$ is
an additive $1$-category and hence $\K(\Ho(\Cscr^\fin))$ is $\K(\bZ)$-local since it admits the
structure of a $\K(\bZ)$-module. Thus, $\K(\Cscr^\fin)$ is $\K(\bZ)$-local, and we are done!</p>

<h1 id="references">References</h1>

<p><span id="atjls">
[1] Alonso Tarrio, Jeremias Lopez, and Saorin, <em>Compactly generated t-structures on
the derived category of a Noetherian ring</em>, J. Algebra <strong>324</strong> (2010), no. 3, 313-346.
</span></p>

<p><span id="agh">
[2] Antieau, Gepner, and Heller, <em>K-theoretic obstructions to bounded t-structures</em>, Invent. Math. <strong>216</strong> (2019), no. 1, 241-300.
</span></p>

<p><span id="barwick-heart">
[3] Barwick, <em>On exact $\infty$-categories and the theorem of the heart</em>, Compos. Math. <strong>151</strong> (2015), no. 11, 2160-2186.
</span></p>

<p><span id="neeman-counterexample">
[4] Neeman, <em>A counterexample to some recent conjectures</em>, <a href="https://arxiv.org/abs/2006.16536"><tt>arXiv:2006.16536</tt></a>.
</span></p>

<p><span id="neeman-bounded">
[5] Neeman, <em>Bounded $t$–structures on the category of perfect complexes</em>, 
<a href="https://arxiv.org/abs/2202.08861"><tt>arXiv:2202.08861</tt></a>.
</span></p>

<p><span id="rsw">
[6] Ramzi, Sosnilo, Winges, <em>Every spectrum is the K-theory of a stable $\infty$-category</em>,
    <a href="https://arxiv.org/abs/2401.06510"><tt>arXiv:2401.06510</tt></a>.
</span></p>

<p><span id="schlichting-negative">
[7] Schlichting, <em>Negative K-theory of derived categories</em>, Math. Z. <strong>253</strong> (2006), no. 1, 97–134.
</span></p>

<p><span id="smith">
[8] Smith, <em>Bounded t-structures on the category of perfect complexes over a
Noetherian ring of finite Krull dimension</em>,
Adv. Math. <strong>399</strong> (2022) 108241.
</span></p>]]></content><author><name>Benjamin Antieau</name><email>antieau@northwestern.edu</email></author><category term="2024" /><category term="XR" /><summary type="html"><![CDATA[Review of Ramzi-Sosnilo-Winges proving every spectrum is the K-theory of some stable infinity-category.]]></summary></entry><entry><title type="html">Postdoc for the Simons Collaboration on Perfection</title><link href="https://antieau.github.io/2023/10/12/scopdoc.html" rel="alternate" type="text/html" title="Postdoc for the Simons Collaboration on Perfection" /><published>2023-10-12T00:00:00+00:00</published><updated>2023-10-12T00:00:00+00:00</updated><id>https://antieau.github.io/2023/10/12/scopdoc</id><content type="html" xml:base="https://antieau.github.io/2023/10/12/scopdoc.html"><![CDATA[<!--ëéłö-->

<p>I am hiring a postdoc as part of the Simons Collaboration, to start Fall 2024. The listing is live
on <a href="https://www.mathjobs.org/jobs/list/23491">MathJobs</a> with a deadline of 1 December 2023. More
opportunities with the collaboration are listed <a href="https://scop.math.berkeley.edu/open-positions/">here</a>.</p>]]></content><author><name>Benjamin Antieau</name><email>antieau@northwestern.edu</email></author><summary type="html"><![CDATA[Postdoc position for the Simons Collaboration on Perfection, starting Fall 2024.]]></summary></entry><entry><title type="html">Simons Collaboration on Perfection</title><link href="https://antieau.github.io/2023/09/15/scop.html" rel="alternate" type="text/html" title="Simons Collaboration on Perfection" /><published>2023-09-15T00:00:00+00:00</published><updated>2023-09-15T00:00:00+00:00</updated><id>https://antieau.github.io/2023/09/15/scop</id><content type="html" xml:base="https://antieau.github.io/2023/09/15/scop.html"><![CDATA[<!--ëéłö-->

<p>I’m very pleased to be one of the PIs on the new <a href="https://scop.math.berkeley.edu/">Simons Collaboration on
Perfection</a>. For more, see the <a href="https://www.simonsfoundation.org/2023/08/21/foundation-announce-the-simons-collaboration-on-perfection-in-algebra-geometry-and-topology/">announcement</a> from the Simons Foundation.</p>]]></content><author><name>Benjamin Antieau</name><email>antieau@northwestern.edu</email></author><summary type="html"><![CDATA[Announcement of the Simons Collaboration on Perfection in algebra, geometry, and topology.]]></summary></entry></feed>