OPG-169: the Two Color Conjecture for planar digraphs
OpenOPG169.root_problemFor every orientation of a finite simple planar graph, there exists a vertex coloring such that both full induced color classes are acyclic:
The color classes need not be independent, and either class may be empty. Directed triangles are allowed in the input.
import Definitions.Def_opg169_planar_dichromatic
namespace OPG169
universe u
/-- OPG-169: every orientation of a finite simple planar graph admits a
vertex two-coloring whose two induced color classes are acyclic. -/
theorem root_problem
{V : Type u} [Fintype V] (G : SimpleGraph V) (D : Digraph V)
(hplanar : IsPlanar G) (horientation : IsOrientationOf D G) :
HasAcyclicTwoColoring D := by sorry
end OPG169Read-back
What the Lean code literally says, in plain math · gpt-5.6-luna
Let be a type in a fixed universe with a finite-type structure, let be a simple graph on , and let be a binary relation on . Assume that there is an injective map such that no vertex other than the endpoints of an edge lies on that edge’s closed straight segment, and such that the closed segments for any two edges with pairwise distinct endpoints are disjoint. Assume also that has no loops, every directed arc of joins adjacent vertices of , and for every edge with endpoints , exactly one of and holds. Then there exists a coloring such that, for each of the two colors , there is no list followed by a middle list and then having length at least , no repeated vertices, directed arcs between every consecutive pair, and an arc from back to , all of whose vertices satisfy .
Confirmed by the mission captain (proposal self-audit).