Introduces the cluster state as a universal resource for measurement-based quantum computation.
arxiv.org/abs/quant-ph/0010033 ↗One-dimensional cluster state
The canonical resource state for one-way (measurement-based) quantum computing: qubits in |+⟩ entangled by CZ along a line.
Atlas stars stay in the public catalog. Saving this entry to your workspace starts an unstarred private copy.
The cluster state trades the circuit model's sequence of unitary gates for a single entangling preparation followed by adaptive single-qubit measurements — the measurement pattern, not the entangling step, carries the computation.
Circuit & simulation
What this takes and returns
TakesNothingWhat joins here
Nothing goes in, and that is what this entry is: a pipeline starts here. There is no upstream to choose — what you pick is what comes after.
Nothing in the Atlas meets this end.
Returns4 qubitsWhat joins here
Returns a 4-qubit register a next stage can take. This is the end that joins.
1 entry lines up on shape, composition unverified. Named below.
Prepares a state. Nothing goes in, and what comes out is a register another stage can take. See all 12 →
The widths and types line up. What is not established is everything a width does not carry — the basis convention, the normalisation, the state each was written to start from — so this is not a claim that the two compose.
Where the map uses this
This record is an instance of an object the map names, so these are the processes that consume or produce one. None of them is about this record in particular.
State you can prepare 5 of 33 processes
- Quantum linear solve hands one back
- Prepare an input state hands one back
- Amplify a success branch hands one back
- Estimate an observable takes one
- Minimise the objective over the parameters hands one back
How it works
A 1D cluster state on qubits is prepared by
Stabilizer generators. For the path graph with vertices , the state is the unique joint eigenstate of the commuting generators
For explicitly: , , , . Each squares to identity, all pairs commute (any two generators either share zero neighboring sites or share exactly two anti-commuting Pauli factors that cancel), and their product group has elements — the full stabilizer group of a pure -qubit state.
Why it is Clifford, not universal by itself. CZ and are both Clifford operations, so the cluster state itself carries no non-Clifford resource; it is entangling structure. Universality in the one-way model comes from the choice of measurement bases (rotated single-qubit measurements), which are adaptively chosen based on earlier outcomes — the classical feed-forward, not the resource state, injects non-Clifford power.
Physical significance. Raussendorf and Briegel's one-way quantum computer showed that any circuit can be compiled into: (1) prepare a large enough cluster state, (2) measure each qubit in a computed adaptive basis, (3) read off the answer from the final unmeasured qubits and classical corrections. This underlies photonic and superconducting measurement-based architectures where entangling gates are cheap up front and computation is pushed into measurement choices.
Implementation
from qiskit import QuantumCircuit
from qiskit.quantum_info import StabilizerState
def cluster_state_1d(n: int) -> QuantumCircuit:
qc = QuantumCircuit(n)
qc.h(range(n))
for i in range(n - 1):
qc.cz(i, i + 1)
return qc
qc = cluster_state_1d(4)
stab = StabilizerState(qc)
print(stab.clifford.to_labels(mode="S"))
# ['+IIZX', '+IZXZ', '+ZXZI', '+XZII'] — K4..K1 in Qiskit's little-endian order,
# i.e. exactly the path-graph generators K_i = X_i prod_{j~i} Z_j.
FINAL_CIRCUIT = qcQuantum vs classical
Classical baseline
Use a classical state-vector or matrix simulation at the same width, precision, and measurement objective.
Quantum claim
The quantum record demonstrates a state or operator behavior; it does not make classical simulation or communication costs disappear.
How to compare
Compare fidelity, samples, gate depth, noise, memory, and the cost of preparing and reading the state.
Declared gaps
Nobody has reviewed this record for gaps yet.