5.8. YGate#
This gate is not popular since it can be replaced with other common operators. Hence, this section only briefly covers its properties.
5.8.1. Definition#
Transformation
Matrix expression
U gate expression
R gate expression
The qiskit circuit code symbol is y and it appears in quantum circuit as
or
┌───┐ q: ┤ Y ├ └───┘
5.8.2. Acting on a superposition state#
When Ygate is applied to a super position state the coefficient is swapped. That is
If the global phase factor is omitted, we have
Like Xgate, the coefficients are swapped. In addition the relative phase of \(\pi\) is applied.
5.8.3. Important Properties#
\(Y^2 = I\)
This means that
\(Y^2\) does not do any thing on the qubit.
\(Y\) is self-inverse, that is \(Y^{-1} = Y\).
\(Y\) is self-adjoint (\(Y^\dagger = Y\)) since \(Y\) is unitary (\(Y^\dagger = Y^{-1}\)) by definition.
Exercise 5.8.1 Show that \(Y|+\rangle = -i |-\rangle\) and \(Y|-\rangle = i |+\rangle\). Apart from the phase factor, \(Y\) flips \(|\pm\rangle\).
Last modified: 08/31/2022