OPG-1808: rainbow directed triangle or monochromatic source
OpenOPG1808.root_problemEvery nonempty finite tournament whose arcs have three colors has one of the following outcomes:
- a cyclically oriented triangle whose three arcs have pairwise distinct colors; or
- a vertex such that every vertex is reachable from by a directed path of one color.
The color in the second outcome may be selected separately for each target. Rainbow transitive triples are not included in the first outcome.
import Definitions.Def_opg1808_colored_tournaments
namespace OPG1808
universe u
/-- OPG-1808 for nonempty finite tournaments: either there is a rainbow
directed triangle or a monochromatic source. -/
theorem root_problem
{V : Type u} [Fintype V] [Nonempty V]
(D : Digraph V) (color : ArcColoring V)
(htournament : IsTournament D) :
HasRainbowDirectedTriangle D color ∨
∃ s : V, IsMonochromaticSource D color s := by sorry
end OPG1808Read-back
What the Lean code literally says, in plain math · gpt-5.6-luna
Let be a finite, nonempty type, let be a binary relation on , and let assign one of three colors to every ordered pair of vertices. Assume that no vertex has a loop, and that for every distinct pair exactly one of and holds. Then either there exist pairwise distinct vertices with directed arcs , , and whose three arc colors are pairwise distinct, or there exists a vertex such that every vertex can be reached from by a directed path of zero or more steps whose arcs all share one color in , with that color allowed to depend on .
Confirmed by the mission captain (proposal self-audit).