Formalizing Category Theory in Agda

Total Page:16

File Type:pdf, Size:1020Kb

Formalizing Category Theory in Agda Formalizing Category Theory in Agda Jason Z. S. Hu Jacques Carette [email protected] [email protected] McGill University McMaster University Montréal, Québec, Canada Hamilton, Ontario, Canada Abstract embody choices; some were forced by the ambient logic of The generality and pervasiveness of category theory in mod- the host system, others were pragmatic decisions, some were ern mathematics makes it a frequent and useful target of philosophical stances, while finally others were simply de- formalization. It is however quite challenging to formalize, sign decisions. for a variety of reasons. Agda currently (i.e. in 2020) does Category theory is often picked as a challenge, as it is both not have a standard, working formalization of category the- be quite amenable to formalization and to involve many non- ory. We document our work on solving this dilemma. The trivial decisions that can have drastic effects on the usability formalization revealed a number of potential design choices, and effectiveness of the results [16]. With the rapid rise in and we present, motivate and explain the ones we picked. the use of category theory as a tool in computer science, and In particular, we find that alternative definitions or alter- with the advent of applied category theory, having a stable native proofs from those found in standard textbooks can formalization in the standard library of one’s favourite proof be advantageous, as well as “fit” Agda’s type theory more assistant becomes necessary. smoothly. Some definitions regarded as equivalent in stan- Our journey started as the authors were trying to keep dard textbooks turn out to make different “universe level” the “old” category theory library for Agda [26] alive. Unfor- assumptions, with some being more polymorphic than oth- tunately, as Agda [3] evolved, some of the features used in ers. We also pay close attention to engineering issues so that that library were no longer well-supported, and eventually the library integrates well with Agda’s own standard library, the library simply stopped working. As it became clear that as well as being compatible with as many of supported type simply continuing to patch that library was no longer viable, theories in Agda as possible. a new version was in order. This gave us the opportunity to revisit various design CCS Concepts: • Theory of computation ! Type the- decisions of the earlier implementation — which we will doc- ory; Logic and verification. ument. We also wanted to preserve as much formalization Keywords: Agda, category theory, formal mathematics effort as possible, while also use language features intro- duced in Agda 2.6+ like generalized variables and revise the ACM Reference Format: theoretical foundation which the library relies on. This new Jason Z. S. Hu and Jacques Carette. 2021. Formalizing Category version is then partly a “port” of the previous one to current Theory in Agda. In Proceedings of the 10th ACM SIGPLAN Interna- versions of Agda, but also heavily refactored, including some tional Conference on Certified Programs and Proofs (CPP ’21), January large changes in design. 18–19, 2021, Virtual, Denmark. ACM, New York, NY, USA, 16 pages. https://doi.org/10.1145/3437992.3439922 Our principal theoretical contribution is to show that setoid-based proof-relevant category theory works just as well 1 Introduction as various other “flavours” of category theory by supporting a large number of definitions and theorems. Our main engi- There have been many formalizations of category theory [7, neering contribution is a coherent set of design decisions for 21] in many different proof assistants, over more than 25 a widely reusable and working library of category theory in years [4, 16, 18, 24, 26, 28–30, 32, 35, 37, etc.]. All of them Agda, freely available1. Permission to make digital or hard copies of all or part of this work for This paper is structured as follows. In Section2, we discuss personal or classroom use is granted without fee provided that copies our global design choices. We discuss the rationale behind are not made or distributed for profit or commercial advantage and that non-strictness, proof-relevance, hom-setoids, universe poly- copies bear this notice and the full citation on the first page. Copyrights morphism, (not) requiring extra laws and concepts as record for components of this work owned by others than the author(s) must types. In Section3, we give examples on how proof-relevance be honored. Abstracting with credit is permitted. To copy otherwise, or republish, to post on servers or to redistribute to lists, requires prior specific drives us to find concepts in an alternative way. In Section4, permission and/or a fee. Request permissions from [email protected]. we discuss other design decisions and some efficiency issues. CPP ’21, January 18–19, 2021, Virtual, Denmark In Section5, we compare category theory libraries in other © 2021 Copyright held by the owner/author(s). Publication rights licensed systems. Finally, we conclude in Section6. to ACM. ACM ISBN 978-1-4503-8299-1/21/01...$15.00 https://doi.org/10.1145/3437992.3439922 1at https://github.com/agda/agda-categories CPP ’21, January 18–19, 2021, Virtual, Denmark Jason Z. S. Hu and Jacques Carette For reasons of space, we have to make some assumptions 2.2 Which Category Theory? of our readership, namely that they are familiar with: Category theory is often presented as a single theory, but 1. category theory, there are in fact a wealth of flavours: set-theoretic, where 2. dependent type theory, a category has a single hom-set equipped with source and 3. formalization, and target maps; ETCS-style [20], where there are no objects at 4. proof assistants (e.g. familiarity with Agda and a pass- all; dependently-typed, where hom-“sets” are parametrized ing knowledge of other systems). by two objects; proof-irrelevant, where the associativity and identity laws are considered to be unique [4, 16, 26, 35]; 2 Design Choices setoid-based, where each category relies on a local notion of equivalence of hom-sets rather than relying on a global Choices arise from both the system and its logic, as well as equality relation [26, 37]. There are also questions of being from the domain itself. strict or weak, whether to do 1-categories, =-categories or even 1-categories. What to choose? 2.1 Fitting with Agda Standard textbooks often define a category as follows: The previous formalization [26] was done in a much older Agda, with a seriously under-developed standard library. To Definition 2.1. A category C consists of the following data: better fit with modern Agda, we choose to: 1. a collection of objects, C0, 2. a collection of morphisms, C , between two objects. 1. use dependent types, 1 We use 5 : 퐴 ) 퐵 to denote the morphism 5 2 C is 2. be constructive, 1 between objects 퐴 and 퐵, 3. re-use as much of the standard library [12] as possible, 3. for each object 퐴, we have an identity morphism 1 : 4. use the naming convention of its standard library when- 퐴 퐴 ) 퐴, and ever meaningful, 4. morphism composition ◦ composing two morphisms 5. use the variable generalization feature for levels and 5 : 퐵 ) 퐶 and 6 : 퐴 ) 퐵 into another morphism categories, 5 ◦ 6 : 퐴 ) 퐶. 6. try to fit with as many modes of Agda as possible. These must satisfy the following laws: The first two requirements are natural, as choosing other- 1. identity: for any morphism 5 : 퐴 ) 퐵, we have 5 ◦ wise would create a clash of philosophy between the system 1 = 5 = 1 ◦ 5 , and and one of its libraries. The next two are just good soft- 퐴 퐵 2. associativity: for any three morphisms 5 , 6 and ℎ, we ware engineering, while the fifth is mere convenience. Note have ¹5 ◦ 6º ◦ ℎ = 5 ◦ ¹6 ◦ ℎº. that re-using the standard library pushes us towards setoids (more on that later) as its formalization of algebra uses them Embedded in the above definition are a variety of decisions, extensively. and we will use these as a running example to explain ours. The last requirement is more subtle: we want to allow 2.2.1 Collections. The first item to notice is the useof others to use alternative systems or make postulates if they collection rather than set or type. Textbooks tend to do this wish, and still be able to use our library. This means that we to side-step “size” issues, and then define various kinds of need to avoid using features that are incompatible with sup- categories depending on whether each of the collections ported systems in Agda. For example, when added to Martin- (objects, all morphisms, all morphisms given a pair of ob- Löf Type Theory (MLTT) [23], axiom K [31], equivalent to jects) is “small”, i.e. a set. This matters because a number of Uniqueness of Identity Proofs (UIP), creates a propositionally constructions in category theory produce large results. extensional type theory incompatible with univalence [33]. We define collections of objects to be types, with no fur- Thus Agda has options such as --without-K [10] to access ther assumptions or requirements. We do know that in MLTT the intensional type theory MLTT, and conversely --with-K types are well modeled by 1-groupoids [17, 36] — so wouldn’t to turn on axiom K. Separately, there is cubical type the- this higher structure be a problem? No! This is because we ory (--cubical)[34] which implements a computational never look at it, i.e. we never look at the identity type (or interpretation of homotopy type theory (HoTT) [33] and their identity types) of objects.
Recommended publications
  • Skew Monoidal Categories and Grothendieck's Six Operations
    Skew Monoidal Categories and Grothendieck's Six Operations by Benjamin James Fuller A thesis submitted for the degree of Doctor of Philosophy. Department of Pure Mathematics School of Mathematics and Statistics The University of Sheffield March 2017 ii Abstract In this thesis, we explore several topics in the theory of monoidal and skew monoidal categories. In Chapter 3, we give definitions of dual pairs in monoidal categories, skew monoidal categories, closed skew monoidal categories and closed mon- oidal categories. In the case of monoidal and closed monoidal categories, there are multiple well-known definitions of a dual pair. We generalise these definitions to skew monoidal and closed skew monoidal categories. In Chapter 4, we introduce semidirect products of skew monoidal cat- egories. Semidirect products of groups are a well-known and well-studied algebraic construction. Semidirect products of monoids can be defined anal- ogously. We provide a categorification of this construction, for semidirect products of skew monoidal categories. We then discuss semidirect products of monoidal, closed skew monoidal and closed monoidal categories, in each case providing sufficient conditions for the semidirect product of two skew monoidal categories with the given structure to inherit the structure itself. In Chapter 5, we prove a coherence theorem for monoidal adjunctions between closed monoidal categories, a fragment of Grothendieck's `six oper- ations' formalism. iii iv Acknowledgements First and foremost, I would like to thank my supervisor, Simon Willerton, without whose help and guidance this thesis would not have been possible. I would also like to thank the various members of J14b that have come and gone over my four years at Sheffield; the friendly office environment has helped keep me sane.
    [Show full text]
  • Master Report Conservative Extensions of Montague Semantics M2 MPRI: April-August 2017
    ENS Cachan,Universite´ Paris-Saclay Master report Conservative extensions of Montague semantics M2 MPRI: April-August 2017 Supervised by Philippe de Groote, Semagramme´ team, Loria,Inria Nancy Grand Est Mathieu Huot August 21, 2017 The general context Computational linguistics is the study of linguistic phenomena from the point of view of computer science. Many approaches have been proposed to tackle the problem. The approach of compositional semantics is that the meaning of a sentence is obtained via the meaning of its subconstituents, the basic constituents being mostly the words, with possibly some extra features which may be understood as side effects from the point of view of the computer scientist, such as interaction with a context, time dependency, etc. Montague [43, 44] has been one of the major figures to this approach, but what is today known as Montague semantics lacks a modular approach. It means that a model is usually made to deal with a particular problem such as covert movement [47], intentionalisation [12,8], or temporal modifiers [18], and those models do not necessarily interact well one with another. This problem in general is an important limitation of the computational models of linguistics that have been proposed so far. De Groote [20] has proposed a model called Abstract Categorial Grammars (ACG), which subsumes many known frameworks [20, 21, 13] such as Tree Adjoining Grammars [24], Rational Transducers and Regular Grammars [20], taking its roots in the simply typed lambda calculus [6]. The research problem The problem we are interested in is finding a more unifying model, yet close to the intuition and the previous works, which would allow more modularity while remaining in the paradigm of compositional semantics.
    [Show full text]
  • Locally Cartesian Closed Categories, Coalgebras, and Containers
    U.U.D.M. Project Report 2013:5 Locally cartesian closed categories, coalgebras, and containers Tilo Wiklund Examensarbete i matematik, 15 hp Handledare: Erik Palmgren, Stockholms universitet Examinator: Vera Koponen Mars 2013 Department of Mathematics Uppsala University Contents 1 Algebras and Coalgebras 1 1.1 Morphisms .................................... 2 1.2 Initial and terminal structures ........................... 4 1.3 Functoriality .................................... 6 1.4 (Co)recursion ................................... 7 1.5 Building final coalgebras ............................. 9 2 Bundles 13 2.1 Sums and products ................................ 14 2.2 Exponentials, fibre-wise ............................. 18 2.3 Bundles, fibre-wise ................................ 19 2.4 Lifting functors .................................. 21 2.5 A choice theorem ................................. 22 3 Enriching bundles 25 3.1 Enriched categories ................................ 26 3.2 Underlying categories ............................... 29 3.3 Enriched functors ................................. 31 3.4 Convenient strengths ............................... 33 3.5 Natural transformations .............................. 41 4 Containers 45 4.1 Container functors ................................ 45 4.2 Natural transformations .............................. 47 4.3 Strengths, revisited ................................ 50 4.4 Using shapes ................................... 53 4.5 Final remarks ................................... 56 i Introduction
    [Show full text]
  • The Differential -Calculus
    UNIVERSITY OF CALGARY The differential λ-calculus: syntax and semantics for differential geometry by Jonathan Gallagher A THESIS SUBMITTED TO THE FACULTY OF GRADUATE STUDIES IN PARTIAL FULFILLMENT OF THE REQUIREMENTS FOR THE DEGREE OF DOCTOR OF PHILOSOPHY GRADUATE PROGRAM IN COMPUTER SCIENCE CALGARY, ALBERTA May, 2018 c Jonathan Gallagher 2018 Abstract The differential λ-calculus was introduced to study the resource usage of programs. This thesis marks a change in that belief system; our thesis can be summarized by the analogy λ-calculus : functions :: @ λ-calculus : smooth functions To accomplish this, we will describe a precise categorical semantics for the dif- ferential λ-calculus using categories with a differential operator. We will then describe explicit models that are relevant to differential geometry, using categories like Sikorski spaces and diffeological spaces. ii Preface This thesis is the original work of the author. This thesis represents my attempt to understand the differential λ-calculus, its models and closed structures in differential geometry. I motivated to show that the differential λ-calculus should have models in all the geometrically accepted settings that combine differential calculus and function spaces. To accomplish this, I got the opportunity to learn chunks of differential ge- ometry. I became fascinated by the fact that differential geometers make use of curves and (higher order) functionals everywhere, but use these spaces of func- tions without working generally in a closed category. It is in a time like this, that one can convince oneself, that differential geometers secretly wish that there is a closed category of manifolds. There are concrete problems that become impossible to solve without closed structure.
    [Show full text]
  • Notions of Computation As Monoids (Extended Version)
    Notions of Computation as Monoids (extended version) EXEQUIEL RIVAS MAURO JASKELIOFF Centro Internacional Franco Argentino de Ciencias de la Informaci´ony de Sistemas CONICET, Argentina FCEIA, Universidad Nacional de Rosario, Argentina September 20, 2017 Abstract There are different notions of computation, the most popular being monads, applicative functors, and arrows. In this article we show that these three notions can be seen as instances of a unifying abstract concept: monoids in monoidal categories. We demonstrate that even when working at this high level of generality one can obtain useful results. In particular, we give conditions under which one can obtain free monoids and Cayley representations at the level of monoidal categories, and we show that their concretisation results in useful constructions for monads, applicative functors, and arrows. Moreover, by taking advantage of the uniform presentation of the three notions of computation, we introduce a principled approach to the analysis of the relation between them. 1 Introduction When constructing a semantic model of a system or when structuring computer code, there are several notions of computation that one might consider. Monads [37, 38] are the most popular notion, but other notions, such as arrows [22] and, more recently, applicative functors [35] have been gaining widespread acceptance. Each of these notions of computation has particular characteristics that makes them more suitable for some tasks than for others. Nevertheless, there is much to be gained from unifying all three different notions under a single conceptual framework. In this article we show how all three of these notions of computation can be cast as monoids in monoidal categories.
    [Show full text]
  • Building Closed Categories Cahiers De Topologie Et Géométrie Différentielle Catégoriques, Tome 19, No 2 (1978), P
    CAHIERS DE TOPOLOGIE ET GÉOMÉTRIE DIFFÉRENTIELLE CATÉGORIQUES MICHAEL BARR Building closed categories Cahiers de topologie et géométrie différentielle catégoriques, tome 19, no 2 (1978), p. 115-129. <http://www.numdam.org/item?id=CTGDC_1978__19_2_115_0> © Andrée C. Ehresmann et les auteurs, 1978, tous droits réservés. L’accès aux archives de la revue « Cahiers de topologie et géométrie différentielle catégoriques » implique l’accord avec les conditions générales d’utilisation (http://www.numdam.org/legal.php). Toute uti- lisation commerciale ou impression systématique est constitutive d’une infraction pénale. Toute copie ou impression de ce fichier doit contenir la présente mention de copyright. Article numérisé dans le cadre du programme Numérisation de documents anciens mathématiques http://www.numdam.org/ CAHIERS DE TOPOLOGIE Vol. XIX - 2 (1978 ) ET GEOMETRIE DIFFERENTIELLE BUILDING CLOSED CATEGORIES by Michael BARR * I am interested here in examining and generalizing the construction of the cartesian closed category of compactly generated spaces of Gabriel- Zisman [1967 . Suppose we are given a category 21 and a full subcategory 5 . Suppose E is a symmetric monoidal category in the sense of Eilenberg- Kelly [1966], Chapter II, section 1 and Chapter III, section 1. Suppose there is, in addition, a «Hom» functor lil°P X 5--+ 6 which satisfies the axioms of Eilenberg-Kelly for a closed monoidal category insofar as they make sense. Then we show that, granted certain reasonable hypotheses on lbl and 21, this can be extended to a closed monoidal structure on the full subcategory of these objects of 21 which have a Z-presentation. One additional hypo- thesis suffices to show that when the original product in 5 is the cartesian product, then the resultant category is even cartesian closed.
    [Show full text]
  • Categories of Mackey Functors
    Categories of Mackey Functors Elango Panchadcharam M ∗(p1s1) M (t2p2) M(U) / M(P) ∗ / M(W ) 8 C 8 C 88 ÖÖ 88 ÖÖ 88 ÖÖ 88 ÖÖ 8 M ∗(p1) Ö 8 M (p2) Ö 88 ÖÖ 88 ∗ ÖÖ M ∗(s1) 8 Ö 8 Ö M (t2) 8 Ö 8 Ö ∗ 88 ÖÖ 88 ÖÖ 8 ÖÖ 8 ÖÖ M(S) M(T ) 88 Mackey ÖC 88 ÖÖ 88 ÖÖ 88 ÖÖ M (s2) 8 Ö M ∗(t1) ∗ 8 Ö 88 ÖÖ 8 ÖÖ M(V ) This thesis is presented for the degree of Doctor of Philosophy. Department of Mathematics Division of Information and Communication Sciences Macquarie University New South Wales, Australia December 2006 (Revised March 2007) ii This thesis is the result of my own work and includes nothing which is the outcome of work done in collaboration except where specifically indicated in the text. This work has not been submitted for a higher degree to any other university or institution. Elango Panchadcharam In memory of my Father, T. Panchadcharam 1939 - 1991. iii iv Summary The thesis studies the theory of Mackey functors as an application of enriched category theory and highlights the notions of lax braiding and lax centre for monoidal categories and more generally for promonoidal categories. The notion of Mackey functor was first defined by Dress [Dr1] and Green [Gr] in the early 1970’s as a tool for studying representations of finite groups. The first contribution of this thesis is the study of Mackey functors on a com- pact closed category T . We define the Mackey functors on a compact closed category T and investigate the properties of the category Mky of Mackey func- tors on T .
    [Show full text]
  • TRACES in MONOIDAL CATEGORIES Contents 1
    TRANSACTIONS OF THE AMERICAN MATHEMATICAL SOCIETY Volume 364, Number 8, August 2012, Pages 4425–4464 S 0002-9947(2012)05615-7 Article electronically published on March 29, 2012 TRACES IN MONOIDAL CATEGORIES STEPHAN STOLZ AND PETER TEICHNER Abstract. This paper contains the construction, examples and properties of a trace and a trace pairing for certain morphisms in a monoidal category with switching isomorphisms. Our construction of the categorical trace is a com- mon generalization of the trace for endomorphisms of dualizable objects in a balanced monoidal category and the trace of nuclear operators on a topolog- ical vector space with the approximation property. In a forthcoming paper, applications to the partition function of super-symmetric field theories will be given. Contents 1. Introduction 4425 2. Motivation via field theories 4429 3. Thickened morphisms and their traces 4431 3.1. Thickened morphisms 4433 3.2. The trace of a thickened morphism 4436 4. Traces in various categories 4437 4.1. The category of vector spaces 4437 4.2. Thick morphisms with semi-dualizable domain 4439 4.3. Thick morphisms with dualizable domain 4441 4.4. The category Ban of Banach spaces 4443 4.5. A category of topological vector spaces 4445 4.6. The Riemannian bordism category 4451 5. Properties of the trace pairing 4453 5.1. The symmetry property of the trace pairing 4453 5.2. Additivity of the trace pairing 4454 5.3. Braided and balanced monoidal categories 4457 5.4. Multiplicativity of the trace pairing 4461 References 4464 1. Introduction The results of this paper provide an essential step in our proof that the partition function of a Euclidean field theory of dimension 2|1 is an integral modular function [ST1].
    [Show full text]
  • Cyclic Multicategories, Multivariable Adjunctions and Mates
    J. K-Theory 13 (2014), 337–396 ©2013 ISOPP doi:10.1017/is013012007jkt250 Cyclic multicategories, multivariable adjunctions and mates by EUGENIA CHENG,NICK GURSKI AND EMILY RIEHL Abstract A multivariable adjunction is the generalisation of the notion of a 2-variable adjunction, the classical example being the hom/tensor/cotensor trio of functors, to n C 1 functors of n variables. In the presence of multivariable adjunctions, natural transformations between certain composites built from multivariable functors have “dual” forms. We refer to corresponding natural transformations as multivariable or parametrised mates, generalising the mates correspondence for ordinary adjunctions, which enables one to pass between natural transformations involving left adjoints to those involving right adjoints. A central problem is how to express the naturality (or functoriality) of the parametrised mates, giving a precise characterization of the dualities so-encoded. We present the notion of “cyclic double multicategory” as a structure in which to organise multivariable adjunctions and mates. While the standard mates correspondence is described using an isomorphism of double categories, the multivariable version requires the framework of “double multicategories”. Moreover, we show that the analogous isomorphisms of double multicate- gories give a cyclic action on the multimaps, yielding the notion of “cyclic double multicategory”. The work is motivated by and applied to Riehl’s approach to algebraic monoidal model categories. Key Words: Adjunctions, mates, multicategories. Mathematics Subject Classification 2010: 18A40, 18D99. Contents 1 Mates 343 2 Multivariable adjunctions 350 2.1 Definition of multivariable adjunctions . ............. 351 2.2 Amotivatingexample........................ 358 2.3 Composition ............................. 359 2.4 Multivariablemates.......................... 365 338 E. CHENG,N.GURSKI &E.RIEHL 3 Cyclic double multicategories 374 3.1 Plainmulticategories........................
    [Show full text]
  • MACKEY FUNCTORS on COMPACT CLOSED CATEGORIES Groups Are
    MACKEY FUNCTORS ON COMPACT CLOSED CATEGORIES ELANGO PANCHADCHARAM AND ROSS STREET Dedicated to the memory of Saunders Mac Lane ABSTRACT. We develop and extend the theory of Mackey functors as an application of enriched category theory. We define Mackey functors on a lextensive category E and investigate the properties of the category of Mackey functors on E . We show that it is a monoidal category and the monoids are Green functors. Mackey functors are seen as providing a setting in which mere numerical equations occurring in the theory of groups can be given a structural foundation. We obtain an explicit description of the objects of the Cauchy completion of a monoidal functor and apply this to examine Morita equiv- alence of Green functors. 1. INTRODUCTION Groups are used to mathematically understand symmetry in nature and in mathe- matics itself. Classically, groups were studied either directly or via their representations. In the last 40 years, arising from the latter, groups have been studied using Mackey func- tors. Let k be a field. Let Rep(G) Rep (G) be the category of k-linear representations of = k the finite group G. We will study the structure of a monoidal category Mky(G) where the objects are called Mackey functors. This provides an extension of ordinary repre- sentation theory. For example, Rep(G) can be regarded as a full reflective sub-category of Mky(G); the reflection is strong monoidal (= tensor preserving). Representations of G are equally representations of the group algebra kG; Mackey functors can be regarded as representations of the "Mackey algebra" constructed from G.
    [Show full text]
  • Mackey Functors on Compact Closed Categories 1
    Journal of Homotopy and Related Structures, vol. 2(2), 2007, pp.261–293 MACKEY FUNCTORS ON COMPACT CLOSED CATEGORIES ELANGO PANCHADCHARAM and ROSS STREET (communicated by George Janelidze) Abstract We develop and extend the theory of Mackey functors as an application of enriched category theory. We define Mackey functors on a lextensive category E and investigate the prop- erties of the category of Mackey functors on E . We show that it is a monoidal category and the monoids are Green functors. Mackey functors are seen as providing a setting in which mere numerical equations occurring in the theory of groups can be given a structural foundation. We obtain an explicit description of the objects of the Cauchy completion of a monoidal functor and apply this to examine Morita equivalence of Green func- tors. 1. Introduction Groups are used to mathematically understand symmetry in nature and in math- ematics itself. Classically, groups were studied either directly or via their represen- tations. In the last 40 years, arising from the latter, groups have been studied using Mackey functors. Let k be a field. Let Rep(G) = Repk(G) be the category of k-linear represen- tations of the finite group G. We will study the structure of a monoidal category Mky(G) where the objects are called Mackey functors. This provides an exten- sion of ordinary representation theory. For example, Rep(G) can be regarded as a full reflective sub-category of Mky(G); the reflection is strong monoidal (= tensor preserving). Representations of G are equally representations of the group algebra kG; Mackey functors can be regarded as representations of the ”Mackey algebra” constructed from G.
    [Show full text]
  • Aspects of Categorical Algebra in Initialstructure Categories Cahiers De Topologie Et Géométrie Différentielle Catégoriques, Tome 15, No 4 (1974), P
    CAHIERS DE TOPOLOGIE ET GÉOMÉTRIE DIFFÉRENTIELLE CATÉGORIQUES MANFRED BERND WISCHNEWSKY Aspects of categorical algebra in initialstructure categories Cahiers de topologie et géométrie différentielle catégoriques, tome 15, no 4 (1974), p. 419-444 <http://www.numdam.org/item?id=CTGDC_1974__15_4_419_0> © Andrée C. Ehresmann et les auteurs, 1974, tous droits réservés. L’accès aux archives de la revue « Cahiers de topologie et géométrie différentielle catégoriques » implique l’accord avec les conditions générales d’utilisation (http://www.numdam.org/conditions). Toute utilisation commerciale ou impression systématique est constitutive d’une infraction pénale. Toute copie ou impression de ce fichier doit contenir la présente mention de copyright. Article numérisé dans le cadre du programme Numérisation de documents anciens mathématiques http://www.numdam.org/ CAHI ERS DE TOPOLOGIE Vol. XV-4 ET GEOMETRIE DIFFERENTIELLE ASPECTS OF CATEGORICAL ALGEBRA IN INITIALSTRUCTURE CATEGORIES* by Manfred Bernd WISCHNEWSKY Initialstruc ture functors F: K - L, the categorical generalization of BOURBAKI’s notion of an « initial objects [3], equivalent to Kenni- son’s pullback stripping functors, which Wyler calls Top-functors, reflect almost all categorical properties from the base category L to the initial structure category K briefly called INS-category [1,4,5,6,8,11,12,13, 13,16,18,19,20,21,22,37]. So for instance if L is complete, cocom- plete, wellpowered, cowellpowered, if L has generators, cogenerators, proj ectives, injectives, or ( coequalizer, mono )-bicategory structures ( ==&#x3E; homomorphism theorem ) , then the same is valid for any INS-category over L . Finally all important theorems of equationally defined universal alge- bra ( e.g. existence of free K-algebras, adjointness of algebraic functors..
    [Show full text]