Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ body:
- operator_loschmidt_echo_70x1872
- operator_loschmidt_echo_49x648
- operator_loschmidt_echo_49x1296
- bell_state_phi_plus_2qubit
validations:
required: true

Expand Down
10 changes: 10 additions & 0 deletions data/observable-estimations/circuit-models.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,15 @@
"gates": 1872
}
]
},
"bell_state_phi_plus": {
"instances": [
{
"id": "bell_state_phi_plus_2qubit",
"path": "bell_phi_plus.qasm",
"qubits": 2,
"gates": 2
}
]
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Bell State |Φ+⟩ Circuit

## Description

Two-qubit Bell state preparation circuit creating the maximally entangled state:

|Φ+⟩ = (|00⟩ + |11⟩)/√2

## Circuit Structure

1. Hadamard gate on qubit 0: Creates superposition
2. CNOT gate (control=0, target=1): Creates entanglement

## Observables

- X-basis correlation: ⟨X₁X₂⟩
- Y-basis anti-correlation: ⟨Y₁Y₂⟩
- Z-basis correlation: ⟨Z₁Z₂⟩

## Institutions

UCP Technology LLC

## References

- "Complete Quantum State Recovery from Single-Basis Measurements via Frequency Signatures" - Roy & Ellison 2025

Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
OPENQASM 2.0;
include "qelib1.inc";
qreg q[2];
creg c[2];
// Bell state |Φ+⟩ = (|00⟩ + |11⟩)/√2
h q[0];
cx q[0], q[1];
measure q[0] -> c[0];
measure q[1] -> c[1];