An open API service indexing awesome lists of open source software.

https://github.com/rootmos/coq-hack

A place to collect things I learn about Coq.
https://github.com/rootmos/coq-hack

Last synced: 8 months ago
JSON representation

A place to collect things I learn about Coq.

Awesome Lists containing this project

README

          

# coq-hack
[![Check](https://github.com/rootmos/coq-hack/actions/workflows/check.yaml/badge.svg)](https://github.com/rootmos/coq-hack/actions/workflows/check.yaml)

A place to collect things I learn about [Coq](https://coq.inria.fr/).

Fun things I've done so far:
* Equivalence between two definitions of a well-founded relation
([Coq's](https://coq.inria.fr/library/Coq.Init.Wf.html) and [Wikipedia's](https://en.wikipedia.org/wiki/Well-founded_relation))
using classical logic ([my proof](src/Notes/wf.v))
* [Formalization](src/Types/STLC.v) of the simply typed lambda calculus (following [TaPL](https://www.cis.upenn.edu/~bcpierce/tapl/))

## Resources
* [Coq Math Problems](https://coq-math-problems.github.io/) ([my solutions](src/CMP))
* [Tutorial](https://coq.inria.fr/tutorial-nahas)
* [Coq's Wiki](https://github.com/coq/coq/wiki)