2

Let $P_n$ denote the $n$-qubit Pauli group. This has presentation $P_n = \langle iI, X_1, \ldots, X_n, Z_1, \ldots, Z_n \rangle$. Suppose we have a stabilizer group $S = \langle s_1, \ldots, s_k \rangle \leq P_n$ minimally generated by $k$ elements. We know that $N(S)/S \cong P_{n-k}$, and hence there exists a presentation for $N(S)/S$ of the form $\langle \overline{\iota}, \overline{x_1}, \ldots, \overline{x_{n-k}}, \overline{z_1}, \ldots, \overline{z_{n-k}} \rangle$ whose generators obey the same commutativity relations as the generators of $P_{n-k} = \langle iI, X_1, \ldots, X_{n-k}, Z_1, \ldots, Z_{n-k} \rangle$.

My question is: is an efficient way of finding such a presentation for $N(S)/S$ known, for any given $S$?

I've read Gottesman's lecture notes (https://arxiv.org/abs/0904.2557) and a bit of his unpublished textbook, in which $N(S)/S$ is discussed and properties of it proved, but the key proofs I might otherwise use to derive an algorithm are existential rather than constructive.

2 Answers2

1

Yes there is. You put the code in "standard" form. See Chapter 9 of

https://www.amazon.com/Quantum-Information-Processing-Error-Correction/dp/0123854911

The process uses gaussian elimination and is similar to what you do for classical codes to get a standard (systematic) form. Qiskit or Stim might have this already built in by I'm not sure...

unknown
  • 2,405
  • 1
  • 8
  • 21
1

What you are looking to construct are the logical operators of the code. These operators are the representatives of each coset in $N(S)/S$.

There exists a process to do so, which was presented in Gottesman's thesis [1]. Please refer to step 1 and 2 of this answer which provides the generic process as well as a worked out example, for constructing the logical $X$ and $Z$ operators.

If you want, you can construct the logical $Y$ using the relation $Y=XZ$. Finally, the logical identity is just the all zero vector.

[1] D. Gottesman, Stabilizer Codes and Quantum Error Correction, arXiv:quant-ph/9705052.

Abdullah Khalid
  • 1,933
  • 7
  • 17