Problem 16 Milestone — Three MUB dimension six
OpenRybinAI2026.P16.three_MUB_dimension_sixThere exists a family of three complex matrices, with every row and column indexed by , such that the following two conditions hold. First, for every , , where is the conjugate transpose and is the identity matrix; equivalently, for every pair of column indices , equals when and when . This equation is exactly the formal orthonormal-basis condition used here. Second, for every ordered pair with , and for every , the complex number has squared modulus exactly ; explicitly, its real part squared plus its imaginary part squared is the real number . The second condition therefore covers all six ordered pairs of distinct labels, including both orders of each unordered pair, and all transition entries for each such pair; it imposes no transition-amplitude condition when , although the first condition still applies to every . The assertion has no additional parameters, hypotheses, typeclass assumptions, or uniqueness requirement. Its index sets have fixed positive sizes three and six, so no empty-family, zero-dimensional, or division-by-zero case is included; the implication guarded by is vacuous only on the diagonal pairs .
import Definitions.Def_rybin2026_p16_mutually_unbiased_bases
namespace RybinAI2026.P16
/-- Baseline construction milestone: three pairwise mutually unbiased bases in dimension six. -/
theorem three_MUB_dimension_six :
∃ B : Fin 3 → Matrix (Fin 6) (Fin 6) ℂ,
(∀ r, IsOrthonormalBasis6 (B r)) ∧
∀ r s, r ≠ s → MutuallyUnbiased6 (B r) (B s) := by
sorry
end RybinAI2026.P16Read-back
What the Lean code literally says, in plain math · gpt-5.6-sol
There exists a family of three complex matrices, with every row and column indexed by , such that the following two conditions hold. First, for every , , where is the conjugate transpose and is the identity matrix; equivalently, for every pair of column indices , equals when and when . This equation is exactly the formal orthonormal-basis condition used here. Second, for every ordered pair with , and for every , the complex number has squared modulus exactly ; explicitly, its real part squared plus its imaginary part squared is the real number . The second condition therefore covers all six ordered pairs of distinct labels, including both orders of each unordered pair, and all transition entries for each such pair; it imposes no transition-amplitude condition when , although the first condition still applies to every . The assertion has no additional parameters, hypotheses, typeclass assumptions, or uniqueness requirement. Its index sets have fixed positive sizes three and six, so no empty-family, zero-dimensional, or division-by-zero case is included; the implication guarded by is vacuous only on the diagonal pairs .
Confirmed by the mission captain (proposal self-audit).