Divisible 2-factors yield -factors
ProvedCubicP3Partition.divisible_two_factor_implies_p3_factorcombinatoricscubic-graphsgraph-theoryp3-factor
Let be any finite simple graph. If contains a spanning 2-regular subgraph such that every connected component of has order divisible by three, then has a noninduced -factor:
Cubicity and connectivity are not assumptions. This is the formal target for the constructive implication used by the strengthened matching route.
Preamble
import Definitions.Def_cubic_p3_partition_models
Formal statement
namespace CubicP3Partition
universe u
/-- Split every component of a divisible 2-factor into three-vertex paths. -/
theorem divisible_two_factor_implies_p3_factor
{V : Type u} [Fintype V] (G : SimpleGraph V)
(h : HasDivisibleTwoFactor G) : Nonempty (P3Factor G) := by sorry
end CubicP3PartitionSource
Vibe Mathing C01, https://github.com/vibemathing/problem-opg-46613-cubic-p3-partition/blob/14b8dc64ac2d89c98cf3a2bbb2fcba76ced0df6a/research/artifacts/candidates/opg46613-c01/proof.md, Section 2 (C01.1), fixed revision 14b8dc64ac2d89c98cf3a2bbb2fcba76ced0df6a.
Read-back
What the Lean code literally says, in plain math · gpt-5.6-luna
对宇宙 中的任意有限类型 (带有 Fintype V 实例)和任意简单图 ,假设 h 表示存在一个简单图 定义在同一顶点类型 上,使每条 边都是 的边、每个顶点在 中恰有两个邻居,并且每个顶点在 中可达分支的顶点数是 的倍数;则定理声明存在一个自然数 和双射 ,使得对每个 , 与 在 中相邻,且 与 在 中相邻。这里结论是存在至少一个这样的结构,不要求唯一;没有额外的 cubic、连通性或阶数假设,且 中的所有顶点量化在空顶点类型上为空真。
Human review
Confirmed by the mission captain (proposal self-audit).