TheHoTTGame/1FundamentalGroup/Quest0.md
2021-09-14 18:12:03 +01:00

30 lines
590 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Whoa very cool
=======================
In this series of quests we will prove that the fundamental group
of `S¹` is ``.
In fact, our strategy will also show that the higher homotopy groups of
`S¹` are all trivial.
We begin by formalising the problem statement.
## The Circle
A contruction of 'the circle' is :
- a point
- an edge from that point to itself
Here is our definition of the circle in `agda`.
```agda
data : Type where
base :
loop : base base
```
The `base \== base` is the _space of paths from `base` to `base`_.
An "edge" is the same as a path.