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/1 - Concetti base/ket.md

138 lines
1.7 KiB
Markdown
Raw Permalink Normal View History

2024-05-21 01:50:41 +00:00
---
aliases:
- ket 0
- ket 1
- ket +
- ket -
---
2024-05-07 03:43:10 +00:00
Notazione per rappresentare rapidamente [[vettore colonna|vettori colonna]] associati a uno [[stato base di un qubit]]:
2024-05-07 00:49:53 +00:00
$$
\begin{bmatrix}
1\\
0
\end{bmatrix} =
{\Huge
\ket{0}
}
\qquad
\begin{bmatrix}
0\\
1
\end{bmatrix} =
{\Huge
\ket{1}
}
$$
2023-09-21 00:46:23 +00:00
2024-05-07 00:49:53 +00:00
Si può usare anche per rappresentare [[vettore colonna|vettori colonna]] più grandi, a condizione che la loro dimensione sia una [[potenza di 2]]:
2023-09-21 00:46:23 +00:00
$$
\begin{bmatrix}
1\\
2024-05-07 00:49:53 +00:00
0\\
0\\
2023-09-21 00:46:23 +00:00
0
\end{bmatrix} =
{\Huge
\ket{00}
}
\qquad
\begin{bmatrix}
0\\
2024-05-07 00:49:53 +00:00
1\\
0\\
0
2023-09-21 00:46:23 +00:00
\end{bmatrix} =
{\Huge
\ket{01}
}
2024-05-07 00:49:53 +00:00
\qquad
\begin{bmatrix}
0\\
0\\
1\\
0
\end{bmatrix} =
{\Huge
\ket{10}
}
\qquad
\begin{bmatrix}
0\\
0\\
0\\
1
\end{bmatrix} =
{\Huge
\ket{11}
}
$$
$$
\begin{bmatrix}
1\\
0\\
0\\
0\\
0\\
0\\
0\\
0\\
\end{bmatrix} =
{\Huge
\ket{000}
}
\qquad
\begin{bmatrix}
0\\
0\\
0\\
0\\
0\\
0\\
0\\
1\\
\end{bmatrix} =
{\Huge
\ket{111}
}
2023-09-21 00:46:23 +00:00
$$
2024-05-07 00:49:53 +00:00
Ket molto grandi si possono rappresentare direttamente con i numeri decimali, aggiungendo a pedice del ket il numero di qbit rappresentati:
$$
{\Huge
\ket{000} = \ket{0}_3
}
\qquad
{\Huge
\ket{010} = \ket{2}_3
}
\qquad
{\Huge
\ket{101} = \ket{5}_3
}
\qquad
{\Huge
\ket{111} = \ket{7}_3
}
$$
$$
{\Huge
\ket{00000000} = \ket{0}_8
}
\qquad
{\Huge
\ket{11111111} = \ket{255}_8
}
$$
2024-05-21 01:50:41 +00:00
Esistono due somme di ket notevoli che hanno un ket dedicato a loro volta:
$$
\Huge \ket{{\color{orangered} +}} = \frac{1}{\sqrt{2}} \left( \ket{0}\ {\color{orangered} +}\ \ket{1} \right)
$$
$$
\Huge \ket{{\color{DodgerBlue} -}} = \frac{1}{\sqrt{2}} \left( \ket{0}\ {\color{DodgerBlue} -}\ \ket{1} \right)
$$
2024-07-08 20:02:25 +00:00
> [!Hint] Typesetting
> In $\TeX$, puoi rappresentare un ket con `\ket{NUMERO}`.