First-Order Structures in Graph Theory #
This file defines first-order languages, structures, and theories in graph theory.
Main Definitions #
FirstOrder.Language.graph
is the language consisting of a single relation representing adjacency.SimpleGraph.structure
is the first-order structure corresponding to a given simple graph.FirstOrder.Language.Theory.simpleGraph
is the theory of simple graphs.FirstOrder.Language.simpleGraphOfStructure
gives the simple graph corresponding to a model of the theory of simple graphs.
Simple Graphs #
The language consisting of a single relation representing adjacency.
Equations
- FirstOrder.Language.graph = { Functions := fun (x : ℕ) => Empty, Relations := FirstOrder.Language.graphRel }
Instances For
Equations
@[reducible, inline]
The symbol representing the adjacency relation.
Instances For
Any simple graph can be thought of as a structure in the language of graphs.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The theory of simple graphs.
Equations
Instances For
def
FirstOrder.Language.simpleGraphOfStructure
(V : Type u)
[Language.graph.Structure V]
[V ⊨ Theory.simpleGraph]
:
Any model of the theory of simple graphs represents a simple graph.