You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some evidence or verbal trick to illustrate the potential of quantum applications.
Though in their infancy, the stability of qubits should become much better over time. -- IBM
As IBM’s quantum hardware scales rapidly – from small prototype systems to more promising larger devices – researchers are excited about the possibility to one day handle previously insoluble routing problems.
“A glimpse of the quantum future”
As the hardware matures according to goals laid out in IBM Quantum’s hardware roadmap, the researchers expect to demonstrate a clear advantage over the classical competition.
"To set expectations correctly, so far, no variational quantum algorithm has outperformed classical supercomputers in computational chemistry based on first principles (ab initio). However, recently quantum advantage has been demonstrated on a theoretical sampling task,[4] and an increasing number of academic and industrial works are bringing down the resource requirements, devising better quantum circuit strategies and more efficient optimization protocols. The race is on, and many believe chemistry or materials science applications to be one of the candidates to show early examples of industry relevant quantum advantage on near-term hardware."
Utilize Product Formula To Simulate Time Evolution
According to one of the fundamental axioms of quantum mechanics, the evolution of a system over time can be described by
$$
i\hbar\frac{\delta}{\delta t}|\psi\rangle = H|\psi\rangle
$$
$\hbar$ is the reduced Planck constant. This equation is the well-known Schrödinger equation. Thus, for a time independent Hamiltonian, the time evolution equation of the system can be written as
$$
|\psi(t)\rangle = U(t)|\psi(0)\rangle, U(t) = e^{-iHt}
$$
Here we take the natural unit $\hbar = 1$ and $U(t)$ is the time evolution operator. The idea of simulating the time evolution process with quantum circuits is to approximate this time evolution operator using the unitary transformation constructed by quantum circuits.
Sample Question
For the Hamiltonian $H = I\otimes X + 0.5I\otimes Z - 0.2X\otimes X + 1.2Z\otimes I + 0.5Z\otimes Z$, find a quantum circuit $U$ to simulate $e^{-iH}$ with error tolerance 0.01 (i.e., $||U - e^{-iH}||\leq 0.01$). Moreover, try to use the idea of variational quantum circuit compiling to simplify the circuits.
"It is important to say that, given the classical nature of combinatorial problems, exponential speedup in using quantum computers compared to the best classical algorithms is not guaranteed."
Consists of $n$ bits and $m$ clauses. Each clause ( $C$ ) is a constraints for part of bits. Here $z$ represents the bit series $z_{1} z_{2} \dots z_{n}$
$$
C_j(z) =
\begin{cases}
1 & \text{if clause $j$ is satisfied} \\
0 & \text{if clause $j$ is not satisfied}
\end{cases}
$$
For a graph $G = (V,E)$, we have $n = |V|$ vertexes and $m = |E|$ edges. For each vertex $v$ in $G$, the value $z_v$ is 0 or 1 (0, 1 represent two partitions). For each edge $E = (u,v)$. A "clause" requires that $z_u \neq z_v$, meaning that vertex $v$ and $u$ are divided into different sub-sets. For each edge in the graph we have (XOR):
$$
C_(u,v)(z) = z_u + z_v - 2z_u z_v
$$
Note that only $z_u \neq z_v$ results in 1, otherwise 0.