C02: the 18-vertex route obstruction
ProvedCubicP3Partition.c02_finite_obstructioncombinatoricscubic-graphsgraph-theoryp3-factor
For the explicitly defined graph on 18 vertices, all four assertions hold:
- is cubic;
- is 3-vertex-connected;
- has a noninduced -factor;
- no perfect matching of has a complementary 2-factor whose every component order is divisible by three.
This is a boundary result for a stronger sufficient route, not a counterexample to the main open problem. The cited repository currently classifies it as candidate-only; this theorem is the outstanding kernel-check target.
Preamble
import Definitions.Def_cubic_p3_partition_models
Formal statement
namespace CubicP3Partition
/-- The 18-vertex member of the C02 candidate family. -/
theorem c02_finite_obstruction :
Cubic (H 0) ∧ ThreeVertexConnected (H 0) ∧
Nonempty (P3Factor (H 0)) ∧ ¬ HasDivisibleComplement (H 0) := by sorry
end CubicP3PartitionSource
Vibe Mathing C02, https://github.com/vibemathing/problem-opg-46613-cubic-p3-partition/blob/14b8dc64ac2d89c98cf3a2bbb2fcba76ced0df6a/research/artifacts/candidates/opg46613-c02/proof.md, Sections C02.3–C02.4; independent verifier report at https://github.com/vibemathing/problem-opg-46613-cubic-p3-partition/blob/14b8dc64ac2d89c98cf3a2bbb2fcba76ced0df6a/research/artifacts/candidates/opg46613-c08-independent-verifier/verifier-report.md; fixed revision 14b8dc64ac2d89c98cf3a2bbb2fcba76ced0df6a.
Read-back
What the Lean code literally says, in plain math · gpt-5.6-luna
令 ,并令 为 H 0:对 ,它们相邻当且仅当 且 ,其中 当且仅当 属于 之一,或 且 或 ,或 ,或 ,或 。定义对任意 上的简单图 , 为 中 的邻居数, 为从 在 中可达的顶点数,并令 的边恰为 的边中不属于 的边。该定理声明以下四个命题的合取:每个 满足 ; 且对每个有限子集 , 时 在满足 的 subtype 上的诱导图连通;存在自然数 和双射 ,使每个 的位置 — 和位置 — 两对在 中相邻;并且不存在任何简单图 使每条 边都是 的边、每个顶点有恰好一个 邻居、每条 边都是 的边、每个顶点有恰好两个 邻居且每个 都是 的倍数。有限子集条件包括空集;最后一项是否定的是存在一个同时满足全部所列条件的 。
Human review
Confirmed by the mission captain (proposal self-audit).