Counting walks of a given length #
Main definitions #
walkLengthTwoEquivCommonNeighbors
: bijective correspondence between walks of length two fromu
tov
and common neighbours ofu
andv
. Note thatu
andv
may be the same.finsetWalkLength
: theFinset
of length-n
walks fromu
tov
. This is used to give{p : G.walk u v | p.length = n}
aFintype
instance, and it can also be useful as a recursive description of this set whenV
is finite.
TODO: should this be extended further?
Walks of a given length #
Walks of length two from u
to v
correspond bijectively to common neighbours of u
and v
.
Note that u
and v
may be the same.
Equations
- One or more equations did not get rendered due to their size.
Instances For
def
SimpleGraph.finsetWalkLength
{V : Type u}
(G : SimpleGraph V)
[DecidableEq V]
[G.LocallyFinite]
(n : ℕ)
(u v : V)
:
The Finset
of length-n
walks from u
to v
.
This is used to give {p : G.walk u v | p.length = n}
a Fintype
instance, and it
can also be useful as a recursive description of this set when V
is finite.
See SimpleGraph.coe_finsetWalkLength_eq
for the relationship between this Finset
and
the set of length-n
walks.
Equations
- One or more equations did not get rendered due to their size.
- G.finsetWalkLength 0 u v = if h : u = v then ⋯ ▸ {SimpleGraph.Walk.nil} else ∅
Instances For
theorem
SimpleGraph.coe_finsetWalkLength_eq
{V : Type u}
(G : SimpleGraph V)
[DecidableEq V]
[G.LocallyFinite]
(n : ℕ)
(u v : V)
:
theorem
SimpleGraph.mem_finsetWalkLength_iff
{V : Type u}
{G : SimpleGraph V}
[DecidableEq V]
[G.LocallyFinite]
{n : ℕ}
{u v : V}
{p : G.Walk u v}
:
def
SimpleGraph.finsetWalkLengthLT
{V : Type u}
(G : SimpleGraph V)
[DecidableEq V]
[G.LocallyFinite]
(n : ℕ)
(u v : V)
:
The Finset
of walks from u
to v
with length less than n
. See finsetWalkLength
for
context. In particular, we use this definition for SimpleGraph.Path.instFintype
. -
Equations
Instances For
theorem
SimpleGraph.coe_finsetWalkLengthLT_eq
{V : Type u}
(G : SimpleGraph V)
[DecidableEq V]
[G.LocallyFinite]
(n : ℕ)
(u v : V)
:
theorem
SimpleGraph.mem_finsetWalkLengthLT_iff
{V : Type u}
{G : SimpleGraph V}
[DecidableEq V]
[G.LocallyFinite]
{n : ℕ}
{u v : V}
{p : G.Walk u v}
:
instance
SimpleGraph.fintypeSetWalkLength
{V : Type u}
(G : SimpleGraph V)
[DecidableEq V]
[G.LocallyFinite]
(u v : V)
(n : ℕ)
:
instance
SimpleGraph.fintypeSubtypeWalkLength
{V : Type u}
(G : SimpleGraph V)
[DecidableEq V]
[G.LocallyFinite]
(u v : V)
(n : ℕ)
:
theorem
SimpleGraph.set_walk_length_toFinset_eq
{V : Type u}
(G : SimpleGraph V)
[DecidableEq V]
[G.LocallyFinite]
(n : ℕ)
(u v : V)
:
instance
SimpleGraph.fintypeSetWalkLengthLT
{V : Type u}
(G : SimpleGraph V)
[DecidableEq V]
[G.LocallyFinite]
(u v : V)
(n : ℕ)
:
instance
SimpleGraph.fintypeSubtypeWalkLengthLT
{V : Type u}
(G : SimpleGraph V)
[DecidableEq V]
[G.LocallyFinite]
(u v : V)
(n : ℕ)
:
instance
SimpleGraph.fintypeSetPathLength
{V : Type u}
(G : SimpleGraph V)
[DecidableEq V]
[G.LocallyFinite]
(u v : V)
(n : ℕ)
:
Equations
instance
SimpleGraph.fintypeSubtypePathLength
{V : Type u}
(G : SimpleGraph V)
[DecidableEq V]
[G.LocallyFinite]
(u v : V)
(n : ℕ)
:
instance
SimpleGraph.fintypeSetPathLengthLT
{V : Type u}
(G : SimpleGraph V)
[DecidableEq V]
[G.LocallyFinite]
(u v : V)
(n : ℕ)
:
Equations
instance
SimpleGraph.fintypeSubtypePathLengthLT
{V : Type u}
(G : SimpleGraph V)
[DecidableEq V]
[G.LocallyFinite]
(u v : V)
(n : ℕ)
:
theorem
SimpleGraph.reachable_iff_exists_finsetWalkLength_nonempty
{V : Type u}
(G : SimpleGraph V)
[DecidableEq V]
[Fintype V]
[DecidableRel G.Adj]
(u v : V)
:
instance
SimpleGraph.instDecidableRelReachable
{V : Type u}
(G : SimpleGraph V)
[DecidableEq V]
[Fintype V]
[DecidableRel G.Adj]
:
instance
SimpleGraph.instDecidablePreconnected
{V : Type u}
(G : SimpleGraph V)
[DecidableEq V]
[Fintype V]
[DecidableRel G.Adj]
:
instance
SimpleGraph.Path.instFintype
{V : Type u}
(G : SimpleGraph V)
[DecidableEq V]
[Fintype V]
[DecidableRel G.Adj]
{u v : V}
:
Equations
- One or more equations did not get rendered due to their size.
instance
SimpleGraph.instDecidableMemSupp
{V : Type u}
(G : SimpleGraph V)
[DecidableEq V]
[Fintype V]
[DecidableRel G.Adj]
(c : G.ConnectedComponent)
(v : V)
:
theorem
SimpleGraph.disjiUnion_supp_toFinset_eq_supp_toFinset
{V : Type u}
{G : SimpleGraph V}
[DecidableEq V]
[Fintype V]
[DecidableRel G.Adj]
{G' : SimpleGraph V}
(h : G ≤ G')
(c' : G'.ConnectedComponent)
[Fintype ↑c'.supp]
[DecidablePred fun (c : G.ConnectedComponent) => c.supp ⊆ c'.supp]
:
theorem
SimpleGraph.ConnectedComponent.odd_card_supp_iff_odd_subcomponents
{V : Type u}
(G : SimpleGraph V)
[Finite V]
{G' : SimpleGraph V}
(h : G ≤ G')
(c' : G'.ConnectedComponent)
: