Abbreviation for the average independence number of the neighborhoods.
Equations
- G.l = G.averageIndepNeighbors
Instances For
The same quantity under a different name, used in some conjectures.
Equations
Instances For
temp_v G v = deg(v)/(n(G) - deg(v))
.
Equations
Instances For
Maximum of temp_v
over all vertices.
Equations
- G.MaxTemp = (Finset.image G.temp_v Finset.univ).max' ⋯
Instances For
Cardinality of the union of the neighbourhoods of the ends of the non-edge e
.
Equations
- G.non_edge_neighborhood_card e = Sym2.lift ⟨fun (u v : α) => (G.neighborFinset u ∪ G.neighborFinset v).card, ⋯⟩ e
Instances For
Minimum size of the neighbourhood of a non-edge of G
.
Equations
- G.NG = if h : Gᶜ.edgeFinset.Nonempty then let neighbor_sizes := Finset.image G.non_edge_neighborhood_card Gᶜ.edgeFinset; ↑(neighbor_sizes.min' ⋯) else ↑(Fintype.card α)
Instances For
Size of a largest induced forest of G
expressed as a real number.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Local eccentricity of a vertex.
Equations
- G.local_eccentricity v = sSup (Set.range (G.edist v))
Instances For
The minimum eccentricity among all vertices.
Equations
Instances For
The set of vertices of minimum eccentricity.
Equations
- G.graphCenter = {v : α | G.eccentricity v = G.minEccentricity}
Instances For
The maximum eccentricity among all vertices.
Equations
Instances For
The set of vertices of maximum eccentricity.
Equations
- G.maxEccentricityVertices = {v : α | G.eccentricity v = G.maxEccentricity}
Instances For
Distance from a vertex to a finite set.
Equations
Instances For
Average distance of G
.
Equations
- G.averageDistance = if Fintype.card α > 1 then (∑ u : α, ∑ v : α, ↑(G.dist u v)) / (↑(Fintype.card α) * (↑(Fintype.card α) - 1)) else 0
Instances For
The floor of the average distance of G
.
Instances For
Auxiliary quantity ecc
used in conjecture 34.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Average distance from all vertices to a given set.
Equations
- G.distavg S = if Fintype.card α > 0 then (∑ v : α, ↑(G.distToSet v S)) / ↑(Fintype.card α) else 0
Instances For
A family of paths covering all vertices without overlaps.
Equations
Instances For
Minimum size of a path cover of G
.