-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathquantum-computing.json
More file actions
179 lines (179 loc) · 6.4 KB
/
quantum-computing.json
File metadata and controls
179 lines (179 loc) · 6.4 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
{
"treeId": "quantum-computing",
"title": "Quantum Computing",
"category": "Science & Computer Science",
"difficulty": "hard",
"description": "Deep dive into the intersection of quantum mechanics, linear algebra, and computer science to program quantum computers.",
"version": "1.0",
"estimatedMonths": 12,
"totalNodes": 6,
"icon": "blur_on",
"nodes": [
{
"id": "linear-algebra-qc",
"label": "Advanced Linear Algebra",
"description": "Complex vector spaces, inner products, eigenvectors, eigenvalues, and unitary matrices.",
"icon": "calculate",
"zone": "Mathematics",
"resources": [
{
"id": "mit-linear-algebra",
"title": "MIT 18.06 Linear Algebra",
"url": "https://ocw.mit.edu/courses/18-06-linear-algebra-spring-2010/",
"type": "course",
"author": "Gilbert Strang",
"estimatedHours": 40,
"isFree": true
}
],
"requires": []
},
{
"id": "quantum-mechanics-basics",
"label": "Quantum Mechanics Postulates",
"description": "State vectors, superposition, observables, the Schrodinger equation, and entanglement.",
"icon": "science",
"zone": "Physics",
"resources": [
{
"id": "susskind-qm",
"title": "Quantum Mechanics - The Theoretical Minimum",
"url": "https://theoreticalminimum.com/courses/quantum-mechanics/2012/winter",
"type": "video",
"author": "Leonard Susskind",
"estimatedHours": 20,
"isFree": true
}
],
"requires": [
"linear-algebra-qc"
]
},
{
"id": "quantum-gates",
"label": "Qubits and Quantum Gates",
"description": "The Bloch sphere, Pauli matrices (X, Y, Z), Hadamard gates, CNOT, and quantum circuits.",
"icon": "memory",
"zone": "Information Theory",
"resources": [
{
"id": "qiskit-textbook-qubits",
"title": "Multiple Qubits and Entanglement",
"url": "https://qiskit.org/textbook/ch-gates/multiple-qubits-entangled-states.html",
"type": "article",
"author": "IBM Qiskit",
"estimatedHours": 10,
"isFree": true
}
],
"requires": [
"quantum-mechanics-basics"
]
},
{
"id": "quantum-algorithms",
"label": "Quantum Algorithms",
"description": "Deutsch-Jozsa, Grover's Search Algorithm, and Shor's Algorithm for integer factorization.",
"icon": "account_tree",
"zone": "Computer Science",
"resources": [
{
"id": "shors-algorithm-vid",
"title": "Shor's Algorithm Explained",
"url": "https://www.youtube.com/watch?v=lvTqbM5Dq4Q",
"type": "video",
"author": "MinutePhysics",
"estimatedHours": 1,
"isFree": true
},
{
"id": "qiskit-textbook-algs",
"title": "Quantum Algorithms Overview",
"url": "https://qiskit.org/textbook/ch-algorithms/index.html",
"type": "article",
"author": "IBM",
"estimatedHours": 15,
"isFree": true
}
],
"requires": [
"quantum-gates"
]
},
{
"id": "qiskit-programming",
"label": "Programming with Qiskit",
"description": "Translating theory into code using IBM's Qiskit framework in Python to run circuits on real quantum hardware.",
"icon": "terminal",
"zone": "Implementation",
"resources": [
{
"id": "coding-with-qiskit",
"title": "Coding with Qiskit Series",
"url": "https://www.youtube.com/playlist?list=PLOFEBzvs-Vvp2xg9-POLJhQwtVktlYpW0",
"type": "video",
"author": "IBM Quantum",
"estimatedHours": 8,
"isFree": true
}
],
"requires": [
"quantum-gates",
"quantum-algorithms"
]
},
{
"id": "quantum-error-correction",
"label": "Quantum Error Correction",
"description": "Addressing quantum decoherence, the No-Cloning Theorem, and Shor's code.",
"icon": "bug_report",
"zone": "Advanced Theory",
"resources": [
{
"id": "qec-introduction",
"title": "Introduction to Quantum Error Correction",
"url": "https://qiskit.org/textbook/ch-quantum-hardware/error-correction.html",
"type": "article",
"author": "IBM Qiskit",
"estimatedHours": 12,
"isFree": true
}
],
"requires": [
"quantum-algorithms"
]
}
],
"edges": [
{
"id": "e-la-qm",
"source": "linear-algebra-qc",
"target": "quantum-mechanics-basics"
},
{
"id": "e-qm-qg",
"source": "quantum-mechanics-basics",
"target": "quantum-gates"
},
{
"id": "e-qg-qa",
"source": "quantum-gates",
"target": "quantum-algorithms"
},
{
"id": "e-qg-qis",
"source": "quantum-gates",
"target": "qiskit-programming"
},
{
"id": "e-qa-qis",
"source": "quantum-algorithms",
"target": "qiskit-programming"
},
{
"id": "e-qa-qec",
"source": "quantum-algorithms",
"target": "quantum-error-correction"
}
]
}