-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalgorithm.json
More file actions
34 lines (34 loc) · 766 Bytes
/
algorithm.json
File metadata and controls
34 lines (34 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"slug": "bell-state",
"name": "Bell State",
"version": "1.0.0",
"author": "iniestarchen",
"license": "Apache-2.0",
"description": "Create a maximally entangled Bell pair (|00> + |11>) / sqrt(2) using a Hadamard gate followed by a CNOT.",
"industries": [
"education"
],
"techniques": [
"gate"
],
"difficulty": "intermediate",
"computation_model": "gate",
"algorithm_type": "circuit",
"qubit_count": 2,
"tags": [
"entanglement",
"bell-pair",
"beginner",
"fundamentals"
],
"access": "open",
"source": "official",
"metadata": {
"complexity_classical": "N/A",
"complexity_quantum": "O(1)",
"year_introduced": 1964,
"references": [
"https://en.wikipedia.org/wiki/Bell_state"
]
}
}