6

I am actually working on quantum computing with qutrits. I am trying to define standard qubit gates for qutrits. The CNOT gate for qubits is defined as follows: $$|x,y\rangle \to |x,y+x \bmod 2\rangle.$$

So the matrix is $$\mathrm{UCN} = \begin{pmatrix} 1 & 0 & 0 & 0\\ 0 & 1 & 0 & 0\\ 0 & 0 & 0 & 1\\ 0 & 0 & 1 & 0 \end{pmatrix}.$$

For the definition of the same type of gate for qutrit I am left with two choices:

$$|x,y\rangle \to |x,y+x \bmod 3\rangle$$ $$|x,y\rangle \to |x,y+2x \bmod 3\rangle$$

Does anyone know if one of the two is more common or more usually defined?

PS: I know that applying one two times is equivalent to apply the other one time.

glS
  • 27,510
  • 7
  • 37
  • 125

1 Answers1

7

Your first definition,

$$|x,y\rangle \to |x,y+x \bmod 3\rangle$$

is both more common and, IMO, easier to use. Especially as you point out that the second definition can be simulated by repeated application of the first. You can see the authors have used this version of the qutrit CNOT in Construction of two qutrit entanglement by using magnetic resonance selective pulse sequences (Çorbaci et al., 2016) and in Controlled Not (Cnot) Gate For Two Qutrit Systems, (KOCAKOÇ & TAPRAMAZ, 2018).

Additionally, you may want to consider the context of your qutrit gates. For example, section 2 of arXiv:1105.5485 first defines three versions of the qutrit X gate and then discusses what a controlled X would mean in these cases.

Sanchayan Dutta
  • 17,945
  • 8
  • 50
  • 112
Noah D
  • 86
  • 2