Encodings #
This file contains the definition of a (finite) encoding, a map from a type to strings in an alphabet, used in defining computability by Turing machines. It also contains several examples:
Examples #
finEncodingNatBool
: a binary encoding of ℕ in a simple alphabet.finEncodingNatΓ'
: a binary encoding of ℕ in the alphabet used for TM's.unaryFinEncodingNat
: a unary encoding of ℕfinEncodingBoolBool
: an encoding of bool.
An encoding plus a guarantee of finiteness of the alphabet.
Instances For
Equations
- Computability.inhabitedΓ' = { default := Computability.Γ'.blank }
The natural inclusion of bool in Γ'.
Instances For
@[deprecated Computability.sectionΓ'Bool_inclusionBoolΓ' (since := "2025-01-21")]
An encoding function of the positive binary numbers in bool.
Equations
Instances For
An encoding function of ℕ in bool.
Instances For
A binary encoding of ℕ in bool.
Equations
- One or more equations did not get rendered due to their size.
Instances For
A binary fin_encoding of ℕ in bool.
Equations
- Computability.finEncodingNatBool = { toEncoding := Computability.encodingNatBool, ΓFin := Bool.fintype }
Instances For
A binary encoding of ℕ in Γ'.
Equations
- One or more equations did not get rendered due to their size.
Instances For
A binary FinEncoding of ℕ in Γ'.
Equations
- Computability.finEncodingNatΓ' = { toEncoding := Computability.encodingNatΓ', ΓFin := inferInstanceAs (Fintype Computability.Γ') }
Instances For
A unary fin_encoding of ℕ.
Equations
- One or more equations did not get rendered due to their size.
Instances For
An encoding function of bool in bool.
Equations
Instances For
A fin_encoding of bool in bool.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Computability.inhabitedFinEncoding = { default := Computability.finEncodingBoolBool }