1
Fork 0
mirror of https://github.com/Steffo99/appunti-magistrali.git synced 2024-11-22 02:44:17 +00:00
appunti-steffo/7 - Introduction to quantum information processing/2 - Gates/circuito quantistico.md

92 lines
1.9 KiB
Markdown
Raw Permalink Normal View History

2024-11-06 12:41:36 +00:00
Combinazione di più [[gate quantistico|gate quantistici]].
2024-11-08 04:57:06 +00:00
In notazione matematica, i [[gate quantistico|gate]] vengono eseguiti da destra verso sinistra:
2024-11-06 12:41:36 +00:00
$$
\Huge
\mathbf{4\ 3\ 2\ 1} \ket{\psi} = (\ \mathbf{4} (\ \mathbf{3} (\ \mathbf {2} (\ \mathbf{1} \ket{\psi}\ )\ )\ )\ )
$$
2024-11-08 04:57:06 +00:00
Nei diagrammi di circuito, vengono eseguiti da sinistra verso destra.
2024-11-06 12:41:36 +00:00
2024-11-08 04:57:06 +00:00
## Combinazione di [[gate quantistico|gate]]
2024-11-06 12:41:36 +00:00
2024-11-08 04:57:06 +00:00
Più [[gate quantistico|gate]] si possono combinare in serie, o in parallelo.[^1]
2024-11-06 12:41:36 +00:00
### Serie: [[prodotto matriciale]]
2024-11-08 04:57:06 +00:00
I [[gate quantistico|gate]] vengono applicati consecutivamente uno all'altro:
2024-11-06 12:41:36 +00:00
$$
\displaylines{
\mathbf{Y} \times \mathbf{Z}
=\\\\
\begin{bmatrix}
0 & -i\\
i & 0
\end{bmatrix}
\times
\begin{bmatrix}
1 & 0\\
0 & -1
\end{bmatrix}
=\\\\
\begin{bmatrix}
(0 \cdot 1) + (-i \cdot 0) & (0 \cdot 0) + (-i \cdot -1)\\
(i \cdot 1) + (0 \cdot 0) & (i \cdot 0) + (-1 \cdot 0)
\end{bmatrix}
=\\\\
\begin{bmatrix}
0 & i\\
i & 0
\end{bmatrix}
=\\\\
i \cdot
\begin{bmatrix}
0 & 1\\
1 & 0
\end{bmatrix}
=\\\\
i \cdot \mathbf{X}
}
$$
2024-11-08 04:57:06 +00:00
![[circuito quantistico in serie.png]]
2024-11-06 12:41:36 +00:00
### Parallelo: [[prodotto tensoriale]]
2024-11-08 04:57:06 +00:00
I [[gate quantistico|gate]] vengono richiusi in una [[scatola nera]] come se fossero uno solo:
$$
\displaylines{
\mathbf{Y} \otimes \mathbf{Z}
=\\\\
\begin{bmatrix}
0 & -i\\
i & 0
\end{bmatrix}
\otimes
\begin{bmatrix}
1 & 0\\
0 & -1
\end{bmatrix}
=\\\\
\begin{bmatrix}
0 \cdot 1 & -i \cdot 1 & 0 \cdot 0 & -i \cdot 0 \\
i \cdot 1 & 0 \cdot 1 & i \cdot 0 & 0 \cdot 0 \\
0 \cdot 0 & -i \cdot 0 & 0 \cdot -1 & -i \cdot -1 \\
i \cdot 0 & 0 \cdot 0 & i \cdot -1 & 0 \cdot -1
\end{bmatrix}
=\\\\
\begin{bmatrix}
0 & -i & 0 & 0 \\
i & 0 & 0 & 0 \\
0 & 0 & 0 & i \\
0 & 0 & -i & 0
\end{bmatrix}
}
$$
![[circuito quantistico in parallelo.png]]
2024-11-06 12:41:36 +00:00
[^1]: https://en.wikipedia.org/wiki/Quantum_logic_gate#Circuit_composition