HomeHome Intuitionistic Logic Explorer
Theorem List (p. 165 of 173)
< Previous  Next >
Bad symbols? Try the
GIF version.

Mirrors  >  Metamath Home Page  >  ILE Home Page  >  Theorem List Contents  >  Recent Proofs       This page: Page List

Theorem List for Intuitionistic Logic Explorer - 16401-16500   *Has distinct variable group(s)
TypeLabelDescription
Statement
 
Theoremedgopval 16401 The edges of a graph represented as ordered pair. (Contributed by AV, 1-Jan-2020.) (Revised by AV, 13-Oct-2020.)
((𝑉𝑊𝐸𝑋) → (Edg‘⟨𝑉, 𝐸⟩) = ran 𝐸)
 
Theoremedgov 16402 The edges of a graph represented as ordered pair, shown as operation value. Although a little less intuitive, this representation is often used because it is shorter than the representation as function value of a graph given as ordered pair, see edgopval 16401. The representation ran 𝐸 for the set of edges is even shorter, though. (Contributed by AV, 2-Jan-2020.) (Revised by AV, 13-Oct-2020.)
((𝑉𝑊𝐸𝑋) → (𝑉Edg𝐸) = ran 𝐸)
 
Theoremedgstruct 16403 The edges of a graph represented as an extensible structure with vertices as base set and indexed edges. (Contributed by AV, 13-Oct-2020.)
𝐺 = {⟨(Base‘ndx), 𝑉⟩, ⟨(.ef‘ndx), 𝐸⟩}       ((𝑉𝑊𝐸𝑋) → (Edg‘𝐺) = ran 𝐸)
 
Theoremedgiedgbg 16404* A set is an edge iff it is an indexed edge. (Contributed by AV, 17-Oct-2020.) (Revised by AV, 8-Dec-2021.)
𝐼 = (iEdg‘𝐺)       ((𝐺𝑉 ∧ Fun 𝐼) → (𝐸 ∈ (Edg‘𝐺) ↔ ∃𝑥 ∈ dom 𝐼 𝐸 = (𝐼𝑥)))
 
Theoremedg0iedg0g 16405 There is no edge in a graph iff its edge function is empty. (Contributed by AV, 15-Dec-2020.) (Revised by AV, 8-Dec-2021.)
𝐼 = (iEdg‘𝐺)    &   𝐸 = (Edg‘𝐺)       ((𝐺𝑉 ∧ Fun 𝐼) → (𝐸 = ∅ ↔ 𝐼 = ∅))
 
12.2  Undirected graphs
 
12.2.1  Undirected hypergraphs
 
Syntaxcuhgr 16406 Extend class notation with undirected hypergraphs.
class UHGraph
 
Syntaxcushgr 16407 Extend class notation with undirected simple hypergraphs.
class USHGraph
 
Definitiondf-uhgrm 16408* Define the class of all undirected hypergraphs. An undirected hypergraph consists of a set 𝑣 (of "vertices") and a function 𝑒 (representing indexed "edges") into the set of inhabited subsets of this set. (Contributed by Alexander van der Vekens, 26-Dec-2017.) (Revised by Jim Kingdon, 29-Dec-2025.)
UHGraph = {𝑔[(Vtx‘𝑔) / 𝑣][(iEdg‘𝑔) / 𝑒]𝑒:dom 𝑒⟶{𝑠 ∈ 𝒫 𝑣 ∣ ∃𝑗 𝑗𝑠}}
 
Definitiondf-ushgrm 16409* Define the class of all undirected simple hypergraphs. An undirected simple hypergraph is a special (non-simple, multiple, multi-) hypergraph for which the edge function 𝑒 is an injective (one-to-one) function into subsets of the set of vertices 𝑣, representing the (one or more) vertices incident to the edge. This definition corresponds to the definition of hypergraphs in section I.1 of [Bollobas] p. 7 (except that the empty set seems to be allowed to be an "edge") or section 1.10 of [Diestel] p. 27, where "E is a subset of [...] the power set of V, that is the set of all subsets of V" resp. "the elements of E are nonempty subsets (of any cardinality) of V". (Contributed by AV, 19-Jan-2020.) (Revised by Jim Kingdon, 31-Dec-2025.)
USHGraph = {𝑔[(Vtx‘𝑔) / 𝑣][(iEdg‘𝑔) / 𝑒]𝑒:dom 𝑒1-1→{𝑠 ∈ 𝒫 𝑣 ∣ ∃𝑗 𝑗𝑠}}
 
Theoremisuhgrm 16410* The predicate "is an undirected hypergraph." (Contributed by Alexander van der Vekens, 26-Dec-2017.) (Revised by AV, 9-Oct-2020.)
𝑉 = (Vtx‘𝐺)    &   𝐸 = (iEdg‘𝐺)       (𝐺𝑈 → (𝐺 ∈ UHGraph ↔ 𝐸:dom 𝐸⟶{𝑠 ∈ 𝒫 𝑉 ∣ ∃𝑗 𝑗𝑠}))
 
Theoremisushgrm 16411* The predicate "is an undirected simple hypergraph." (Contributed by AV, 19-Jan-2020.) (Revised by AV, 9-Oct-2020.)
𝑉 = (Vtx‘𝐺)    &   𝐸 = (iEdg‘𝐺)       (𝐺𝑈 → (𝐺 ∈ USHGraph ↔ 𝐸:dom 𝐸1-1→{𝑠 ∈ 𝒫 𝑉 ∣ ∃𝑗 𝑗𝑠}))
 
Theoremuhgrfm 16412* The edge function of an undirected hypergraph is a function into the power set of the set of vertices. (Contributed by Alexander van der Vekens, 26-Dec-2017.) (Revised by AV, 9-Oct-2020.)
𝑉 = (Vtx‘𝐺)    &   𝐸 = (iEdg‘𝐺)       (𝐺 ∈ UHGraph → 𝐸:dom 𝐸⟶{𝑠 ∈ 𝒫 𝑉 ∣ ∃𝑗 𝑗𝑠})
 
Theoremushgrfm 16413* The edge function of an undirected simple hypergraph is a one-to-one function into the power set of the set of vertices. (Contributed by AV, 9-Oct-2020.)
𝑉 = (Vtx‘𝐺)    &   𝐸 = (iEdg‘𝐺)       (𝐺 ∈ USHGraph → 𝐸:dom 𝐸1-1→{𝑠 ∈ 𝒫 𝑉 ∣ ∃𝑗 𝑗𝑠})
 
Theoremuhgrss 16414 An edge is a subset of vertices. (Contributed by Alexander van der Vekens, 26-Dec-2017.) (Revised by AV, 18-Jan-2020.)
𝑉 = (Vtx‘𝐺)    &   𝐸 = (iEdg‘𝐺)       ((𝐺 ∈ UHGraph ∧ 𝐹 ∈ dom 𝐸) → (𝐸𝐹) ⊆ 𝑉)
 
Theoremuhgreq12g 16415 If two sets have the same vertices and the same edges, one set is a hypergraph iff the other set is a hypergraph. (Contributed by Alexander van der Vekens, 26-Dec-2017.) (Revised by AV, 18-Jan-2020.)
𝑉 = (Vtx‘𝐺)    &   𝐸 = (iEdg‘𝐺)    &   𝑊 = (Vtx‘𝐻)    &   𝐹 = (iEdg‘𝐻)       (((𝐺𝑋𝐻𝑌) ∧ (𝑉 = 𝑊𝐸 = 𝐹)) → (𝐺 ∈ UHGraph ↔ 𝐻 ∈ UHGraph))
 
Theoremuhgrfun 16416 The edge function of an undirected hypergraph is a function. (Contributed by Alexander van der Vekens, 26-Dec-2017.) (Revised by AV, 15-Dec-2020.)
𝐸 = (iEdg‘𝐺)       (𝐺 ∈ UHGraph → Fun 𝐸)
 
Theoremuhgrm 16417* An edge is an inhabited subset of vertices. (Contributed by Mario Carneiro, 11-Mar-2015.) (Revised by AV, 15-Dec-2020.)
𝐸 = (iEdg‘𝐺)       ((𝐺 ∈ UHGraph ∧ 𝐸 Fn 𝐴𝐹𝐴) → ∃𝑗 𝑗 ∈ (𝐸𝐹))
 
Theoremlpvtx 16418 The endpoints of a loop (which is an edge at index 𝐽) are two (identical) vertices 𝐴. (Contributed by AV, 1-Feb-2021.)
𝐼 = (iEdg‘𝐺)       ((𝐺 ∈ UHGraph ∧ 𝐽 ∈ dom 𝐼 ∧ (𝐼𝐽) = {𝐴}) → 𝐴 ∈ (Vtx‘𝐺))
 
Theoremushgruhgr 16419 An undirected simple hypergraph is an undirected hypergraph. (Contributed by AV, 19-Jan-2020.) (Revised by AV, 9-Oct-2020.)
(𝐺 ∈ USHGraph → 𝐺 ∈ UHGraph)
 
Theoremisuhgropm 16420* The property of being an undirected hypergraph represented as an ordered pair. The representation as an ordered pair is the usual representation of a graph, see section I.1 of [Bollobas] p. 1. (Contributed by AV, 1-Jan-2020.) (Revised by AV, 9-Oct-2020.)
((𝑉𝑊𝐸𝑋) → (⟨𝑉, 𝐸⟩ ∈ UHGraph ↔ 𝐸:dom 𝐸⟶{𝑠 ∈ 𝒫 𝑉 ∣ ∃𝑗 𝑗𝑠}))
 
Theoremuhgr0e 16421 The empty graph, with vertices but no edges, is a hypergraph. (Contributed by Mario Carneiro, 12-Mar-2015.) (Revised by AV, 25-Nov-2020.)
(𝜑𝐺𝑊)    &   (𝜑 → (iEdg‘𝐺) = ∅)       (𝜑𝐺 ∈ UHGraph)
 
Theorempw0ss 16422* There are no inhabited subsets of the empty set. (Contributed by Jim Kingdon, 31-Dec-2025.)
{𝑠 ∈ 𝒫 ∅ ∣ ∃𝑗 𝑗𝑠} = ∅
 
Theoremuhgr0vb 16423 The null graph, with no vertices, is a hypergraph if and only if the edge function is empty. (Contributed by Alexander van der Vekens, 27-Dec-2017.) (Revised by AV, 9-Oct-2020.)
((𝐺𝑊 ∧ (Vtx‘𝐺) = ∅) → (𝐺 ∈ UHGraph ↔ (iEdg‘𝐺) = ∅))
 
Theoremuhgr0 16424 The null graph represented by an empty set is a hypergraph. (Contributed by AV, 9-Oct-2020.)
∅ ∈ UHGraph
 
Theoremuhgrun 16425 The union 𝑈 of two (undirected) hypergraphs 𝐺 and 𝐻 with the same vertex set 𝑉 is a hypergraph with the vertex set 𝑉 and the union (𝐸𝐹) of the (indexed) edges. (Contributed by AV, 11-Oct-2020.) (Revised by AV, 24-Oct-2021.)
(𝜑𝐺 ∈ UHGraph)    &   (𝜑𝐻 ∈ UHGraph)    &   𝐸 = (iEdg‘𝐺)    &   𝐹 = (iEdg‘𝐻)    &   𝑉 = (Vtx‘𝐺)    &   (𝜑 → (Vtx‘𝐻) = 𝑉)    &   (𝜑 → (dom 𝐸 ∩ dom 𝐹) = ∅)    &   (𝜑𝑈𝑊)    &   (𝜑 → (Vtx‘𝑈) = 𝑉)    &   (𝜑 → (iEdg‘𝑈) = (𝐸𝐹))       (𝜑𝑈 ∈ UHGraph)
 
Theoremuhgrunop 16426 The union of two (undirected) hypergraphs (with the same vertex set) represented as ordered pair: If 𝑉, 𝐸 and 𝑉, 𝐹 are hypergraphs, then 𝑉, 𝐸𝐹 is a hypergraph (the vertex set stays the same, but the edges from both graphs are kept, possibly resulting in two edges between two vertices). (Contributed by Alexander van der Vekens, 27-Dec-2017.) (Revised by AV, 11-Oct-2020.) (Revised by AV, 24-Oct-2021.)
(𝜑𝐺 ∈ UHGraph)    &   (𝜑𝐻 ∈ UHGraph)    &   𝐸 = (iEdg‘𝐺)    &   𝐹 = (iEdg‘𝐻)    &   𝑉 = (Vtx‘𝐺)    &   (𝜑 → (Vtx‘𝐻) = 𝑉)    &   (𝜑 → (dom 𝐸 ∩ dom 𝐹) = ∅)       (𝜑 → ⟨𝑉, (𝐸𝐹)⟩ ∈ UHGraph)
 
Theoremushgrun 16427 The union 𝑈 of two (undirected) simple hypergraphs 𝐺 and 𝐻 with the same vertex set 𝑉 is a (not necessarily simple) hypergraph with the vertex set 𝑉 and the union (𝐸𝐹) of the (indexed) edges. (Contributed by AV, 29-Nov-2020.) (Revised by AV, 24-Oct-2021.)
(𝜑𝐺 ∈ USHGraph)    &   (𝜑𝐻 ∈ USHGraph)    &   𝐸 = (iEdg‘𝐺)    &   𝐹 = (iEdg‘𝐻)    &   𝑉 = (Vtx‘𝐺)    &   (𝜑 → (Vtx‘𝐻) = 𝑉)    &   (𝜑 → (dom 𝐸 ∩ dom 𝐹) = ∅)    &   (𝜑𝑈𝑊)    &   (𝜑 → (Vtx‘𝑈) = 𝑉)    &   (𝜑 → (iEdg‘𝑈) = (𝐸𝐹))       (𝜑𝑈 ∈ UHGraph)
 
Theoremushgrunop 16428 The union of two (undirected) simple hypergraphs (with the same vertex set) represented as ordered pair: If 𝑉, 𝐸 and 𝑉, 𝐹 are simple hypergraphs, then 𝑉, 𝐸𝐹 is a (not necessarily simple) hypergraph - the vertex set stays the same, but the edges from both graphs are kept, possibly resulting in two edges between two vertices. (Contributed by AV, 29-Nov-2020.) (Revised by AV, 24-Oct-2021.)
(𝜑𝐺 ∈ USHGraph)    &   (𝜑𝐻 ∈ USHGraph)    &   𝐸 = (iEdg‘𝐺)    &   𝐹 = (iEdg‘𝐻)    &   𝑉 = (Vtx‘𝐺)    &   (𝜑 → (Vtx‘𝐻) = 𝑉)    &   (𝜑 → (dom 𝐸 ∩ dom 𝐹) = ∅)       (𝜑 → ⟨𝑉, (𝐸𝐹)⟩ ∈ UHGraph)
 
Theoremincistruhgr 16429* An incidence structure 𝑃, 𝐿, 𝐼 "where 𝑃 is a set whose elements are called points, 𝐿 is a distinct set whose elements are called lines and 𝐼 ⊆ (𝑃 × 𝐿) is the incidence relation" (see Wikipedia "Incidence structure" (24-Oct-2020), https://en.wikipedia.org/wiki/Incidence_structure) implies an undirected hypergraph, if the incidence relation is right-total (to exclude empty edges). The points become the vertices, and the edge function is derived from the incidence relation by mapping each line ("edge") to the set of vertices incident to the line/edge. With 𝑃 = (Base‘𝑆) and by defining two new slots for lines and incidence relations and enhancing the definition of iEdg accordingly, it would even be possible to express that a corresponding incidence structure is an undirected hypergraph. By choosing the incident relation appropriately, other kinds of undirected graphs (pseudographs, multigraphs, simple graphs, etc.) could be defined. (Contributed by AV, 24-Oct-2020.)
𝑉 = (Vtx‘𝐺)    &   𝐸 = (iEdg‘𝐺)       ((𝐺𝑊𝐼 ⊆ (𝑃 × 𝐿) ∧ ran 𝐼 = 𝐿) → ((𝑉 = 𝑃𝐸 = (𝑒𝐿 ↦ {𝑣𝑃𝑣𝐼𝑒})) → 𝐺 ∈ UHGraph))
 
12.2.2  Undirected pseudographs and multigraphs
 
Syntaxcupgr 16430 Extend class notation with undirected pseudographs.
class UPGraph
 
Syntaxcumgr 16431 Extend class notation with undirected multigraphs.
class UMGraph
 
Definitiondf-upgren 16432* Define the class of all undirected pseudographs. An (undirected) pseudograph consists of a set 𝑣 (of "vertices") and a function 𝑒 (representing indexed "edges") into subsets of 𝑣 of cardinality one or two, representing the two vertices incident to the edge, or the one vertex if the edge is a loop. This is according to Chartrand, Gary and Zhang, Ping (2012): "A First Course in Graph Theory.", Dover, ISBN 978-0-486-48368-9, section 1.4, p. 26: "In a pseudograph, not only are parallel edges permitted but an edge is also permitted to join a vertex to itself. Such an edge is called a loop." (in contrast to a multigraph, see df-umgren 16433). (Contributed by Mario Carneiro, 11-Mar-2015.) (Revised by AV, 24-Nov-2020.) (Revised by Jim Kingdon, 3-Jan-2026.)
UPGraph = {𝑔[(Vtx‘𝑔) / 𝑣][(iEdg‘𝑔) / 𝑒]𝑒:dom 𝑒⟶{𝑥 ∈ 𝒫 𝑣 ∣ (𝑥 ≈ 1o𝑥 ≈ 2o)}}
 
Definitiondf-umgren 16433* Define the class of all undirected multigraphs. An (undirected) multigraph consists of a set 𝑣 (of "vertices") and a function 𝑒 (representing indexed "edges") into subsets of 𝑣 of cardinality two, representing the two vertices incident to the edge. In contrast to a pseudograph, a multigraph has no loop. This is according to Chartrand, Gary and Zhang, Ping (2012): "A First Course in Graph Theory.", Dover, ISBN 978-0-486-48368-9, section 1.4, p. 26: "A multigraph M consists of a finite nonempty set V of vertices and a set E of edges, where every two vertices of M are joined by a finite number of edges (possibly zero). If two or more edges join the same pair of (distinct) vertices, then these edges are called parallel edges." (Contributed by AV, 24-Nov-2020.) (Revised by Jim Kingdon, 3-Jan-2026.)
UMGraph = {𝑔[(Vtx‘𝑔) / 𝑣][(iEdg‘𝑔) / 𝑒]𝑒:dom 𝑒⟶{𝑥 ∈ 𝒫 𝑣𝑥 ≈ 2o}}
 
Theoremisupgren 16434* The property of being an undirected pseudograph. (Contributed by Mario Carneiro, 11-Mar-2015.) (Revised by AV, 10-Oct-2020.)
𝑉 = (Vtx‘𝐺)    &   𝐸 = (iEdg‘𝐺)       (𝐺𝑈 → (𝐺 ∈ UPGraph ↔ 𝐸:dom 𝐸⟶{𝑥 ∈ 𝒫 𝑉 ∣ (𝑥 ≈ 1o𝑥 ≈ 2o)}))
 
Theoremwrdupgren 16435* The property of being an undirected pseudograph, expressing the edges as "words". (Contributed by Mario Carneiro, 11-Mar-2015.) (Revised by AV, 10-Oct-2020.)
𝑉 = (Vtx‘𝐺)    &   𝐸 = (iEdg‘𝐺)       ((𝐺𝑈𝐸 ∈ Word 𝑋) → (𝐺 ∈ UPGraph ↔ 𝐸 ∈ Word {𝑥 ∈ 𝒫 𝑉 ∣ (𝑥 ≈ 1o𝑥 ≈ 2o)}))
 
Theoremupgrfen 16436* The edge function of an undirected pseudograph is a function into unordered pairs of vertices. Version of upgrfnen 16437 without explicitly specified domain of the edge function. (Contributed by Mario Carneiro, 12-Mar-2015.) (Revised by AV, 10-Oct-2020.)
𝑉 = (Vtx‘𝐺)    &   𝐸 = (iEdg‘𝐺)       (𝐺 ∈ UPGraph → 𝐸:dom 𝐸⟶{𝑥 ∈ 𝒫 𝑉 ∣ (𝑥 ≈ 1o𝑥 ≈ 2o)})
 
Theoremupgrfnen 16437* The edge function of an undirected pseudograph is a function into unordered pairs of vertices. (Contributed by Mario Carneiro, 11-Mar-2015.) (Revised by AV, 10-Oct-2020.)
𝑉 = (Vtx‘𝐺)    &   𝐸 = (iEdg‘𝐺)       ((𝐺 ∈ UPGraph ∧ 𝐸 Fn 𝐴) → 𝐸:𝐴⟶{𝑥 ∈ 𝒫 𝑉 ∣ (𝑥 ≈ 1o𝑥 ≈ 2o)})
 
Theoremupgrss 16438 An edge is a subset of vertices. (Contributed by Mario Carneiro, 11-Mar-2015.) (Revised by AV, 29-Nov-2020.)
𝑉 = (Vtx‘𝐺)    &   𝐸 = (iEdg‘𝐺)       ((𝐺 ∈ UPGraph ∧ 𝐹 ∈ dom 𝐸) → (𝐸𝐹) ⊆ 𝑉)
 
Theoremupgrm 16439* An edge is an inhabited subset of vertices. (Contributed by Mario Carneiro, 11-Mar-2015.) (Revised by AV, 10-Oct-2020.)
𝑉 = (Vtx‘𝐺)    &   𝐸 = (iEdg‘𝐺)       ((𝐺 ∈ UPGraph ∧ 𝐸 Fn 𝐴𝐹𝐴) → ∃𝑗 𝑗 ∈ (𝐸𝐹))
 
Theoremupgr1or2 16440 An edge of an undirected pseudograph has one or two ends. (Contributed by Mario Carneiro, 11-Mar-2015.) (Revised by AV, 10-Oct-2020.)
𝑉 = (Vtx‘𝐺)    &   𝐸 = (iEdg‘𝐺)       ((𝐺 ∈ UPGraph ∧ 𝐸 Fn 𝐴𝐹𝐴) → ((𝐸𝐹) ≈ 1o ∨ (𝐸𝐹) ≈ 2o))
 
Theoremupgrfi 16441 An edge is a finite subset of vertices. (Contributed by Mario Carneiro, 11-Mar-2015.) (Revised by AV, 10-Oct-2020.)
𝑉 = (Vtx‘𝐺)    &   𝐸 = (iEdg‘𝐺)       ((𝐺 ∈ UPGraph ∧ 𝐸 Fn 𝐴𝐹𝐴) → (𝐸𝐹) ∈ Fin)
 
Theoremupgrex 16442* An edge is an unordered pair of vertices. (Contributed by Mario Carneiro, 11-Mar-2015.) (Revised by AV, 10-Oct-2020.)
𝑉 = (Vtx‘𝐺)    &   𝐸 = (iEdg‘𝐺)       ((𝐺 ∈ UPGraph ∧ 𝐸 Fn 𝐴𝐹𝐴) → ∃𝑥𝑉𝑦𝑉 (𝐸𝐹) = {𝑥, 𝑦})
 
Theoremupgrop 16443 A pseudograph represented by an ordered pair. (Contributed by AV, 12-Dec-2021.)
(𝐺 ∈ UPGraph → ⟨(Vtx‘𝐺), (iEdg‘𝐺)⟩ ∈ UPGraph)
 
Theoremisumgren 16444* The property of being an undirected multigraph. (Contributed by AV, 24-Nov-2020.)
𝑉 = (Vtx‘𝐺)    &   𝐸 = (iEdg‘𝐺)       (𝐺𝑈 → (𝐺 ∈ UMGraph ↔ 𝐸:dom 𝐸⟶{𝑥 ∈ 𝒫 𝑉𝑥 ≈ 2o}))
 
Theoremwrdumgren 16445* The property of being an undirected multigraph, expressing the edges as "words". (Contributed by AV, 24-Nov-2020.)
𝑉 = (Vtx‘𝐺)    &   𝐸 = (iEdg‘𝐺)       ((𝐺𝑈𝐸 ∈ Word 𝑋) → (𝐺 ∈ UMGraph ↔ 𝐸 ∈ Word {𝑥 ∈ 𝒫 𝑉𝑥 ≈ 2o}))
 
Theoremumgrfen 16446* The edge function of an undirected multigraph is a function into unordered pairs of vertices. Version of umgrfnen 16447 without explicitly specified domain of the edge function. (Contributed by AV, 24-Nov-2020.)
𝑉 = (Vtx‘𝐺)    &   𝐸 = (iEdg‘𝐺)       (𝐺 ∈ UMGraph → 𝐸:dom 𝐸⟶{𝑥 ∈ 𝒫 𝑉𝑥 ≈ 2o})
 
Theoremumgrfnen 16447* The edge function of an undirected multigraph is a function into unordered pairs of vertices. (Contributed by AV, 24-Nov-2020.)
𝑉 = (Vtx‘𝐺)    &   𝐸 = (iEdg‘𝐺)       ((𝐺 ∈ UMGraph ∧ 𝐸 Fn 𝐴) → 𝐸:𝐴⟶{𝑥 ∈ 𝒫 𝑉𝑥 ≈ 2o})
 
Theoremumgredg2en 16448 An edge of a multigraph has exactly two ends. (Contributed by AV, 24-Nov-2020.)
𝑉 = (Vtx‘𝐺)    &   𝐸 = (iEdg‘𝐺)       ((𝐺 ∈ UMGraph ∧ 𝑋 ∈ dom 𝐸) → (𝐸𝑋) ≈ 2o)
 
Theoremumgrbien 16449* Show that an unordered pair is a valid edge in a multigraph. (Contributed by AV, 9-Mar-2021.)
𝑋𝑉    &   𝑌𝑉    &   𝑋𝑌       {𝑋, 𝑌} ∈ {𝑥 ∈ 𝒫 𝑉𝑥 ≈ 2o}
 
Theoremupgruhgr 16450 An undirected pseudograph is an undirected hypergraph. (Contributed by Alexander van der Vekens, 27-Dec-2017.) (Revised by AV, 10-Oct-2020.)
(𝐺 ∈ UPGraph → 𝐺 ∈ UHGraph)
 
Theoremumgrupgr 16451 An undirected multigraph is an undirected pseudograph. (Contributed by AV, 25-Nov-2020.)
(𝐺 ∈ UMGraph → 𝐺 ∈ UPGraph)
 
Theoremumgruhgr 16452 An undirected multigraph is an undirected hypergraph. (Contributed by AV, 26-Nov-2020.)
(𝐺 ∈ UMGraph → 𝐺 ∈ UHGraph)
 
Theoremumgrnloopv 16453 In a multigraph, there is no loop, i.e. no edge connecting a vertex with itself. (Contributed by Alexander van der Vekens, 26-Jan-2018.) (Revised by AV, 11-Dec-2020.)
𝐸 = (iEdg‘𝐺)       ((𝐺 ∈ UMGraph ∧ 𝑀𝑊) → ((𝐸𝑋) = {𝑀, 𝑁} → 𝑀𝑁))
 
Theoremumgredgprv 16454 In a multigraph, an edge is an unordered pair of vertices. This theorem would not hold for arbitrary hyper-/pseudographs since either 𝑀 or 𝑁 could be proper classes ((𝐸𝑋) would be a loop in this case), which are no vertices of course. (Contributed by Alexander van der Vekens, 19-Aug-2017.) (Revised by AV, 11-Dec-2020.)
𝐸 = (iEdg‘𝐺)    &   𝑉 = (Vtx‘𝐺)       ((𝐺 ∈ UMGraph ∧ 𝑋 ∈ dom 𝐸) → ((𝐸𝑋) = {𝑀, 𝑁} → (𝑀𝑉𝑁𝑉)))
 
Theoremumgrnloop 16455* In a multigraph, there is no loop, i.e. no edge connecting a vertex with itself. (Contributed by Alexander van der Vekens, 19-Aug-2017.) (Revised by AV, 11-Dec-2020.)
𝐸 = (iEdg‘𝐺)       (𝐺 ∈ UMGraph → (∃𝑥 ∈ dom 𝐸(𝐸𝑥) = {𝑀, 𝑁} → 𝑀𝑁))
 
Theoremumgrnloop0 16456* A multigraph has no loops. (Contributed by Alexander van der Vekens, 6-Dec-2017.) (Revised by AV, 11-Dec-2020.)
𝐸 = (iEdg‘𝐺)       (𝐺 ∈ UMGraph → {𝑥 ∈ dom 𝐸 ∣ (𝐸𝑥) = {𝑈}} = ∅)
 
Theoremumgr0e 16457 The empty graph, with vertices but no edges, is a multigraph. (Contributed by Mario Carneiro, 12-Mar-2015.) (Revised by AV, 25-Nov-2020.)
(𝜑𝐺𝑊)    &   (𝜑 → (iEdg‘𝐺) = ∅)       (𝜑𝐺 ∈ UMGraph)
 
Theoremupgr0e 16458 The empty graph, with vertices but no edges, is a pseudograph. (Contributed by Mario Carneiro, 12-Mar-2015.) (Revised by AV, 11-Oct-2020.) (Proof shortened by AV, 25-Nov-2020.)
(𝜑𝐺𝑊)    &   (𝜑 → (iEdg‘𝐺) = ∅)       (𝜑𝐺 ∈ UPGraph)
 
Theoremupgr1elem1 16459* Lemma for upgr1edc 16460. (Contributed by AV, 16-Oct-2020.) (Revised by Jim Kingdon, 6-Jan-2026.)
(𝜑 → {𝐵, 𝐶} ∈ 𝑆)    &   (𝜑𝐵𝑊)    &   (𝜑𝐶𝑋)    &   (𝜑DECID 𝐵 = 𝐶)       (𝜑 → {{𝐵, 𝐶}} ⊆ {𝑥𝑆 ∣ (𝑥 ≈ 1o𝑥 ≈ 2o)})
 
Theoremupgr1edc 16460 A pseudograph with one edge. Such a graph is actually a simple pseudograph. (Contributed by Mario Carneiro, 12-Mar-2015.) (Revised by AV, 16-Oct-2020.) (Revised by AV, 21-Mar-2021.) (Proof shortened by AV, 17-Apr-2021.)
𝑉 = (Vtx‘𝐺)    &   (𝜑𝐴𝑋)    &   (𝜑𝐵𝑉)    &   (𝜑𝐶𝑉)    &   (𝜑DECID 𝐵 = 𝐶)    &   (𝜑 → (iEdg‘𝐺) = {⟨𝐴, {𝐵, 𝐶}⟩})       (𝜑𝐺 ∈ UPGraph)
 
Theoremupgr0eop 16461 The empty graph, with vertices but no edges, is a pseudograph. The empty graph is actually a simple graph, and therefore also a multigraph (𝐺 ∈ UMGraph). (Contributed by Mario Carneiro, 12-Mar-2015.) (Revised by AV, 11-Oct-2020.)
(𝑉𝑊 → ⟨𝑉, ∅⟩ ∈ UPGraph)
 
Theoremupgr1eopdc 16462 A pseudograph with one edge. Such a graph is actually a simple pseudograph. (Contributed by Mario Carneiro, 12-Mar-2015.) (Revised by AV, 10-Oct-2020.)
(𝜑𝑉𝑊)    &   (𝜑𝐴𝑋)    &   (𝜑𝐵𝑉)    &   (𝜑𝐶𝑉)    &   (𝜑DECID 𝐵 = 𝐶)       (𝜑 → ⟨𝑉, {⟨𝐴, {𝐵, 𝐶}⟩}⟩ ∈ UPGraph)
 
Theoremupgr1een 16463 A graph with one non-loop edge is a pseudograph. Variation of upgr1edc 16460 for a different way of specifying a graph with one edge. (Contributed by Jim Kingdon, 18-Mar-2026.)
(𝜑𝐾𝑋)    &   (𝜑𝑉𝑌)    &   (𝜑𝐸 ∈ 𝒫 𝑉)    &   (𝜑𝐸 ≈ 2o)       (𝜑 → ⟨𝑉, {⟨𝐾, 𝐸⟩}⟩ ∈ UPGraph)
 
Theoremumgr1een 16464 A graph with one non-loop edge is a multigraph. (Contributed by Jim Kingdon, 18-Mar-2026.)
(𝜑𝐾𝑋)    &   (𝜑𝑉𝑌)    &   (𝜑𝐸 ∈ 𝒫 𝑉)    &   (𝜑𝐸 ≈ 2o)       (𝜑 → ⟨𝑉, {⟨𝐾, 𝐸⟩}⟩ ∈ UMGraph)
 
Theoremupgrun 16465 The union 𝑈 of two pseudographs 𝐺 and 𝐻 with the same vertex set 𝑉 is a pseudograph with the vertex 𝑉 and the union (𝐸𝐹) of the (indexed) edges. (Contributed by AV, 12-Oct-2020.) (Revised by AV, 24-Oct-2021.)
(𝜑𝐺 ∈ UPGraph)    &   (𝜑𝐻 ∈ UPGraph)    &   𝐸 = (iEdg‘𝐺)    &   𝐹 = (iEdg‘𝐻)    &   𝑉 = (Vtx‘𝐺)    &   (𝜑 → (Vtx‘𝐻) = 𝑉)    &   (𝜑 → (dom 𝐸 ∩ dom 𝐹) = ∅)    &   (𝜑𝑈𝑊)    &   (𝜑 → (Vtx‘𝑈) = 𝑉)    &   (𝜑 → (iEdg‘𝑈) = (𝐸𝐹))       (𝜑𝑈 ∈ UPGraph)
 
Theoremupgrunop 16466 The union of two pseudographs (with the same vertex set): If 𝑉, 𝐸 and 𝑉, 𝐹 are pseudographs, then 𝑉, 𝐸𝐹 is a pseudograph (the vertex set stays the same, but the edges from both graphs are kept). (Contributed by Mario Carneiro, 12-Mar-2015.) (Revised by AV, 12-Oct-2020.) (Revised by AV, 24-Oct-2021.)
(𝜑𝐺 ∈ UPGraph)    &   (𝜑𝐻 ∈ UPGraph)    &   𝐸 = (iEdg‘𝐺)    &   𝐹 = (iEdg‘𝐻)    &   𝑉 = (Vtx‘𝐺)    &   (𝜑 → (Vtx‘𝐻) = 𝑉)    &   (𝜑 → (dom 𝐸 ∩ dom 𝐹) = ∅)       (𝜑 → ⟨𝑉, (𝐸𝐹)⟩ ∈ UPGraph)
 
Theoremumgrun 16467 The union 𝑈 of two multigraphs 𝐺 and 𝐻 with the same vertex set 𝑉 is a multigraph with the vertex 𝑉 and the union (𝐸𝐹) of the (indexed) edges. (Contributed by AV, 25-Nov-2020.)
(𝜑𝐺 ∈ UMGraph)    &   (𝜑𝐻 ∈ UMGraph)    &   𝐸 = (iEdg‘𝐺)    &   𝐹 = (iEdg‘𝐻)    &   𝑉 = (Vtx‘𝐺)    &   (𝜑 → (Vtx‘𝐻) = 𝑉)    &   (𝜑 → (dom 𝐸 ∩ dom 𝐹) = ∅)    &   (𝜑𝑈𝑊)    &   (𝜑 → (Vtx‘𝑈) = 𝑉)    &   (𝜑 → (iEdg‘𝑈) = (𝐸𝐹))       (𝜑𝑈 ∈ UMGraph)
 
Theoremumgrunop 16468 The union of two multigraphs (with the same vertex set): If 𝑉, 𝐸 and 𝑉, 𝐹 are multigraphs, then 𝑉, 𝐸𝐹 is a multigraph (the vertex set stays the same, but the edges from both graphs are kept). (Contributed by Mario Carneiro, 12-Mar-2015.) (Revised by AV, 25-Nov-2020.)
(𝜑𝐺 ∈ UMGraph)    &   (𝜑𝐻 ∈ UMGraph)    &   𝐸 = (iEdg‘𝐺)    &   𝐹 = (iEdg‘𝐻)    &   𝑉 = (Vtx‘𝐺)    &   (𝜑 → (Vtx‘𝐻) = 𝑉)    &   (𝜑 → (dom 𝐸 ∩ dom 𝐹) = ∅)       (𝜑 → ⟨𝑉, (𝐸𝐹)⟩ ∈ UMGraph)
 
12.2.3  Loop-free graphs

For a hypergraph, the property to be "loop-free" is expressed by 𝐼:dom 𝐼𝐸 with 𝐸 = {𝑥 ∈ 𝒫 𝑉 ∣ 2o𝑥} and 𝐼 = (iEdg‘𝐺). 𝐸 is the set of edges which connect at least two vertices.

 
Theoremumgrislfupgrenlem 16469 Lemma for umgrislfupgrdom 16470. (Contributed by AV, 27-Jan-2021.)
({𝑥 ∈ 𝒫 𝑉 ∣ (𝑥 ≈ 1o𝑥 ≈ 2o)} ∩ {𝑥 ∈ 𝒫 𝑉 ∣ 2o𝑥}) = {𝑥 ∈ 𝒫 𝑉𝑥 ≈ 2o}
 
Theoremumgrislfupgrdom 16470* A multigraph is a loop-free pseudograph. (Contributed by AV, 27-Jan-2021.)
𝑉 = (Vtx‘𝐺)    &   𝐼 = (iEdg‘𝐺)       (𝐺 ∈ UMGraph ↔ (𝐺 ∈ UPGraph ∧ 𝐼:dom 𝐼⟶{𝑥 ∈ 𝒫 𝑉 ∣ 2o𝑥}))
 
Theoremlfgredg2dom 16471* An edge of a loop-free graph has at least two ends. (Contributed by AV, 23-Feb-2021.)
𝐼 = (iEdg‘𝐺)    &   𝐴 = dom 𝐼    &   𝐸 = {𝑥 ∈ 𝒫 𝑉 ∣ 2o𝑥}       ((𝐼:𝐴𝐸𝑋𝐴) → 2o ≼ (𝐼𝑋))
 
Theoremlfgrnloopen 16472* A loop-free graph has no loops. (Contributed by AV, 23-Feb-2021.)
𝐼 = (iEdg‘𝐺)    &   𝐴 = dom 𝐼    &   𝐸 = {𝑥 ∈ 𝒫 𝑉 ∣ 2o𝑥}       (𝐼:𝐴𝐸 → {𝑥𝐴 ∣ (𝐼𝑥) ≈ 1o} = ∅)
 
12.2.4  Edges as subsets of vertices of graphs
 
Theoremuhgredgiedgb 16473* In a hypergraph, a set is an edge iff it is an indexed edge. (Contributed by AV, 17-Oct-2020.)
𝐼 = (iEdg‘𝐺)       (𝐺 ∈ UHGraph → (𝐸 ∈ (Edg‘𝐺) ↔ ∃𝑥 ∈ dom 𝐼 𝐸 = (𝐼𝑥)))
 
Theoremuhgriedg0edg0 16474 A hypergraph has no edges iff its edge function is empty. (Contributed by AV, 21-Oct-2020.) (Proof shortened by AV, 8-Dec-2021.)
(𝐺 ∈ UHGraph → ((Edg‘𝐺) = ∅ ↔ (iEdg‘𝐺) = ∅))
 
Theoremuhgredgm 16475* An edge of a hypergraph is an inhabited subset of vertices. (Contributed by AV, 28-Nov-2020.)
((𝐺 ∈ UHGraph ∧ 𝐸 ∈ (Edg‘𝐺)) → (𝐸 ∈ 𝒫 (Vtx‘𝐺) ∧ ∃𝑥 𝑥𝐸))
 
Theoremedguhgr 16476 An edge of a hypergraph is a subset of vertices. (Contributed by AV, 26-Oct-2020.) (Proof shortened by AV, 28-Nov-2020.)
((𝐺 ∈ UHGraph ∧ 𝐸 ∈ (Edg‘𝐺)) → 𝐸 ∈ 𝒫 (Vtx‘𝐺))
 
Theoremuhgredgrnv 16477 An edge of a hypergraph contains only vertices. (Contributed by Alexander van der Vekens, 18-Feb-2018.) (Revised by AV, 4-Jun-2021.)
((𝐺 ∈ UHGraph ∧ 𝐸 ∈ (Edg‘𝐺) ∧ 𝑁𝐸) → 𝑁 ∈ (Vtx‘𝐺))
 
Theoremupgredgssen 16478* The set of edges of a pseudograph is a subset of the set of unordered pairs of vertices. (Contributed by AV, 29-Nov-2020.)
(𝐺 ∈ UPGraph → (Edg‘𝐺) ⊆ {𝑥 ∈ 𝒫 (Vtx‘𝐺) ∣ (𝑥 ≈ 1o𝑥 ≈ 2o)})
 
Theoremumgredgssen 16479* The set of edges of a multigraph is a subset of the set of proper unordered pairs of vertices. (Contributed by AV, 25-Nov-2020.)
(𝐺 ∈ UMGraph → (Edg‘𝐺) ⊆ {𝑥 ∈ 𝒫 (Vtx‘𝐺) ∣ 𝑥 ≈ 2o})
 
Theoremedgupgren 16480 Properties of an edge of a pseudograph. (Contributed by AV, 8-Nov-2020.)
((𝐺 ∈ UPGraph ∧ 𝐸 ∈ (Edg‘𝐺)) → (𝐸 ∈ 𝒫 (Vtx‘𝐺) ∧ (𝐸 ≈ 1o𝐸 ≈ 2o)))
 
Theoremedgumgren 16481 Properties of an edge of a multigraph. (Contributed by AV, 25-Nov-2020.)
((𝐺 ∈ UMGraph ∧ 𝐸 ∈ (Edg‘𝐺)) → (𝐸 ∈ 𝒫 (Vtx‘𝐺) ∧ 𝐸 ≈ 2o))
 
Theoremuhgrvtxedgiedgb 16482* In a hypergraph, a vertex is incident with an edge iff it is contained in an element of the range of the edge function. (Contributed by AV, 24-Dec-2020.) (Revised by AV, 6-Jul-2022.)
𝐼 = (iEdg‘𝐺)    &   𝐸 = (Edg‘𝐺)       ((𝐺 ∈ UHGraph ∧ 𝑈𝑉) → (∃𝑖 ∈ dom 𝐼 𝑈 ∈ (𝐼𝑖) ↔ ∃𝑒𝐸 𝑈𝑒))
 
Theoremupgredg 16483* For each edge in a pseudograph, there are two vertices which are connected by this edge. (Contributed by AV, 4-Nov-2020.) (Proof shortened by AV, 26-Nov-2021.)
𝑉 = (Vtx‘𝐺)    &   𝐸 = (Edg‘𝐺)       ((𝐺 ∈ UPGraph ∧ 𝐶𝐸) → ∃𝑎𝑉𝑏𝑉 𝐶 = {𝑎, 𝑏})
 
Theoremumgredg 16484* For each edge in a multigraph, there are two distinct vertices which are connected by this edge. (Contributed by Alexander van der Vekens, 9-Dec-2017.) (Revised by AV, 25-Nov-2020.)
𝑉 = (Vtx‘𝐺)    &   𝐸 = (Edg‘𝐺)       ((𝐺 ∈ UMGraph ∧ 𝐶𝐸) → ∃𝑎𝑉𝑏𝑉 (𝑎𝑏𝐶 = {𝑎, 𝑏}))
 
Theoremupgrpredgv 16485 An edge of a pseudograph always connects two vertices if the edge contains two sets. The two vertices/sets need not necessarily be different (loops are allowed). (Contributed by AV, 18-Nov-2021.)
𝑉 = (Vtx‘𝐺)    &   𝐸 = (Edg‘𝐺)       ((𝐺 ∈ UPGraph ∧ (𝑀𝑈𝑁𝑊) ∧ {𝑀, 𝑁} ∈ 𝐸) → (𝑀𝑉𝑁𝑉))
 
Theoremumgrpredgv 16486 An edge of a multigraph always connects two vertices. This theorem does not hold for arbitrary pseudographs: if either 𝑀 or 𝑁 is a proper class, then {𝑀, 𝑁} ∈ 𝐸 could still hold ({𝑀, 𝑁} would be either {𝑀} or {𝑁}, see prprc1 3821 or prprc2 3822, i.e. a loop), but 𝑀𝑉 or 𝑁𝑉 would not be true. (Contributed by AV, 27-Nov-2020.)
𝑉 = (Vtx‘𝐺)    &   𝐸 = (Edg‘𝐺)       ((𝐺 ∈ UMGraph ∧ {𝑀, 𝑁} ∈ 𝐸) → (𝑀𝑉𝑁𝑉))
 
Theoremupgredg2vtx 16487* For a vertex incident to an edge there is another vertex incident to the edge in a pseudograph. (Contributed by AV, 18-Oct-2020.) (Revised by AV, 5-Dec-2020.)
𝑉 = (Vtx‘𝐺)    &   𝐸 = (Edg‘𝐺)       ((𝐺 ∈ UPGraph ∧ 𝐶𝐸𝐴𝐶) → ∃𝑏𝑉 𝐶 = {𝐴, 𝑏})
 
Theoremupgredgpr 16488 If a proper pair (of vertices) is a subset of an edge in a pseudograph, the pair is the edge. (Contributed by AV, 30-Dec-2020.)
𝑉 = (Vtx‘𝐺)    &   𝐸 = (Edg‘𝐺)       (((𝐺 ∈ UPGraph ∧ 𝐶𝐸 ∧ {𝐴, 𝐵} ⊆ 𝐶) ∧ (𝐴𝑈𝐵𝑊𝐴𝐵)) → {𝐴, 𝐵} = 𝐶)
 
Theoremumgredgne 16489 An edge of a multigraph always connects two different vertices. Analogue of umgrnloopv 16453. (Contributed by AV, 27-Nov-2020.)
𝐸 = (Edg‘𝐺)       ((𝐺 ∈ UMGraph ∧ {𝑀, 𝑁} ∈ 𝐸) → 𝑀𝑁)
 
Theoremumgrnloop2 16490 A multigraph has no loops. (Contributed by AV, 27-Oct-2020.) (Revised by AV, 30-Nov-2020.)
(𝐺 ∈ UMGraph → {𝑁, 𝑁} ∉ (Edg‘𝐺))
 
Theoremumgredgnlp 16491* An edge of a multigraph is not a loop. (Contributed by AV, 9-Jan-2020.) (Revised by AV, 8-Jun-2021.)
𝐸 = (Edg‘𝐺)       ((𝐺 ∈ UMGraph ∧ 𝐶𝐸) → ¬ ∃𝑣 𝐶 = {𝑣})
 
12.2.5  Undirected simple graphs

In this section, "simple graph" will always stand for "undirected simple graph (without loops)" and "simple pseudograph" for "undirected simple pseudograph (which could have loops)".

 
Syntaxcuspgr 16492 Extend class notation with undirected simple pseudographs (which could have loops).
class USPGraph
 
Syntaxcusgr 16493 Extend class notation with undirected simple graphs (without loops).
class USGraph
 
Definitiondf-uspgren 16494* Define the class of all undirected simple pseudographs (which could have loops). An undirected simple pseudograph is a special undirected pseudograph or a special undirected simple hypergraph, consisting of a set 𝑣 (of "vertices") and an injective (one-to-one) function 𝑒 (representing (indexed) "edges") into subsets of 𝑣 of cardinality one or two, representing the two vertices incident to the edge, or the one vertex if the edge is a loop. In contrast to a pseudograph, there is at most one edge between two vertices resp. at most one loop for a vertex. (Contributed by Alexander van der Vekens, 10-Aug-2017.) (Revised by Jim Kingdon, 15-Jan-2026.)
USPGraph = {𝑔[(Vtx‘𝑔) / 𝑣][(iEdg‘𝑔) / 𝑒]𝑒:dom 𝑒1-1→{𝑥 ∈ 𝒫 𝑣 ∣ (𝑥 ≈ 1o𝑥 ≈ 2o)}}
 
Definitiondf-usgren 16495* Define the class of all undirected simple graphs (without loops). An undirected simple graph is a special undirected simple pseudograph, consisting of a set 𝑣 (of "vertices") and an injective (one-to-one) function 𝑒 (representing (indexed) "edges") into subsets of 𝑣 of cardinality two, representing the two vertices incident to the edge. In contrast to an undirected simple pseudograph, an undirected simple graph has no loops (edges connecting a vertex with itself). (Contributed by Alexander van der Vekens, 10-Aug-2017.) (Revised by AV, 13-Oct-2020.)
USGraph = {𝑔[(Vtx‘𝑔) / 𝑣][(iEdg‘𝑔) / 𝑒]𝑒:dom 𝑒1-1→{𝑥 ∈ 𝒫 𝑣𝑥 ≈ 2o}}
 
Theoremisuspgren 16496* The property of being a simple pseudograph. (Contributed by Alexander van der Vekens, 10-Aug-2017.) (Revised by AV, 13-Oct-2020.)
𝑉 = (Vtx‘𝐺)    &   𝐸 = (iEdg‘𝐺)       (𝐺𝑈 → (𝐺 ∈ USPGraph ↔ 𝐸:dom 𝐸1-1→{𝑥 ∈ 𝒫 𝑉 ∣ (𝑥 ≈ 1o𝑥 ≈ 2o)}))
 
Theoremisusgren 16497* The property of being a simple graph. (Contributed by Alexander van der Vekens, 10-Aug-2017.) (Revised by AV, 13-Oct-2020.)
𝑉 = (Vtx‘𝐺)    &   𝐸 = (iEdg‘𝐺)       (𝐺𝑈 → (𝐺 ∈ USGraph ↔ 𝐸:dom 𝐸1-1→{𝑥 ∈ 𝒫 𝑉𝑥 ≈ 2o}))
 
Theoremuspgrfen 16498* The edge function of a simple pseudograph is a one-to-one function into unordered pairs of vertices. (Contributed by Alexander van der Vekens, 10-Aug-2017.) (Revised by AV, 13-Oct-2020.)
𝑉 = (Vtx‘𝐺)    &   𝐸 = (iEdg‘𝐺)       (𝐺 ∈ USPGraph → 𝐸:dom 𝐸1-1→{𝑥 ∈ 𝒫 𝑉 ∣ (𝑥 ≈ 1o𝑥 ≈ 2o)})
 
Theoremusgrfen 16499* The edge function of a simple graph is a one-to-one function into the set of proper unordered pairs of vertices. (Contributed by Alexander van der Vekens, 10-Aug-2017.) (Revised by AV, 13-Oct-2020.)
𝑉 = (Vtx‘𝐺)    &   𝐸 = (iEdg‘𝐺)       (𝐺 ∈ USGraph → 𝐸:dom 𝐸1-1→{𝑥 ∈ 𝒫 𝑉𝑥 ≈ 2o})
 
Theoremusgrfun 16500 The edge function of a simple graph is a function. (Contributed by Alexander van der Vekens, 18-Aug-2017.) (Revised by AV, 13-Oct-2020.)
(𝐺 ∈ USGraph → Fun (iEdg‘𝐺))
    < Previous  Next >

Page List
Jump to page: Contents  1 1-100 2 101-200 3 201-300 4 301-400 5 401-500 6 501-600 7 601-700 8 701-800 9 801-900 10 901-1000 11 1001-1100 12 1101-1200 13 1201-1300 14 1301-1400 15 1401-1500 16 1501-1600 17 1601-1700 18 1701-1800 19 1801-1900 20 1901-2000 21 2001-2100 22 2101-2200 23 2201-2300 24 2301-2400 25 2401-2500 26 2501-2600 27 2601-2700 28 2701-2800 29 2801-2900 30 2901-3000 31 3001-3100 32 3101-3200 33 3201-3300 34 3301-3400 35 3401-3500 36 3501-3600 37 3601-3700 38 3701-3800 39 3801-3900 40 3901-4000 41 4001-4100 42 4101-4200 43 4201-4300 44 4301-4400 45 4401-4500 46 4501-4600 47 4601-4700 48 4701-4800 49 4801-4900 50 4901-5000 51 5001-5100 52 5101-5200 53 5201-5300 54 5301-5400 55 5401-5500 56 5501-5600 57 5601-5700 58 5701-5800 59 5801-5900 60 5901-6000 61 6001-6100 62 6101-6200 63 6201-6300 64 6301-6400 65 6401-6500 66 6501-6600 67 6601-6700 68 6701-6800 69 6801-6900 70 6901-7000 71 7001-7100 72 7101-7200 73 7201-7300 74 7301-7400 75 7401-7500 76 7501-7600 77 7601-7700 78 7701-7800 79 7801-7900 80 7901-8000 81 8001-8100 82 8101-8200 83 8201-8300 84 8301-8400 85 8401-8500 86 8501-8600 87 8601-8700 88 8701-8800 89 8801-8900 90 8901-9000 91 9001-9100 92 9101-9200 93 9201-9300 94 9301-9400 95 9401-9500 96 9501-9600 97 9601-9700 98 9701-9800 99 9801-9900 100 9901-10000 101 10001-10100 102 10101-10200 103 10201-10300 104 10301-10400 105 10401-10500 106 10501-10600 107 10601-10700 108 10701-10800 109 10801-10900 110 10901-11000 111 11001-11100 112 11101-11200 113 11201-11300 114 11301-11400 115 11401-11500 116 11501-11600 117 11601-11700 118 11701-11800 119 11801-11900 120 11901-12000 121 12001-12100 122 12101-12200 123 12201-12300 124 12301-12400 125 12401-12500 126 12501-12600 127 12601-12700 128 12701-12800 129 12801-12900 130 12901-13000 131 13001-13100 132 13101-13200 133 13201-13300 134 13301-13400 135 13401-13500 136 13501-13600 137 13601-13700 138 13701-13800 139 13801-13900 140 13901-14000 141 14001-14100 142 14101-14200 143 14201-14300 144 14301-14400 145 14401-14500 146 14501-14600 147 14601-14700 148 14701-14800 149 14801-14900 150 14901-15000 151 15001-15100 152 15101-15200 153 15201-15300 154 15301-15400 155 15401-15500 156 15501-15600 157 15601-15700 158 15701-15800 159 15801-15900 160 15901-16000 161 16001-16100 162 16101-16200 163 16201-16300 164 16301-16400 165 16401-16500 166 16501-16600 167 16601-16700 168 16701-16800 169 16801-16900 170 16901-17000 171 17001-17100 172 17101-17200 173 17201-17277
  Copyright terms: Public domain < Previous  Next >