-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCatCheatSheet.tex
131 lines (91 loc) · 3.35 KB
/
CatCheatSheet.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
%% A tentative, eye-catchy, one-page definition of category (I would like to replicate the page frome my handwritten notes.
\documentclass[a4paper,12pt,fleqn]{scrartcl} %Per La Stampa
\usepackage[a4paper, margin=0.75cm]{geometry}
\usepackage{amsmath}
\usepackage[subpreambles=true]{standalone}
\usepackage{commath}
\usepackage[italian,english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage{hyperref}
\usepackage[basic,cat]{./Math-Symbols-List/toninus-math-symbols}
\usepackage{./Latex-Theorem/theoremtemplate}
\usepackage[toc,page]{appendix}
\usepackage{epigraph} %funny quotes
%%__________________________________
%% To transform in a package.
%%__________________________________
%%
\newcommand{\catdef}[3]{
\begin{displaymath}
#1 \leadsto
\begin{cases}
Obj = #2\\
Arr = #3
\end{cases}
\end{displaymath}
}
\newcommand{\smalltikzcd}[2]{
\begin{tikzpicture}[baseline= (a).base]
\node[scale=#1] (a) at (0,0){
\begin{tikzcd} #2 \end{tikzcd}
};
\end{tikzpicture}
}
\newcommand{\id}{\textrm{id}}
%Diagrammatic
\usepackage{tikz-cd}
\usepackage{xcolor}
\usepackage{fdsymbol}
% bulk of arrows and objects
\newcommand{\bulk}{\blacklozenge}
% such that
\newcommand{\St}{\textrm{s.t.}}
% id est
\newcommand{\ie}{\textrm{\emph{i.e.}}}
% commuting
\newcommand{\commute}{\circledequal}%\circlearrowleft
\begin{document}
\begin{abstract}
The preliminary material for my talk on the category of diffeological spaces.
\end{abstract}
\begin{appendices}
\epigraph{Category theory starts with the observation that many properties of mathematical systems can be unified and simplified by a presentation with diagrams and arrows.}{Saunders Mac Lane}
\epigraph{Poetry says more with less words.\\
Mathematics too.}{Gabriele Lolli}
%------------------------------------------------------------------------------------BASIC ---------------------------------
\section{Basic definitions}
\input{catdef}
We can not delve here on the foundational issues related to this definitions. Let us simple look at it a triple composed of \emph{data}, \emph{structure}, \emph{axiom}.
\\
One of these problem is the problem of "size". We use the term "collections" when we want to remain vague about the axiomatic framework of sets considered.
We use "mapping" when we want to consider correspondences between collections.
\\
Words like "set" and "function" are reserved to objects and morhpisms in the set category.
\paragraph{How to compare cat?}
\input{functordef}
\subparagraph{Basic Classification:}
\input{basicfunctorclassification}
\subparagraph{How to compare Functors?}
\input{naturaltransfdef}
%------------------------------------------------------------------------------------Limits ---------------------------------
\newpage
\section{Limits}
\input{limitdef}
The best way to grasp the meaning (...) to understand what is a limit it is through examples. The model category is $\cat[Set]$ which turn out to be complete and co-complete.
\input{limitbestiary}
\newpage
\section{Classification of Morphisms}
In any $\cat$ there is a basic classification of morphisms $f: C \rightarrow D$.\\
\input{basicmorphismclassification}
\newpage
\section{Subobjects}
\newpage
\section{Cartesian Closedness}
\section{Eternal TODO}
\input{slicecatdef}
\end{appendices}
\nocite{*}
\bibliographystyle{plain}
\bibliography{biblio}
\end{document}