Open Quantum Problem 13: Mutually unbiased bases #
Mathematical problem #
For each integer $d \ge 2$, determine the maximum number $k$ for which there exist orthonormal bases $\mathcal{B}_1, \dots, \mathcal{B}_k$ of the complex Hilbert space $\mathbb{C}^d$ such that any two distinct bases are mutually unbiased.
Concretely, if $\mathcal{B}_r = \{ e_0^{(r)}, \dots, e_{d-1}^{(r)} \}$ and $\mathcal{B}_s = \{ e_0^{(s)}, \dots, e_{d-1}^{(s)} \}$, then $\mathcal{B}_r$ and $\mathcal{B}_s$ are mutually unbiased if for all $i, j$ and all $r \ne s$, $|\langle e_i^{(r)}, e_j^{(s)} \rangle| = d^{-1/2}$.
The problem is therefore to determine the maximal value $\mu(d) := \max \{ k : \text{there exist } k \text{ pairwise mutually unbiased orthonormal bases in } \mathbb{C}^d \}$.
In this file, an orthonormal basis is represented by a unitary matrix whose columns are the
basis vectors. For two such bases U and V, the matrix relativeUnitary U V, which is
$U^\dagger V$, contains all cross-basis overlaps as its entries. Since Lean works more
smoothly with squared norms, we formalize mutual unbiasedness by requiring
$\| (relativeUnitary\ U\ V)_{ij} \|^2 = 1 / d$
for all $i, j$, which is equivalent to
$|\langle e_i^{(r)}, e_j^{(s)} \rangle| = d^{-1/2}$.
Background #
Mutually unbiased bases are a basic structure in finite-dimensional quantum theory. They arise in quantum state determination, quantum tomography, quantum cryptography, finite geometry, and combinatorics.
A general upper bound is $\mu(d) \le d + 1$. Equality is known when $d$ is a prime power, via constructions over finite fields. For composite dimensions that are not prime powers, the exact value of $\mu(d)$ is in general open.
The smallest and most famous unresolved case is $d = 6$. The IQOQI OQP page emphasizes this dimension in particular: although many equivalent reformulations are known, no construction yielding more than three mutually unbiased bases in dimension six is known.
What this file formalizes #
This file is organized around the quantity IsMaxMUBCount d k, which expresses that
$k$ is the maximum number of mutually unbiased orthonormal bases in dimension $d$.
- the open theorem
mutuallyUnbiasedBasesexpresses the full problem for all $d \ge 2$; - the open theorem
mutuallyUnbiasedBases_dim6expresses the especially important case $d = 6$; - the solved theorem
mutuallyUnbiasedBases_dim2proves the qubit case $\mu(2) = 3$.
References #
Primary source list entry:
- IQOQI Vienna Open Quantum Problems, problem 13: https://oqp.iqoqi.oeaw.ac.at/mutually-unbiased-bases
- Master list of open quantum problems: https://oqp.iqoqi.oeaw.ac.at/open-quantum-problems
Foundational papers #
- I. D. Ivanović, Geometrical description of quantal state determination, J. Phys. A 14, 3241-3245 (1981).
- W. K. Wootters and B. D. Fields, Optimal state-determination by mutually unbiased measurements, Ann. Phys. 191, 363-381 (1989).
General constructions and surveys #
- A. Klappenecker and M. Rötteler, Constructions of mutually unbiased bases, in Finite Fields and Applications, LNCS 2948 (2004).
Dimension six and the maximal-number problem #
- M. Grassl, On SIC-POVMs and MUBs in Dimension 6, arXiv:quant-ph/0406175 (2004).
- P. Butterley and W. Hall, Numerical evidence for the maximum number of mutually unbiased bases in dimension six, Phys. Lett. A 369, 5-8 (2007), arXiv:quant-ph/0701122.
- S. Brierley and S. Weigert, Maximal Sets of Mutually Unbiased Quantum States in Dimension Six, Phys. Rev. A 78, 042312 (2008), arXiv:0808.1614.
- P. Raynal, X. Lü, and B.-G. Englert, Mutually unbiased bases in dimension six: The four most distant bases, Phys. Rev. A 83, 062303 (2011), arXiv:1103.1025.
Remark on the status of $d = 6$ #
The dimension-six case is not known to be solved. At present, the best-known general picture is:
- $3 \le \mu(6) \le 7$,
- complete sets of $7$ MUBs are not known,
- and several analytic and numerical works give strong evidence that one cannot go beyond $3$.
This is why the theorem mutuallyUnbiasedBases_dim6 is marked as an open research statement.
A unitary matrix representing an orthonormal basis of $\mathbb{C}^d$ via its columns.
Equations
- OpenQuantumProblem13.UMat d = ↥(Matrix.unitaryGroup (Fin d) ℂ)
Instances For
Two unitary matrices represent mutually unbiased bases if every entry of the relative unitary has squared norm $1 / d$.
Equations
- OpenQuantumProblem13.IsUnbiased U V = ∀ (i j : Fin d), ‖OpenQuantumProblem13.relativeUnitary U V i j‖ ^ 2 = (↑d)⁻¹
Instances For
Mutual unbiasedness is symmetric.
A family of unitary matrices is a family of mutually unbiased bases if every two distinct members are unbiased.
Equations
- OpenQuantumProblem13.IsMUBFamily B = Pairwise fun (m n : Fin k) => OpenQuantumProblem13.IsUnbiased (B m) (B n)
Instances For
There exist $k$ mutually unbiased bases in $\mathbb{C}^d$.
Equations
- OpenQuantumProblem13.HasMUBs d k = ∃ (B : Fin k → OpenQuantumProblem13.UMat d), OpenQuantumProblem13.IsMUBFamily B
Instances For
There exists a complete set of $d + 1$ mutually unbiased bases in $\mathbb{C}^d$.
Equations
Instances For
$k$ is the maximal size of a family of mutually unbiased bases in dimension $d$.
Equations
- OpenQuantumProblem13.IsMaxMUBCount d k = (OpenQuantumProblem13.HasMUBs d k ∧ ∀ (m : ℕ), OpenQuantumProblem13.HasMUBs d m → m ≤ k)
Instances For
Every dimension admits the empty family of mutually unbiased bases.
Every dimension admits a family of one mutually unbiased basis.
A convenient phase with squared norm $1/2$. Using $\omega = (1+i)/2$ avoids square roots.
Equations
- OpenQuantumProblem13.Qubit.ω = (1 + Complex.I) / 2
Instances For
The raw phase-parametrized Hadamard matrix. The cases $\zeta = 1$ and $\zeta = i$ give the $X$ and $Y$ bases.
Equations
- OpenQuantumProblem13.Qubit.phaseMatrix ζ = !![1, 1; ζ, -ζ]
Instances For
If $\zeta$ has unit modulus, then the phase matrix is orthogonal up to the scalar factor $2$.
Scaling a phase matrix by $\omega$ produces a unitary matrix whenever the phase has unit modulus.
The relative product of two scaled phase matrices is obtained by scaling the corresponding relative product of phase matrices.
The bundled qubit basis associated to a unit-modulus phase $\zeta$.
Equations
Instances For
The standard qubit basis.
Equations
Instances For
The qubit $X$ basis as a bundled unitary matrix.
Equations
Instances For
The qubit $Y$ basis as a bundled unitary matrix.
Equations
Instances For
The standard basis is mutually unbiased with any phase basis of unit-modulus phase.
The three standard qubit mutually unbiased bases: $Z$, $X$, and $Y$.
Equations
Instances For
The standard qubit family is a family of mutually unbiased bases.
There exist three mutually unbiased bases in dimension $2$.
The first entry of the first column of a qubit unitary basis matrix.
Equations
- OpenQuantumProblem13.Qubit.u0 U = ↑U 0 0
Instances For
The second entry of the first column of a qubit unitary basis matrix.
Equations
- OpenQuantumProblem13.Qubit.u1 U = ↑U 1 0
Instances For
The real Bloch-vector space for qubits.
Equations
Instances For
The Bloch vector associated to the first column of a qubit basis matrix.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The first column of a unitary matrix has squared norm $1$.
The Bloch inner product is determined by the $(0,0)$ entry of the relative unitary.
The relative unitary of a basis with itself is the identity matrix.
A qubit Bloch vector is never the zero vector.
Mutually unbiased qubit bases have orthogonal Bloch vectors.
No family of mutually unbiased bases in dimension $2$ has size greater than $3$.
The maximum number of mutually unbiased bases in dimension $2$ is $3$.
In dimension $2$, the maximum number of mutually unbiased orthonormal bases is $3$.
Special case in dimension $6$: determine the maximal number of mutually unbiased orthonormal bases in $\mathbb{C}^6$.
Special case in dimension $10$ (not a prime power): determine the maximal number of mutually unbiased orthonormal bases in $\mathbb{C}^{10}$.
Special case in dimension $12$ (not a prime power): determine the maximal number of mutually unbiased orthonormal bases in $\mathbb{C}^{12}$.
Special case in dimension $14$ (not a prime power): determine the maximal number of mutually unbiased orthonormal bases in $\mathbb{C}^{14}$.
Special case in dimension $15$ (not a prime power): determine the maximal number of mutually unbiased orthonormal bases in $\mathbb{C}^{15}$.
Open Quantum Problem 13: determine the maximal number of mutually unbiased orthonormal bases in $\mathbb{C}^d$ for $d \ge 2$.