├── .gitattributes ├── .github └── workflows │ ├── mkdocs.yml │ └── rzk.yml ├── .gitignore ├── CONTRIBUTING.md ├── README.md ├── mkdocs.yml ├── overrides ├── assets │ └── images │ │ └── logo-1000x1000.png └── javascript │ └── mathjax.js ├── requirements.txt ├── rzk.yaml └── src ├── 1-foundations ├── 0-chapter-template │ ├── 01-section.rzk.md │ ├── 02-section.rzk.md │ └── exercises │ │ ├── 0.1-solution.rzk.md │ │ ├── 0.2-solution.rzk.md │ │ └── README.md ├── 1-type-theory │ ├── 04-dependent-function-types.rzk.md │ ├── 05-product-types.rzk.md │ ├── 06-dependent-pair-types.rzk.md │ ├── 07-coproduct-types.rzk.md │ ├── 08-booleans.rzk.md │ ├── 09-natural-numbers.rzk.md │ ├── 10-pattern-matching-and-recursion.rzk.md │ ├── 11-propositions-as-types.rzk.md │ ├── 12-identity-types.rzk.md │ └── exercises │ │ ├── 1.1-solution.rzk.md │ │ ├── 1.10-solution.rzk.md │ │ ├── 1.11-solution.rzk.md │ │ ├── 1.12-solution.rzk.md │ │ ├── 1.13-solution.rzk.md │ │ ├── 1.14-solution.rzk.md │ │ ├── 1.15-solution.rzk.md │ │ ├── 1.16-solution.rzk.md │ │ ├── 1.2-solution.rzk.md │ │ ├── 1.3-solution.rzk.md │ │ ├── 1.4-solution.rzk.md │ │ ├── 1.5-solution.rzk.md │ │ ├── 1.6-solution.rzk.md │ │ ├── 1.7-solution.rzk.md │ │ ├── 1.8-solution.rzk.md │ │ ├── 1.9-solution.rzk.md │ │ └── README.md ├── 2-homotopy-type-theory │ ├── 01-types-are-higher-groupoids.rzk.md │ ├── 02-functions-are-functors.rzk.md │ ├── 03-type-families-are-fibrations.rzk.md │ ├── 04-homotopies-and-equivalences.rzk.md │ ├── 05-the-higher-groupoid-structure-of-type-formers.rzk.md │ ├── 06-cartesian-product-types.rzk.md │ ├── 07-sigma-types.rzk.md │ ├── 08-the-unit-type.rzk.md │ ├── 09-pi-types-and-function-extensionality.rzk.md │ ├── 10-universes-and-univalence-axiom.rzk.md │ ├── 11-identity-type.rzk.md │ ├── 12-coproducts.rzk.md │ ├── 13-natural-numbers.rzk.md │ ├── 14-example-equality-of-structures.rzk.md │ ├── 15-universal-properties.rzk.md │ └── exercises │ │ ├── 2.1-solution.rzk.md │ │ ├── 2.10-solution.rzk.md │ │ ├── 2.11-solution.rzk.md │ │ ├── 2.12-solution.rzk.md │ │ ├── 2.13-solution.rzk.md │ │ ├── 2.14-solution.rzk.md │ │ ├── 2.15-solution.rzk.md │ │ ├── 2.16-solution.rzk.md │ │ ├── 2.17-solution.rzk.md │ │ ├── 2.18-solution.rzk.md │ │ ├── 2.2-solution.rzk.md │ │ ├── 2.3-solution.rzk.md │ │ ├── 2.4-solution.rzk.md │ │ ├── 2.5-solution.rzk.md │ │ ├── 2.6-solution.rzk.md │ │ ├── 2.7-solution.rzk.md │ │ ├── 2.8-solution.rzk.md │ │ ├── 2.9-solution.rzk.md │ │ └── README.md └── 3-sets-and-logic │ ├── 01-sets-and-n-types.rzk.md │ ├── 02-propositions-as-types.rzk.md │ ├── 03-mere-propositions.rzk.md │ └── 11-contractibility.rzk.md └── index.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/.github/workflows/mkdocs.yml -------------------------------------------------------------------------------- /.github/workflows/rzk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/.github/workflows/rzk.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | venv 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/README.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /overrides/assets/images/logo-1000x1000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/overrides/assets/images/logo-1000x1000.png -------------------------------------------------------------------------------- /overrides/javascript/mathjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/overrides/javascript/mathjax.js -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/requirements.txt -------------------------------------------------------------------------------- /rzk.yaml: -------------------------------------------------------------------------------- 1 | include: 2 | - 'src/**/*.rzk.md' 3 | -------------------------------------------------------------------------------- /src/1-foundations/0-chapter-template/01-section.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/0-chapter-template/01-section.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/0-chapter-template/02-section.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/0-chapter-template/02-section.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/0-chapter-template/exercises/0.1-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/0-chapter-template/exercises/0.1-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/0-chapter-template/exercises/0.2-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/0-chapter-template/exercises/0.2-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/0-chapter-template/exercises/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/1-foundations/1-type-theory/04-dependent-function-types.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/1-type-theory/04-dependent-function-types.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/1-type-theory/05-product-types.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/1-type-theory/05-product-types.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/1-type-theory/06-dependent-pair-types.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/1-type-theory/06-dependent-pair-types.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/1-type-theory/07-coproduct-types.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/1-type-theory/07-coproduct-types.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/1-type-theory/08-booleans.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/1-type-theory/08-booleans.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/1-type-theory/09-natural-numbers.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/1-type-theory/09-natural-numbers.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/1-type-theory/10-pattern-matching-and-recursion.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/1-type-theory/10-pattern-matching-and-recursion.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/1-type-theory/11-propositions-as-types.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/1-type-theory/11-propositions-as-types.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/1-type-theory/12-identity-types.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/1-type-theory/12-identity-types.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/1-type-theory/exercises/1.1-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/1-type-theory/exercises/1.1-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/1-type-theory/exercises/1.10-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/1-type-theory/exercises/1.10-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/1-type-theory/exercises/1.11-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/1-type-theory/exercises/1.11-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/1-type-theory/exercises/1.12-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/1-type-theory/exercises/1.12-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/1-type-theory/exercises/1.13-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/1-type-theory/exercises/1.13-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/1-type-theory/exercises/1.14-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/1-type-theory/exercises/1.14-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/1-type-theory/exercises/1.15-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/1-type-theory/exercises/1.15-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/1-type-theory/exercises/1.16-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/1-type-theory/exercises/1.16-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/1-type-theory/exercises/1.2-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/1-type-theory/exercises/1.2-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/1-type-theory/exercises/1.3-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/1-type-theory/exercises/1.3-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/1-type-theory/exercises/1.4-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/1-type-theory/exercises/1.4-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/1-type-theory/exercises/1.5-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/1-type-theory/exercises/1.5-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/1-type-theory/exercises/1.6-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/1-type-theory/exercises/1.6-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/1-type-theory/exercises/1.7-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/1-type-theory/exercises/1.7-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/1-type-theory/exercises/1.8-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/1-type-theory/exercises/1.8-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/1-type-theory/exercises/1.9-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/1-type-theory/exercises/1.9-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/1-type-theory/exercises/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/1-type-theory/exercises/README.md -------------------------------------------------------------------------------- /src/1-foundations/2-homotopy-type-theory/01-types-are-higher-groupoids.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/2-homotopy-type-theory/01-types-are-higher-groupoids.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/2-homotopy-type-theory/02-functions-are-functors.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/2-homotopy-type-theory/02-functions-are-functors.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/2-homotopy-type-theory/03-type-families-are-fibrations.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/2-homotopy-type-theory/03-type-families-are-fibrations.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/2-homotopy-type-theory/04-homotopies-and-equivalences.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/2-homotopy-type-theory/04-homotopies-and-equivalences.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/2-homotopy-type-theory/05-the-higher-groupoid-structure-of-type-formers.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/2-homotopy-type-theory/05-the-higher-groupoid-structure-of-type-formers.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/2-homotopy-type-theory/06-cartesian-product-types.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/2-homotopy-type-theory/06-cartesian-product-types.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/2-homotopy-type-theory/07-sigma-types.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/2-homotopy-type-theory/07-sigma-types.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/2-homotopy-type-theory/08-the-unit-type.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/2-homotopy-type-theory/08-the-unit-type.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/2-homotopy-type-theory/09-pi-types-and-function-extensionality.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/2-homotopy-type-theory/09-pi-types-and-function-extensionality.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/2-homotopy-type-theory/10-universes-and-univalence-axiom.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/2-homotopy-type-theory/10-universes-and-univalence-axiom.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/2-homotopy-type-theory/11-identity-type.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/2-homotopy-type-theory/11-identity-type.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/2-homotopy-type-theory/12-coproducts.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/2-homotopy-type-theory/12-coproducts.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/2-homotopy-type-theory/13-natural-numbers.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/2-homotopy-type-theory/13-natural-numbers.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/2-homotopy-type-theory/14-example-equality-of-structures.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/2-homotopy-type-theory/14-example-equality-of-structures.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/2-homotopy-type-theory/15-universal-properties.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/2-homotopy-type-theory/15-universal-properties.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/2-homotopy-type-theory/exercises/2.1-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/2-homotopy-type-theory/exercises/2.1-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/2-homotopy-type-theory/exercises/2.10-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/2-homotopy-type-theory/exercises/2.10-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/2-homotopy-type-theory/exercises/2.11-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/2-homotopy-type-theory/exercises/2.11-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/2-homotopy-type-theory/exercises/2.12-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/2-homotopy-type-theory/exercises/2.12-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/2-homotopy-type-theory/exercises/2.13-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/2-homotopy-type-theory/exercises/2.13-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/2-homotopy-type-theory/exercises/2.14-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/2-homotopy-type-theory/exercises/2.14-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/2-homotopy-type-theory/exercises/2.15-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/2-homotopy-type-theory/exercises/2.15-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/2-homotopy-type-theory/exercises/2.16-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/2-homotopy-type-theory/exercises/2.16-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/2-homotopy-type-theory/exercises/2.17-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/2-homotopy-type-theory/exercises/2.17-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/2-homotopy-type-theory/exercises/2.18-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/2-homotopy-type-theory/exercises/2.18-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/2-homotopy-type-theory/exercises/2.2-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/2-homotopy-type-theory/exercises/2.2-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/2-homotopy-type-theory/exercises/2.3-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/2-homotopy-type-theory/exercises/2.3-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/2-homotopy-type-theory/exercises/2.4-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/2-homotopy-type-theory/exercises/2.4-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/2-homotopy-type-theory/exercises/2.5-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/2-homotopy-type-theory/exercises/2.5-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/2-homotopy-type-theory/exercises/2.6-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/2-homotopy-type-theory/exercises/2.6-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/2-homotopy-type-theory/exercises/2.7-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/2-homotopy-type-theory/exercises/2.7-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/2-homotopy-type-theory/exercises/2.8-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/2-homotopy-type-theory/exercises/2.8-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/2-homotopy-type-theory/exercises/2.9-solution.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/2-homotopy-type-theory/exercises/2.9-solution.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/2-homotopy-type-theory/exercises/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/2-homotopy-type-theory/exercises/README.md -------------------------------------------------------------------------------- /src/1-foundations/3-sets-and-logic/01-sets-and-n-types.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/3-sets-and-logic/01-sets-and-n-types.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/3-sets-and-logic/02-propositions-as-types.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/3-sets-and-logic/02-propositions-as-types.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/3-sets-and-logic/03-mere-propositions.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/3-sets-and-logic/03-mere-propositions.rzk.md -------------------------------------------------------------------------------- /src/1-foundations/3-sets-and-logic/11-contractibility.rzk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/1-foundations/3-sets-and-logic/11-contractibility.rzk.md -------------------------------------------------------------------------------- /src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzk-lang/hottbook/HEAD/src/index.md --------------------------------------------------------------------------------