proven
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
Lemma
A walk of length at most can be split at a vertex into walks of length at most and at most .
Lean source view on GitHub
| 1 | import Lax307052.Reachability |
| 2 | |
| 3 | /-! |
| 4 | --- |
| 5 | title: Splitting a bounded walk |
| 6 | type: lemma |
| 7 | --- |
| 8 | A walk of length at most can be split at a vertex into walks of |
| 9 | length at most and at most . |
| 10 | -/ |
| 11 | |
| 12 | namespace Lax307052.SplitWalk |
| 13 | |
| 14 | open Reachability |
| 15 | |
| 16 | axiom split {α : Type} (R : α → α → Prop) (r s : ℕ) (a b : α) : |
| 17 | Within R (r + s) a b ↔ ∃ m, Within R r a m ∧ Within R s m b |
| 18 | |
| 19 | end Lax307052.SplitWalk |
| 20 |
Community review
Discussion
Ask a question or add context. Endorsements and structured flags are kept in the review panel above; your ORCID profile must share a public name.
0 comments