Merge pull request #16 from felix-engelmann/patch-1

typo bold in lar of accociativity
This commit is contained in:
boris 2021-09-28 10:19:50 +03:00 committed by GitHub
commit af7b6f8709
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -267,7 +267,7 @@ Functional composition is special not only because you can take any two morphism
This approach for building stuff is often used in programming. To see some examples, you don't need to look further than the way the pipe operator in bash (`|`), that feeds the standard output of a program with the standard input of another program, is (ab)used. (If you *want* to look further, note that there is a whole programming paradigm based on functional composition, called "concatenative programming".)
But let's get back to the math. If we carefully review the definition above, we can see that it can be reduced to multiple applications of the following formula: given 4 objects and 3 morphisms between them **f** **g** **h**, combining **h** and **g** and then combining the end result with f** should be the same as combining **h** to the result of **g** and **f** (or simply **(h • g) • f = h • (g • f)**).
But let's get back to the math. If we carefully review the definition above, we can see that it can be reduced to multiple applications of the following formula: given 4 objects and 3 morphisms between them **f** **g** **h**, combining **h** and **g** and then combining the end result with **f** should be the same as combining **h** to the result of **g** and **f** (or simply **(h • g) • f = h • (g • f)**).
**Task:** show how the definition can be reduced to the formula. (The approach resembles mathematical induction.)