OPG-46613: -partitions of cubic 3-connected graphs
OpenCubicP3Partition.root_problemLet be a finite vertex type and let be a finite simple graph on . Assume that every vertex of has degree three, deletion of any set of at most two vertices leaves a connected induced graph, , and the number of vertices is divisible by three. Then the vertices can be partitioned into noninduced paths of length two:
Equivalently, when , the factor consists of pairwise vertex-disjoint three-vertex paths covering every vertex. This is the mission's open main goal; no candidate milestone is presented as a proof of it.
import Definitions.Def_cubic_p3_partition_models
namespace CubicP3Partition
universe u
/-- The divisible-order form of the cubic three-connected P3-packing problem. -/
theorem root_problem {V : Type u} [Fintype V] (G : SimpleGraph V)
(hCubic : Cubic G) (hConnected : ThreeVertexConnected G)
(hOrder : 3 ∣ Fintype.card V) :
Nonempty (P3Factor G) := by sorry
end CubicP3PartitionRead-back
What the Lean code literally says, in plain math · gpt-5.6-luna
对宇宙 中的任意有限类型 (带有 Fintype V 实例)和任意简单图 ,在三个显式假设下,定理声明存在一个自然数 和双射 ,使对每个 , 与 相邻且 与 相邻。第一个假设 hCubic 是对每个 , 中以 为起点的邻居 subtype 的自然数基数等于 ;第二个假设 hConnected 是合取:,并且对每个有限子集 ,若 ,则 在满足 的 subtype 上的诱导图连通;第三个假设 hOrder 是 ,即存在自然数 使 。 的量化包括空集和所有大小为一或二的有限子集;除这三个假设、有限性实例和图 外,没有其他前提。
Confirmed by the mission captain (proposal self-audit).