Introduces the Bell inequality that distinguishes entangled correlations, such as the Bell state, from any local hidden-variable model.
doi.org/10.1103/physicsphysiquefizika.1.195 ↗Bell state measurement
A two-qubit entanglement example with a return contract and distribution check.
Atlas stars stay in the public catalog. Saving this entry to your workspace starts an unstarred private copy.
The Bell state is compact enough for a first experiment and rich enough to show that measurement outcomes can be correlated without choosing a classical bit in advance.
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.
Returns2 qubitsWhat joins here
Returns a 2-qubit register a next stage can take. This is the end that joins.
12 entries meet this end. Named below.
Prepares a state. Nothing goes in, and what comes out is a register another stage can take. See all 12 →
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
The Bell state is prepared by on qubit 0 followed by : starting from , gives , and CX then copies the control's value onto the target, — exactly the statevector this record's exact-state check compares against. Measuring both qubits in the computational basis yields or each with probability and never or : the two outcomes are perfectly correlated even though neither qubit's individual outcome is determined before measurement, the operational signature of entanglement (this state violates a Bell/CHSH inequality; it cannot be reproduced by any local hidden-variable model tossing independent coins). Because it is the smallest circuit exhibiting genuine quantum correlation, the Bell state anchors teleportation, superdense coding, and entanglement-verification protocols throughout this catalog.
Implementation
from qiskit import QuantumCircuit
qc = QuantumCircuit(2, 2)
qc.h(0)
qc.cx(0, 1)
qc.measure([0, 1], [0, 1])
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.
Literature & references
Standard graduate textbook covering the single- and two-qubit gate definitions, matrix identities, and circuit primitives this record states.
doi.org/10.1017/cbo9780511976667 ↗