Skip to main content

Quantum Gates on Dynex

Quantum gates are the building blocks of quantum circuits. Each gate performs a specific unitary operation on one or more qubits, altering their probability amplitudes and phases. Dynex supports all standard gates via PennyLane, Qiskit, and OpenQASM.

Single-Qubit Gates

Pauli-X (NOT gate)

Flips the qubit state: X|0⟩ = |1⟩, X|1⟩ = |0⟩.

Pauli-Y

Phase flip then bit flip: Y|0⟩ = i|1⟩, Y|1⟩ = −i|0⟩.

Pauli-Z

Phase flip: Z|0⟩ = |0⟩, Z|1⟩ = −|1⟩.

Hadamard (H)

Creates equal superposition: H|0⟩ = (|0⟩ + |1⟩)/√2.

T Gate

Applies a π/4 phase shift. Non-Clifford gate essential for universal quantum computation.

Rotation Gates

RX, RY, RZ

Single-axis rotations by angle θ.

Two-Qubit Gates

CNOT (CX)

Flips target qubit if control qubit is |1⟩.

Controlled-Z (CZ)

Applies Z to target if control is |1⟩.

SWAP (Fredkin)

Exchanges the states of two qubits.

Controlled Rotations (CRX, CRY, CRZ)

Apply rotation to target qubit if control is |1⟩.

Controlled Phase Shift

Applies phase shift to target if control is |1⟩.

Three-Qubit Gates

Toffoli (CCNOT)

Flips target if both control qubits are |1⟩.

Advanced Operations

Quantum Fourier Transform (QFT)

Adjoint (Dagger)

Basis Embedding

Encodes classical binary data into quantum states:

Controlled Unitary (CU)

Next: Running circuits on Dynex

See DynexCircuit Class to learn how to execute these gates on the Dynex platform.