Documentation

Mathlib.CategoryTheory.Monoidal.Hopf_

The category of Hopf monoids in a braided monoidal category. #

TODO #

A Hopf monoid in a braided category C is a bimonoid object in C equipped with an antipode.

Instances

    The antipode is an endomorphism of the underlying object of the Hopf monoid.

    Instances For

      The antipode is an endomorphism of the underlying object of the Hopf monoid.

      Instances For
        structure CategoryTheory.Hopf (C : Type u₁) [Category.{v₁, u₁} C] [MonoidalCategory C] [BraidedCategory C] :
        Type (max u₁ v₁)

        A Hopf monoid in a braided category C is a bimonoid object in C equipped with an antipode.

        • X : C

          The underlying object in the ambient monoidal category

        • hopf : HopfObj self.X
        Instances For

          A Hopf monoid is a bimonoid.

          Instances For
            @[implicit_reducible]

            Morphisms of Hopf monoids are just morphisms of the underlying bimonoids. In fact they automatically intertwine the antipodes, proved below.

            Morphisms of Hopf monoids intertwine the antipodes.

            The antipode is an antihomomorphism with respect to both the monoid and comonoid structures. #

            Auxiliary calculation for antipode_comul. This calculation calls for some ASCII art out of This Week's Finds.

               |   |
               n   n
              | \ / |
              |  /  |
              | / \ |
              | | S S
              | | \ /
              | |  /
              | | / \
              \ / \ /
               v   v
                \ /
                 v
                 |
            

            We move the left antipode up through the crossing, the right antipode down through the crossing, the right multiplication down across the strand, reassociate the comultiplications, then use antipode_right then antipode_left to simplify.

            Auxiliary calculation for mul_antipode.

                   |
                   n
                  /  \
                 |   n
                 |  / \
                 |  S S
                 |  \ /
                 n   /
                / \ / \
                |  /  |
                \ / \ /
                 v   v
                 |   |
            

            We move the leftmost multiplication up, so we can reassociate. We then move the rightmost comultiplication under the strand, and simplify using antipode_right.