Draft — mutable and not usable as a dependency; its citation marks the draft state.

Proof of `Cographs have logarithmic Welzl orders`

groundedproofs/Lax214022Proofs/CographWelzlUpperBound.lean · lax-214022

What this proof establishes

no assumptions

Assuming the claims on the left, the claim on the right holds — checked by the archive's pipeline. Proof code is not displayed here.

Read the Lean proof on GitHub

Description

Every cograph has a Welzl order with at most 4(ceil(log2n)+1)4 * (ceil(log₂ n) + 1) crossings per open-neighborhood row.

Proof strategy

Extract a binary cotree from the width-zero contraction sequence and order its leaves along recursively chosen heavy paths. A light subtree attached at a join node contributes a constant truetrue row, while one attached at a union node contributes a constant falsefalse row. Their placement makes these constant rows coalesce with canonical boundary values. Thus unequal-rank nodes are free, equal-rank nodes cost at most four changes, and the number of costly levels is the Strahler rank, at most ceil(log2n)ceil(log₂ n).

Attribution

The cotree ordering follows the logarithmic cograph-contiguity construction of Crespelle and Gambette; the framed-row invariant and its Lean proof are given here directly for Welzl crossing number.