bsc-leon-vatthauer/README.md

46 lines
2 KiB
Markdown
Raw Normal View History

2023-06-27 16:52:02 +02:00
# BSc Leon Vatthauer
2023-07-12 15:22:54 +02:00
Here I am formalizing some notions of this paper [https://arxiv.org/pdf/2102.11828.pdf](https://arxiv.org/pdf/2102.11828.pdf) in agda.
2023-06-27 16:52:02 +02:00
2023-07-12 15:22:54 +02:00
## Running the project
TODO
2023-06-27 16:52:02 +02:00
2023-08-07 20:37:33 +02:00
## Contributions to *agda-categories*
This project uses the awesome category theory library for agda ([agda-categories](https://github.com/agda/agda-categories)), it is already very extensive, but some notions needed here are missing, so I contribute them to the library.
So far the contributions are:
1. Kleisli triples [[merged](https://github.com/agda/agda-categories/pull/381)]
- `Categories.Monad.Construction.Kleisli`
2023-08-16 15:06:24 +02:00
2. Distributive categories (and the relation to extensivity) [[merged](https://github.com/agda/agda-categories/pull/383)]
2023-08-07 20:37:33 +02:00
- `Categories.Category.Distributive`
- `Categories.Category.Extensive.Bundle`
- `Categories.Category.Extensive.Properties.Distributive`
2023-08-16 15:06:24 +02:00
3. Commutative categories [TODO]
2023-08-07 20:37:33 +02:00
2023-07-12 15:22:54 +02:00
## Goals
2023-08-16 15:06:24 +02:00
- [ ] `Monad.Instance.Delay`
- [X] Formalize the delay monad (as kleisli triple)
- [ ] Show that a strong delay monad is commutative (also needs formalization of strong delay monad)
2023-08-07 20:37:33 +02:00
- [X] `ElgotAlgebra.agda`
- [X] Formalize (un-)guarded elgot-algebra.
- [X] Show the equivalence of `#-Folding` and `#-Compositionality` in the unguarded case. (*Proposition 10*)
- [ ] `ElgotAlgebras.agda`
- [X] Formalize the category of elgot algebras for a given carrier.
- [X] Show existence of products in this category
- [ ] Show existence of exponentials (if carrier has exponentials)
2023-08-16 15:06:24 +02:00
- [ ] `ElgotMonad.agda` [TODO]
- [ ] Formalize (strong) (pre) elgot monad
- [ ] Show ElgotMonad->PreElgotMonat
- [ ] Monad K [TODO]
- [ ] Definitions using free uniform iteration algebras
- [ ] strength
- [ ] stable free uniform iteration algebras (and the relation to CCC carriers)
- [ ] ...
- [ ] Theorem 37 [TODO] (final goal)
2023-06-27 16:52:02 +02:00
## Roadmap
2023-08-07 20:37:33 +02:00
TODO
## TODOs
- [ ] Create Roadmap (find what theorem 37 depends on and then create a game plan)
2023-08-16 15:06:24 +02:00
- [X] Refactor `ElgotAlgebras.agda` using `Categories.Morphism.Reasoning` (nicer proofs)