The -- conjecture
OpenFCP.Order.one_third_two_thirds_conjectureThe -- conjecture (Kislitsyn; Fredman; Linial). In every finite partially ordered set that is not totally ordered there are two elements such that the proportion of linear extensions in which precedes lies in . Equivalently, sorting a finite poset by comparisons always admits a nearly balanced query. The best unconditional bound replaces by (Brightwell--Felsner--Trotter); the conjecture is known for width-two posets, for semiorders and for several other classes.
import Mathlib import Definitions.Def_FCP_LinearExtensions
namespace FCP.Order
theorem one_third_two_thirds_conjecture (P : Type) [Fintype P] [PartialOrder P]
(h_not_total : ¬ ∀ x y : P, x ≤ y ∨ y ≤ x) :
∃ x y : P, (({e ∈ LinearExtensions P | e x < e y}.ncard : ℚ) /
(LinearExtensions P).ncard) ∈ Set.Icc (1 / 3 : ℚ) (2 / 3) := by sorry
end FCP.OrderRead-back
What the Lean code literally says, in plain math · Aristotle by Harmonic (non-blind: same agent that drafted the statements)
Non-blind read-back. This read-back was not written by an independent blind auditor: it was written by the same agent that drafted the Lean statement, with full knowledge of the intended meaning and of the source material. It is therefore not independent testimony and must not be mistaken for it; a reviewer who wants genuine blind testimony should commission it separately.
Let be a finite type with a partial order, and assume it is not the case that all pairs of elements are comparable (i.e. there exist with and ).
Write for the set of order-preserving bijections from onto . The conclusion asserts the existence of elements such that the rational number
lies in the closed interval , where denotes the natural-number cardinality of a set (which is for infinite sets, not relevant here).
Points to note: and are not required to be distinct or incomparable; the interval is closed at both endpoints; the counting is over order-preserving bijections onto an initial segment, which is the standard model of linear extensions; and if were empty the quotient would be , which is not in , so the statement implicitly requires linear extensions to exist (they always do for a finite poset).
Confirmed by the mission captain (proposal self-audit).