mathlib3 documentation

foundational types

foundational types

Some of Lean's types are not defined in any Lean source files (even the prelude) since they come from its foundational type theory. This page provides basic documentation for these types.

For a more in-depth explanation of Lean's type theory, refer to TPiL.

Sort u #

Sort u is the type of types in Lean, and Sort u : Sort (u + 1).

Instances for Sort u

Type u #

Type u is notation for Sort (u + 1).

Instances for Type u

Prop #

Prop is notation for Sort 0.

Instances for Prop

Pi types, Π a : α, β a #

The type of dependent functions is known as a pi type. Non-dependent functions and implications are a special case.

Note that these can also be written with the alternative notations:

Lean also permits ASCII-only spellings of the three variants:

Note that despite not itself being a function, (→) is available as infix notation for λ α β, α → β.

Instances for Π a : α, β a
Instances for ∀ a : α, β a
Instances for α → β
Instances for P → Q