quantum gate directory
$x$ Rotation
Symbol
$R_x$
Qubits: $1$ Parameters: $1$
Description:
Rotation about the $x$ axis of the Bloch sphere.
Alternate notations:
- $R_x(\theta)$
- $\mathrm{Rx}(\theta)$
- $X(\theta)$
- $X_\theta$
Controlled variant: Controlled $x$ Rotation
SDK Support
| SDK | Name |
|---|---|
| Qiskit |
qiskit.circuit.library.RXGate
|
| PennyLane |
pennylane.RX
|
| Cirq |
cirq.Rx
|
| Q# |
Std.Intrinsic.Rx
|
| PyQuil |
pyquil.gates.RX
|
| Braket |
braket.circuits.gates.Rx
|
| BQSKit |
bqskit.ir.gates.RXGate
|
| Qibo |
qibo.gates.RX
|
| pytket |
pytket.circuit.OpType.Rx
ⓘ
|
| Stim | — |
| OpenQASM |
stdgates.inc: rx
|
The $R_x$ gate rotates a qubit by angle $\theta$ around the $x$ axis.
$$ R_x(\theta) = \exp\left(-i\frac{\theta}{2}X\right) = \begin{bmatrix} \cos\frac{\theta}{2} & -i\sin\frac{\theta}{2} \\ -i\sin{\frac{\theta}{2}} & \cos\frac{\theta}{2} \end{bmatrix} $$
Properties
- $R_x(\pi) = -iX$ (global phase).
- Together with $R_z$ it forms a universal set for single-qubit rotations.
Back to home