Language Maps #
Maps between first-order languages in the style of the Flypitch project, as well as several important maps between structures.
Main Definitions #
- A
FirstOrder.Language.LHom
, denotedL →ᴸ L'
, is a map between languages, sending the symbols of one to symbols of the same kind and arity in the other. - A
FirstOrder.Language.LEquiv
, denotedL ≃ᴸ L'
, is an invertible language homomorphism. FirstOrder.Language.withConstants
is defined so that ifM
is anL.Structure
andA : Set M
,L.withConstants A
, denotedL[[A]]
, is a language which adds constant symbols for elements ofA
toL
.
References #
For the Flypitch project:
- [J. Han, F. van Doorn, A formal proof of the independence of the continuum hypothesis] [flypitch_cpp]
- [J. Han, F. van Doorn, A formalization of forcing and the unprovability of the continuum hypothesis][flypitch_itp]
A language homomorphism maps the symbols of one language to symbols of another.
The mapping of functions
The mapping of relations
Instances For
A language homomorphism maps the symbols of one language to symbols of another.
Equations
Instances For
The identity language homomorphism.
Equations
Instances For
The inclusion of an empty language into any other language.
Equations
Instances For
Equations
A language homomorphism is injective when all the maps between symbol types are.
- onFunction {n : ℕ} : Function.Injective fun (f : L.Functions n) => ϕ.onFunction f
- onRelation {n : ℕ} : Function.Injective fun (R : L.Relations n) => ϕ.onRelation R
Instances For
Pulls an L
-structure along a language map ϕ : L →ᴸ L'
, and then expands it
to an L'
-structure arbitrarily.
Equations
Instances For
A language homomorphism is an expansion on a structure if it commutes with the interpretation of all symbols on that structure.
- map_onFunction {n : ℕ} (f : L.Functions n) (x : Fin n → M) : Structure.funMap (ϕ.onFunction f) x = Structure.funMap f x
- map_onRelation {n : ℕ} (R : L.Relations n) (x : Fin n → M) : Structure.RelMap (ϕ.onRelation R) x = Structure.RelMap R x
Instances
A language equivalence maps the symbols of one language to symbols of another bijectively.
The forward language homomorphism
The inverse language homomorphism
Instances For
A language equivalence maps the symbols of one language to symbols of another bijectively.
Equations
Instances For
The identity equivalence from a first-order language to itself.
Equations
Instances For
The type of functions for a language consisting only of constant symbols.
Equations
Instances For
A language with constants indexed by a type.
Equations
Instances For
Gives a constantsOn α
structure to a type by assigning each constant a value.
Equations
Instances For
A map between index types induces a map between constant languages.
Equations
Instances For
Extends a language with a constant for each element of a parameter set in M
.
Equations
Instances For
Extends a language with a constant for each element of a parameter set in M
.
Equations
Instances For
The language map adding constants.
Equations
Instances For
The constant symbol indexed by a particular element.
Equations
Instances For
Adds constants to a language map.
Equations
Instances For
Equations
The language map removing an empty constant set.
Equations
Instances For
The language map extending the constant set.