Zulip Chat Archive
Stream: new members
Topic: Sort
Holly Liu (Jul 21 2021 at 22:11):
for universe u
, #check Sort u
evaluates Sort u
as having type Type u
, however the documentation says types are really just Sort
s, i.e. Prop
abbreviates Sort 0
, Type
abbreviates Sort 1
, and Type u
abbreviates Sort (u+1)
. is the point of Sort
just to have an umbrella set that includes both Prop
and Type
?
Kevin Buzzard (Jul 21 2021 at 22:13):
Yes :-)
Kevin Buzzard (Jul 21 2021 at 22:14):
An umbrella universe in fact
Kevin Buzzard (Jul 21 2021 at 22:14):
For example this means that you can do induction and recursion on the naturals with the same function nat.rec
Last updated: Dec 20 2023 at 11:08 UTC