📥 Download raw
module Padova2025.ProgrammingBasics.Naturals where

Natural numbers

In the previous chapter, we have defined the finite type of Booleans. Agda also supports infinite types. The natural numbers are the primordial example, and we will explore them now.

import Padova2025.ProgrammingBasics.Naturals.Base
import Padova2025.ProgrammingBasics.Naturals.Arithmetic
import Padova2025.ProgrammingBasics.Naturals.DecisionProcedures