quantum gate directory
Pauli-X
Symbol
$X$
Qubits: $1$
hermitian
Description:
Bit-flip gate that swaps $|0\rangle$ and $|1\rangle$.
Alternate notations:
- $X$
- $\sigma_x$
- $\sigma^x$
- $\sigma_1$
- $\mathrm{NOT}$
Controlled variant: Controlled Not
SDK Support
| SDK | Name |
|---|---|
| Qiskit |
qiskit.circuit.library.XGate
|
| PennyLane |
pennylane.PauliX
|
| Cirq |
cirq.X
|
| Q# |
Std.Intrinsic.X
|
| PyQuil |
pyquil.gates.X
|
| Braket |
braket.circuits.gates.X
|
| BQSKit |
bqskit.ir.gates.XGate
|
| Qibo |
qibo.gates.X
|
| pytket |
pytket.circuit.OpType.X
|
| Stim |
X
|
| OpenQASM |
stdgates.inc: x
|
Groups
This gate is contained in the following groups:
The Pauli-$X$ gate is the quantum analog of a classical NOT.
$$ X = \begin{bmatrix} 0 & 1 \\ 1 & 0 \end{bmatrix} $$
Properties
- Hermitian and self-inverse: $X^\dagger = X$ and $X^2 = I$.
- Equivalent to a $R_x(\pi)$ up to global phase.
Back to home