Category theory
Lets hack some abstract bullshit
The best way to understand what you are reading is to make the idea your own “aha”. This means following the idea back to its origin (to What Is), and thus rediscovering it for yourself.
Indeed, everything that has been written by humans (except bullshit) is (or at least should be) verbalized observations of the same reality from different angles and distances (points of view).
Proper philosophy first
Why arrows?
Because they imply a direction - an order for a ordered pair.
Why directed? Because of the Causality Principle. Causality (it and only it) establishes a direction and an order.
A single “step”
It may be a single step of a logical deduction (which is called an implication) or it may be a function application (which sounds almost the same), or it may be a single leg of a path.
Is it really a minimal?
A single “dot”
From an external observe, of course. This is something he directs his attention to
We seen such arrows before (yes, it is a fat one, but it is an arrow!).
So, this single dot (selected by the mind or by directing observer’s attention to) is a starting point for a single step. It is sometimes called a selector.
We cannot step from nothing. (Which is why False
does not imply anything).
A set
One of the ways to define a set is to state explicitly all the elements.
The notation for this is
What does it mean? It means that an observer has to know and to point out every single element explicitly, with a finger or with a word, just like children do.
A next step
A next step starts exactly where the previous ends. This is the essence
of a composition (of functions, of implications, etc).
Any 3 dots are between 2 steps
There can be only “this many” directed arrows between any 3 dots.
This is a minimal algebraic structure.
Nothing more to consider
Just like it is with the successor function (+1)
, the ability to
take a single step
It is not an arbitrary choice that a λ abstraction is of an arity one (takes exactly one argument) - it is minimal and enough for everything.
Currying
Currying is a technique to take one (and only one) argument to a
function at a time by returning a “next step” function for a “next
argument” for multi-argument operators, such as
It corresponds exactly to the
Partial application (supplying a fewer arguments and using the
resulting closure) - like (+1)
- naturally follows.
Now we “compose” these steps (or lambdas).
Composition
We describe “steps” as mappings
Now we compose these mappings (steps) with an operator
Associativity
Composition should have the associative property
There is a special case, when
This means the operation (
Addition(++
are such operations - it does not
matter in what order we add up or put together.
Identity
There has to be an arrow from any “dot” to itself, which corresponds to an identity function for a set (or an identity element for an operation).
What can be a “dot”
Usually, dots stand for sets or types, but it could be almost any “collection”, “structure” or a whole “class” of these.
What could be an “arrow”
A single function, a morphism (which is more general), a Functor (which is a particular class of morphisms), everything that takes a single step (and has at most one outgoing arrow).
A homomorhphism is a technical term for a structure-preserving transformation (mapping, or a function).
One more generalization
A category is a higher level generalization from (and defined in terms of) the Set Theory.
- “collections” are sets (or classes)
- “morphisms” are set-theoretic functions (sets of ordered pairs)
- “equality” is also set-theoretic (all the same members)
Within Set Theory functions from
These functions are single “composite arrows” at the type level -
So [(a, b)]
which is a table, and a valid type in Haskell, by the way.
A function
There are also “individual arrows” which represent each ordered pair.
And
{ (1, 1), (2, 4), (3, 9), ... }
The ordering of pairs (not within a single pair) is immaterial.
So, ordered pairs were generalized as “arrows” (which are convenient for directed graphs) and values as mere “dots” (which they call “objects”).
Thus we have something even more abstract, like
* -> * * -> * * -> * ...
and particular strucures (directed graphs) they form when being composed.
Not only we generalize structure, we also generalize associative composition of “arrows”.
Structure
So, structurally, there are a “collection” (a set) of “objects” (“dots”) together with a “collection” (a set) of “arrows” (“morphisms”).
Structurally, there must be at least one “object” and at least one “arrow” (to itself) in a category. And a trivial composition with itself.
One of the most important notions is to show that some structure of “dots” and “arrows” is all that is there.
This has philosophical correlation to the fact, that there is no such thing as randomness, only “possible paths” and “forks” (which, in turn, corresponds to sum-types and pattern-matching on them).
Nesting
Just like sets, these abstract entities could be nested, given that they have the same structure of composed arrows.
All the individual arrows
Lets say we have augmented a set of values with an explicit set of all “arrows”, which means adding more structure.
Not just one arrow, as in
Usually a collection of all arrows (within a category) is denoted as
All the “individual arrows” have the same domain
Sadly, not all functions (morphisms) are one-to-one, so different patterns emerge.
Composition
The composition operator
Associativity of composition (of functions or “morphisms”)
This means, that it is irrelevant which two you “chain” first, just as if one is wielding pieces of a pipe together into a single one.
A chain reaction is a direct manifestation of Causality.
Yes, this is a pipeline of functions (or morphisms). It is typed (a domain and a range must be consistent), so it is not the case that anything can be composed to anything else (as in naive systems).
Obviously, not every implication can be composed with every other.
There is nothing magical about associative property of a composition of arrows.
And if
So, to form a category all the arrows must be composable (properly chain-able).
Identity
For every “object” (a “dot”) an “identity morphism” (an arrow to itself) is required.
An arrow is a mapping - a particular function with its domain and
range.
Identities are important for “at the ends” of a sequence.
Just as with identity values (for an associative operation) these identity functions (identity arrows) are used in composition - at “both ends” of a chain of composed functions.
Structural patterns
It is not enough to specify (list) every single individual arrow, we have to realize which pattern they form when being composed.
Some patterns are common, and we give them a name.
Each particular structural pattern is its own kind or a structual type.
So, a set of dots, a set of arrows and a pattern (directed graph) the arrows from.
Homomorphisms
Some mappings of structured objects (values) are structure-preserving, some are not.
Obviously, different kind of mappings belong to distinct categories, and here you have categories all the way down.
Monoids
So it is a category with only one object:
By the way, the identity function is a partially applied (e.)
,
for example (+0)
or (*1)
or (++ "")
Isomorphism
Complications