The maximum cardinality among all independent sets s
that maximize the quantity |s| - |N(s)|, where N(s)
is the neighborhood of the set s.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Independence number of the neighbourhood of v.
Equations
- G.indepNeighborsCard v = (SimpleGraph.induce (G.neighborSet v) G).indepNum
Instances For
The same quantity as a real number.
Equations
- G.indepNeighbors v = ↑(G.indepNeighborsCard v)
Instances For
Average of indepNeighbors over all vertices.
Equations
- G.averageIndepNeighbors = (∑ v : α, G.indepNeighbors v) / ↑(Fintype.card α)
Instances For
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
Computable independence number via powerset enumeration.
Equations
- G.computable_indep_num = {s ∈ Finset.univ.powerset | ∀ u ∈ s, ∀ v ∈ s, u ≠ v → ¬G.Adj u v}.sup Finset.card
Instances For
Equivalence between computable and noncomputable independence number.
Maximum local independence number over all vertices. For each vertex, we compute the independence number of the subgraph induced by its neighbors, and take the maximum over all vertices.
Equations
- G.maxLocalIndependence = Option.getD (Finset.image (fun (v : α) => (SimpleGraph.induce (G.neighborSet v) G).indepNum) Finset.univ).max 0
Instances For
Minimum local independence number over all vertices. For each vertex, we compute the independence number of the subgraph induced by its neighbors, and take the minimum over all vertices.
Equations
- G.minLocalIndependence = Option.getD (Finset.image (fun (v : α) => (SimpleGraph.induce (G.neighborSet v) G).indepNum) Finset.univ).min 0