|
| 1 | +\documentclass{beamer} |
| 2 | + |
| 3 | +\usepackage{amsmath,amsfonts,amssymb,bm} |
| 4 | +\usepackage{quantikz} |
| 5 | +\usepackage{graphicx} |
| 6 | + |
| 7 | +\usetheme{Madrid} |
| 8 | + |
| 9 | +\title{Analog and Digital Quantum Computing} |
| 10 | +\subtitle{From Hamiltonian Dynamics to Variational Algorithms} |
| 11 | +\author{Morten Hjorth-Jensen} |
| 12 | +\date{Spring 2026} |
| 13 | + |
| 14 | +\begin{document} |
| 15 | + |
| 16 | +\frame{\titlepage} |
| 17 | + |
| 18 | +%================================================ |
| 19 | +\section{Motivation} |
| 20 | +%================================================ |
| 21 | + |
| 22 | +\begin{frame}{Quantum Computing as Physics} |
| 23 | +\[ |
| 24 | +i\hbar \frac{d}{dt} |\psi\rangle = H |\psi\rangle |
| 25 | +\] |
| 26 | +\[ |
| 27 | +|\psi(t)\rangle = e^{-iHt}|\psi(0)\rangle |
| 28 | +\] |
| 29 | + |
| 30 | +\begin{itemize} |
| 31 | +\item Computation = control of quantum dynamics |
| 32 | +\end{itemize} |
| 33 | +\end{frame} |
| 34 | + |
| 35 | +%------------------------------------------------ |
| 36 | + |
| 37 | +\begin{frame}{Two Paradigms} |
| 38 | +\begin{itemize} |
| 39 | +\item Digital quantum computing |
| 40 | +\item Analog quantum computing |
| 41 | +\end{itemize} |
| 42 | + |
| 43 | +\begin{block}{Key distinction} |
| 44 | +Discrete gate decomposition vs continuous evolution |
| 45 | +\end{block} |
| 46 | +\end{frame} |
| 47 | + |
| 48 | +%================================================ |
| 49 | +\section{Digital Quantum Computing} |
| 50 | +%================================================ |
| 51 | + |
| 52 | +\begin{frame}{Gate-Based Model} |
| 53 | +\[ |
| 54 | +U = \prod_i U_i |
| 55 | +\] |
| 56 | +\begin{itemize} |
| 57 | +\item Universal computation |
| 58 | +\end{itemize} |
| 59 | +\end{frame} |
| 60 | + |
| 61 | +%------------------------------------------------ |
| 62 | + |
| 63 | +\begin{frame}{Quantum Circuit Example} |
| 64 | +\[ |
| 65 | +\begin{quantikz} |
| 66 | +\lstick{|0\rangle} & \gate{H} & \ctrl{1} & \meter{} \\ |
| 67 | +\lstick{|0\rangle} & \qw & \targ{} & \meter{} |
| 68 | +\end{quantikz} |
| 69 | +\] |
| 70 | +\end{frame} |
| 71 | + |
| 72 | +%------------------------------------------------ |
| 73 | + |
| 74 | +\begin{frame}{Trotterization} |
| 75 | +\[ |
| 76 | +e^{-i(H_1+H_2)t} \approx |
| 77 | +\left(e^{-iH_1\Delta t}e^{-iH_2\Delta t}\right)^n |
| 78 | +\] |
| 79 | +\end{frame} |
| 80 | + |
| 81 | +%------------------------------------------------ |
| 82 | + |
| 83 | +\begin{frame}{Example: QAOA} |
| 84 | +\[ |
| 85 | +|\psi\rangle = |
| 86 | +\prod_k e^{-i\beta_k H_M} e^{-i\gamma_k H_C}|+\rangle |
| 87 | +\] |
| 88 | +\end{frame} |
| 89 | + |
| 90 | +%------------------------------------------------ |
| 91 | + |
| 92 | +\begin{frame}{Example: HHL} |
| 93 | +\begin{itemize} |
| 94 | +\item Spectral decomposition |
| 95 | +\item Implements $A^{-1}$ |
| 96 | +\end{itemize} |
| 97 | +\end{frame} |
| 98 | + |
| 99 | +%------------------------------------------------ |
| 100 | + |
| 101 | +\begin{frame}{Advantages} |
| 102 | +\begin{itemize} |
| 103 | +\item Universal |
| 104 | +\item Programmable |
| 105 | +\item Error correction possible |
| 106 | +\end{itemize} |
| 107 | +\end{frame} |
| 108 | + |
| 109 | +%------------------------------------------------ |
| 110 | + |
| 111 | +\begin{frame}{Limitations} |
| 112 | +\begin{itemize} |
| 113 | +\item Deep circuits |
| 114 | +\item Noise |
| 115 | +\item Trotter errors |
| 116 | +\end{itemize} |
| 117 | +\end{frame} |
| 118 | + |
| 119 | +%================================================ |
| 120 | +\section{Analog Quantum Computing} |
| 121 | +%================================================ |
| 122 | + |
| 123 | +\begin{frame}{Analog Model} |
| 124 | +\[ |
| 125 | +|\psi(t)\rangle = e^{-iH_{\text{sim}}t}|\psi(0)\rangle |
| 126 | +\] |
| 127 | +\end{frame} |
| 128 | + |
| 129 | +%------------------------------------------------ |
| 130 | + |
| 131 | +\begin{frame}{Simulation Principle} |
| 132 | +\[ |
| 133 | +H_{\text{sim}} \approx H_{\text{target}} |
| 134 | +\] |
| 135 | +\end{frame} |
| 136 | + |
| 137 | +%------------------------------------------------ |
| 138 | + |
| 139 | +\begin{frame}{Physical Platforms} |
| 140 | +\begin{itemize} |
| 141 | +\item Cold atoms |
| 142 | +\item Trapped ions |
| 143 | +\item Rydberg atoms |
| 144 | +\end{itemize} |
| 145 | +\end{frame} |
| 146 | + |
| 147 | +%------------------------------------------------ |
| 148 | + |
| 149 | +\begin{frame}{Quantum Annealing} |
| 150 | +\[ |
| 151 | +H(t) = (1-s)H_M + sH_C |
| 152 | +\] |
| 153 | +\end{frame} |
| 154 | + |
| 155 | +%------------------------------------------------ |
| 156 | + |
| 157 | +\begin{frame}{Advantages} |
| 158 | +\begin{itemize} |
| 159 | +\item Natural dynamics |
| 160 | +\item Efficient for many-body systems |
| 161 | +\end{itemize} |
| 162 | +\end{frame} |
| 163 | + |
| 164 | +%------------------------------------------------ |
| 165 | + |
| 166 | +\begin{frame}{Limitations} |
| 167 | +\begin{itemize} |
| 168 | +\item Not universal |
| 169 | +\item Limited control |
| 170 | +\end{itemize} |
| 171 | +\end{frame} |
| 172 | + |
| 173 | +%================================================ |
| 174 | +\section{Analog Simulation of Many-Body Models} |
| 175 | +%================================================ |
| 176 | + |
| 177 | +\begin{frame}{Ising Model} |
| 178 | +\[ |
| 179 | +H = -J \sum_{ij} Z_i Z_j - h \sum_i X_i |
| 180 | +\] |
| 181 | +\begin{itemize} |
| 182 | +\item Implemented in trapped ions, Rydberg systems |
| 183 | +\end{itemize} |
| 184 | +\end{frame} |
| 185 | + |
| 186 | +%------------------------------------------------ |
| 187 | + |
| 188 | +\begin{frame}{Hubbard Model} |
| 189 | +\[ |
| 190 | +H = -t \sum_{\langle ij\rangle} c_i^\dagger c_j |
| 191 | ++ U \sum_i n_{i\uparrow} n_{i\downarrow} |
| 192 | +\] |
| 193 | +\begin{itemize} |
| 194 | +\item Realized in optical lattices |
| 195 | +\end{itemize} |
| 196 | +\end{frame} |
| 197 | + |
| 198 | +%------------------------------------------------ |
| 199 | + |
| 200 | +\begin{frame}{Why Analog is Powerful} |
| 201 | +\begin{itemize} |
| 202 | +\item Direct access to many-body dynamics |
| 203 | +\item No exponential classical cost |
| 204 | +\end{itemize} |
| 205 | +\end{frame} |
| 206 | + |
| 207 | +%================================================ |
| 208 | +\section{Connections to Linear Response and TDHF} |
| 209 | +%================================================ |
| 210 | + |
| 211 | +\begin{frame}{Linear Response Equation} |
| 212 | +\[ |
| 213 | +(\omega I - M)x = b |
| 214 | +\] |
| 215 | +\end{frame} |
| 216 | + |
| 217 | +%------------------------------------------------ |
| 218 | + |
| 219 | +\begin{frame}{TDHF Equation} |
| 220 | +\[ |
| 221 | +i \frac{d\rho}{dt} = [h[\rho],\rho] |
| 222 | +\] |
| 223 | +\end{frame} |
| 224 | + |
| 225 | +%------------------------------------------------ |
| 226 | + |
| 227 | +\begin{frame}{Linearized TDHF} |
| 228 | +\[ |
| 229 | +(\omega I - \mathcal{L})\delta\rho = s |
| 230 | +\] |
| 231 | +\end{frame} |
| 232 | + |
| 233 | +%------------------------------------------------ |
| 234 | + |
| 235 | +\begin{frame}{Connection to HHL} |
| 236 | +\begin{itemize} |
| 237 | +\item Same mathematical structure: |
| 238 | +\[ |
| 239 | +A x = b |
| 240 | +\] |
| 241 | +\item Inverse operator = response function |
| 242 | +\end{itemize} |
| 243 | +\end{frame} |
| 244 | + |
| 245 | +%================================================ |
| 246 | +\section{Variational Algorithms} |
| 247 | +%================================================ |
| 248 | + |
| 249 | +\begin{frame}{Variational Principle} |
| 250 | +\[ |
| 251 | +E = \langle \psi(\theta)|H|\psi(\theta)\rangle |
| 252 | +\] |
| 253 | +\end{frame} |
| 254 | + |
| 255 | +%------------------------------------------------ |
| 256 | + |
| 257 | +\begin{frame}{ADAPT-VQE} |
| 258 | +\begin{itemize} |
| 259 | +\item Adaptive ansatz construction |
| 260 | +\item Gradient selection: |
| 261 | +\[ |
| 262 | +\langle [H,A_k] \rangle |
| 263 | +\] |
| 264 | +\end{itemize} |
| 265 | +\end{frame} |
| 266 | + |
| 267 | +%------------------------------------------------ |
| 268 | + |
| 269 | +\begin{frame}{Connection to Coupled Cluster} |
| 270 | +\begin{itemize} |
| 271 | +\item BCH expansion |
| 272 | +\item Many-body correlations |
| 273 | +\end{itemize} |
| 274 | +\end{frame} |
| 275 | + |
| 276 | +%------------------------------------------------ |
| 277 | + |
| 278 | +\begin{frame}{Variational Dynamics} |
| 279 | +\begin{itemize} |
| 280 | +\item McLachlan principle |
| 281 | +\[ |
| 282 | +\delta \| (i\partial_t - H)|\psi\rangle \| = 0 |
| 283 | +\] |
| 284 | +\end{itemize} |
| 285 | +\end{frame} |
| 286 | + |
| 287 | +%================================================ |
| 288 | +\section{Quantum Control Theory} |
| 289 | +%================================================ |
| 290 | + |
| 291 | +\begin{frame}{Control Hamiltonian} |
| 292 | +\[ |
| 293 | +H(t) = \sum_k u_k(t) H_k |
| 294 | +\] |
| 295 | +\end{frame} |
| 296 | + |
| 297 | +%------------------------------------------------ |
| 298 | + |
| 299 | +\begin{frame}{Optimal Control} |
| 300 | +\begin{itemize} |
| 301 | +\item Find $u_k(t)$ to achieve target state |
| 302 | +\end{itemize} |
| 303 | +\end{frame} |
| 304 | + |
| 305 | +%------------------------------------------------ |
| 306 | + |
| 307 | +\begin{frame}{Digital vs Analog Control} |
| 308 | +\begin{itemize} |
| 309 | +\item Digital: discrete pulses |
| 310 | +\item Analog: continuous control |
| 311 | +\end{itemize} |
| 312 | +\end{frame} |
| 313 | + |
| 314 | +%------------------------------------------------ |
| 315 | + |
| 316 | +\begin{frame}{QAOA as Control} |
| 317 | +\begin{itemize} |
| 318 | +\item Piecewise constant control protocol |
| 319 | +\end{itemize} |
| 320 | +\end{frame} |
| 321 | + |
| 322 | +%================================================ |
| 323 | +\section{Unified View} |
| 324 | +%================================================ |
| 325 | + |
| 326 | +\begin{frame}{Unified Framework} |
| 327 | +\begin{itemize} |
| 328 | +\item Analog: continuous evolution |
| 329 | +\item Digital: discretized evolution |
| 330 | +\item Variational: optimized evolution |
| 331 | +\end{itemize} |
| 332 | +\end{frame} |
| 333 | + |
| 334 | +%------------------------------------------------ |
| 335 | + |
| 336 | +\begin{frame}{Core Mathematical Object} |
| 337 | +\[ |
| 338 | +e^{-iHt} |
| 339 | +\] |
| 340 | +\begin{itemize} |
| 341 | +\item Everything reduces to controlling this operator |
| 342 | +\end{itemize} |
| 343 | +\end{frame} |
| 344 | + |
| 345 | +%------------------------------------------------ |
| 346 | + |
| 347 | +\begin{frame}{Conceptual Chain} |
| 348 | +\begin{itemize} |
| 349 | +\item Analog simulation → real dynamics |
| 350 | +\item Digital circuits → approximated dynamics |
| 351 | +\item Variational methods → optimized dynamics |
| 352 | +\end{itemize} |
| 353 | +\end{frame} |
| 354 | + |
| 355 | +%================================================ |
| 356 | +\section{Outlook} |
| 357 | +%================================================ |
| 358 | + |
| 359 | +\begin{frame}{Future Directions} |
| 360 | +\begin{itemize} |
| 361 | +\item Hybrid analog-digital systems |
| 362 | +\item Quantum simulation of materials |
| 363 | +\item Quantum-enhanced many-body theory |
| 364 | +\end{itemize} |
| 365 | +\end{frame} |
| 366 | + |
| 367 | +%------------------------------------------------ |
| 368 | + |
| 369 | +\begin{frame}{Summary} |
| 370 | +\begin{itemize} |
| 371 | +\item Digital: universal and programmable |
| 372 | +\item Analog: efficient and physics-driven |
| 373 | +\item Variational: bridge between both |
| 374 | +\end{itemize} |
| 375 | +\end{frame} |
| 376 | + |
| 377 | +\end{document} |
0 commit comments