Category Theory
Zulip Server
Archive

You're reading the public-facing archive of the Category Theory Zulip server.
To join the server you need an invite. Anybody can get an invite by contacting Matteo Capucci at name dot surname at gmail dot com.
For all things related to this archive refer to the same person.


Stream: learning: questions

Topic: checking my understanding of (co)monoids in monoidal cats?


view this post on Zulip André Muricy Santos (May 25 2023 at 10:49):

everyone knows Z\mathbb{Z} is a monoid with ++ and 00, and with * and 11! but im trying to understand better how is this couched in the categorical setting, by looking at the idea in https://ncatlab.org/nlab/show/monoid+in+a+monoidal+category

so what objects in what monoidal categories the examples give? Z\mathbb{Z} is a set, so it has to be (Set,_, _) (seven sketches-style notation). + and * take two integers so the bifunctor has to be Z×ZZ\mathbb{Z} \times \mathbb{Z} \rightarrow \mathbb{Z}. The unit object then has to be 11 since the unit arrow has to select the elements 0 and 1 for the two monoids respectively. so the monoidal category in which both of these are objects is (Set, ×\times, 11).

but then i often hear talk about COmonoids in monoidal categories. reverse the arrows of the unit arrow and the multiply arrow. in this category what you get is _some piece of data_ (NOT an object in the category itself; what is it?) that contains the two arrows
1M1 \rightarrow M
MM×MM \rightarrow M \times M
a comonoid IN A MONOIDAL CATEGORY still relies on the monoidality of the category, despite comonoids being dual to monoids. its counit arrow is an arrow from the monoidal category's unit object to a (in this case) set, and its comultiplication relies on the multiplication bifunctor. Normally the co- structures are described in a very cleanly separated manner, one thinks of them (at least when learning) almost independently of the original structure, but with monoids this gets complicated for me at least. But this is the correct understanding, right?

view this post on Zulip Morgan Rogers (he/him) (May 25 2023 at 11:06):

The counit map for a comonoid should be M1M \to 1.

Beware that in a cartesian monoidal category (where the monoidal product is the categorical product), every object can be equipped with a comonoid structure in a unique way: the only choices for the counit and comultiplication maps which satisfy the axioms (dual to the monoid axioms) are the unique map M1M \to 1 and the diagonal map MM×MM \to M \times M. So you won't find interesting comonoids in (Set,×,1)(\mathrm{Set},\times,1)!

view this post on Zulip André Muricy Santos (May 25 2023 at 11:19):

Hah, nice. I figured from looking at the type signatures! Thanks Morgan :+1: