Before giving a precise definition of category, we should become familiar with one example, the category of finite sets and maps.
An object in this category is a finite set or collection.
A mapf in this category consists of 3 things: 1. set A, called the domain of the map 2. set B, called the codomain of the map 3. rule assigning to each element a ∈ A an element b ∈ B denoted and determined by f(a) = b
```dot {engine="circo"} digraph { A -> B [color=cornflowerblue, label="f "]; B -> C [color=cornflowerblue]; A -> C [color=crimson]; A -> A [style=dotted] }