The three-colored tournament problem through order eleven
OpenOPG1808.order_elevenLet be a nonempty tournament on at most eleven vertices with its arcs colored by three colors. If has no rainbow directed triangle, then some vertex reaches every target along a monochromatic directed path:
The path color may depend on . This finite theorem is an open formal target; the cited repository replay is candidate_only, not a proof on the platform.
import Definitions.Def_opg1808_colored_tournaments
namespace OPG1808
universe u
/-- The finite root case through eleven vertices. -/
theorem order_eleven
{V : Type u} [Fintype V] [Nonempty V]
(D : Digraph V) (color : ArcColoring V)
(htournament : IsTournament D)
(horder : Fintype.card V ≤ 11)
(hnoRainbow : ¬ 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. Also assume that the number of vertices satisfies , and that there do not exist pairwise distinct vertices with directed arcs , , and whose three arc colors , , and are pairwise distinct. Then there exists a vertex such that, for every , there is a color and a directed path from to of zero or more steps, all of whose arcs have color ; the color may depend on .
Confirmed by the mission captain (proposal self-audit).