Harman Patil (Editor)

Quantum algorithm for linear systems of equations

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

The quantum algorithm for linear systems of equations, designed by Aram Harrow, Avinatan Hassidim, and Seth Lloyd, is a quantum algorithm for solving linear systems formulated in 2009. The algorithm estimates the result of a scalar measurement on the solution vector to a given linear system of equations.

Contents

The algorithm is one of the main fundamental algorithms expected to provide a speedup over their classical counterparts, along with Shor's factoring algorithm, Grover's search algorithm and quantum simulation. Provided the linear system is a sparse and has a low condition number κ , and that the user is interested in the result of a scalar measurement on the solution vector, instead of the values of the solution vector itself, then the algorithm has a runtime of O ( log ( N ) κ 2 ) , where N is the number of variables in the linear system. This offers an exponential speedup over the fastest classical algorithm, which runs in O ( N κ ) (or O ( N κ ) for positive semidefinite matrices).

An implementation of the quantum algorithm for linear systems of equations was first demonstrated in 2013 by Cai et al., Barz et al.and Pan et al. in parallel. The demonstrations consisted of simple linear equations on specially designed quantum devices.

Due to the prevalence of linear systems in virtually all areas of science and engineering, the quantum algorithm for linear systems of equations has the potential for widespread applicability.

Procedure

The problem we are trying to solve is: given a Hermitian N × N matrix A and a unit vector b , find the solution vector x satisfying A x = b . This algorithm assumes that the user is not interested in the values of x itself, but rather the result of applying some operator M onto x, x | M | x .

First, the algorithm represents the vector b as a quantum state of the form:

| b = i = 1 N b i | i .

Next, Hamiltonian simulation techniques are used to apply the unitary operator e i A t to | b for a superposition of different times t . The ability to decompose | b into the eigenbasis of A and to find the corresponding eigenvalues λ j is facilitated by the use of quantum phase estimation.

The state of the system after this decomposition is approximately:

j = 1 N β j | u j | λ j ,

where u j is the eigenvector basis of A , and | b = j = 1 N β j | u j .

We would then like to perform the linear map taking | λ j to C λ j 1 | λ j , where C is a normalizing constant. The linear mapping operation is not unitary and thus will require a number of repetitions as it has some probability of failing. After it succeeds, we uncompute the | λ j register and are left with a state proportional to:

i = 1 N β i λ j 1 | u j = A 1 | b = | x ,

Where | x is a quantum-mechanical representation of the desired solution vector x. To read out all components of x would require the procedure be repeated at least N times. However, it is often the case that one is not interested in x itself, but rather some expectation value of a linear operator M acting on x. By mapping M to a quantum-mechanical operator and performing the quantum measurement corresponding to M, we obtain an estimate of the expectation value x | M | x . This allows for a wide variety of features of the vector x to be extracted including normalization, weights in different parts of the state space, and moments without actually computing all the values of the solution vector x.

Initialization

Firstly, the algorithm requires that the matrix A be Hermitian so that it can be converted into a unitary operator. In the case where A is not Hermitian, define

C = [ 0 A A t 0 ] .

As C is Hermitian, the algorithm can now be used to solve C y = [ b 0 ] . to obtain y = [ 0 x ] .

Secondly, The algorithm requires an efficient procedure to prepare | b , the quantum representation of b. It is assumed that there exists some linear operator B that can take some arbitrary quantum state | i n i t i a l to | b efficiently or that this algorithm is a subroutine in a larger algorithm and is given | b as input. Any error in the preparation of state | b is ignored.

Finally, the algorithm assumes that the state | ψ 0 can be prepared efficiently. Where

| ψ 0 := 2 / T τ = 0 T 1 sin π ( τ + 1 2 T ) | τ

for some large T . The coefficients of | ψ 0 are chosen to minimize a certain quadratic loss function which induces error in the U i n v e r t subroutine described below.

Hamiltonian simulation

Hamiltonian simulation is used to transform the Hermitian matrix A into a unitary operator, which can then be applied at will. This is possible if A is s-sparse and efficiently row computable, meaning it has at most s nonzero entries per row and given a row index these entries can be computed in time O(s). Under these assumptions, quantum Hamiltonian simulation allows e i A t to be simulated in time O ( log ( N ) s 2 t ) .

U i n v e r t {displaystyle U_{mathrm {invert} }} subroutine

The key subroutine to the algorithm, denoted U i n v e r t , is defined as follows and incorporates a phase estimation subroutine:

1. Prepare | ψ 0 C on register C

2. Apply the conditional Hamiltonian evolution (sum)

3. Apply the Fourier transform to the register C. Denote the resulting basis states with | k for k = 0, ..., T − 1. Define λ k := 2 π k / t 0 .

4. Adjoin a three-dimensional register S in the state

| h ( λ k ) S := 1 f ( λ k ) 2 g ( λ k ) 2 | n o t h i n g S + f ( λ k ) | w e l l S + g ( λ k ) | i l l S ,

5. Reverse steps 1–3, uncomputing any garbage produced along the way.

The phase estimation procedure in steps 1-3 allows for the estimation of eigenvalues of A up to error ϵ .

The ancilla register in step 4 is necessary to construct a final state with inverted eigenvalues corresponding to the diagonalized inverse of A. In this register, the functions f, g, are called filter functions. The states 'nothing', 'well' and 'ill' are used to instruct the loop body on how to proceed; 'nothing' indicates that the desired matrix inversion has not yet taken place, 'well' indicates that the inversion has taken place and the loop should halt, and 'ill' indicates that part of | b is in the ill-conditioned subspace of A and the algorithm will not be able to produce the desired inversion. Producing a state proportional to the inverse of A requires 'well' to be measured, after which the overall state of the system collapses to the desired state by the extended Born rule.

Main loop

The body of the algorithm follows the amplitude amplification procedure: starting with U i n v e r t B | i n i t i a l , the following operation is repeatedly applied:

U i n v e r t B R i n i t B U i n v e r t R s u c c

where

R s u c c = I 2 2 | w e l l w e l l | 2 ,

and

R i n i t = I 2 2 | i n i t i a l i n i t i a l | .

After each repetition, S is measured and will produce a value of 'nothing', 'well', or 'ill' as described above. This loop is repeated until S is measured, which occurs with a probability p . Rather than repeating 1 p times to minimize error, amplitude amplification is used to achieve the same error resilience using only O ( 1 p ) repetitions.

Scalar measurement

After successfully measuring 'well' on S the system will be in a state proportional to:

i = 1 N β i λ j 1 | u j = A 1 | b = | x .

Finally, we perform the quantum-mechanical operator corresponding to M and obtain an estimate of the value of x | M | x .

Classical efficiency

The best classical algorithm which produces the actual solution vector x is Gaussian elimination, which runs in O ( N 3 ) time.

If A is s-sparse and positive semi-definite, then the Conjugate Gradient method can be used to find the solution vector x can be found in O ( N s κ ) time by minimizing the quadratic function | A x b | 2 .

When only a summary statistic of the solution vector x is needed, as is the case for the quantum algorithm for linear systems of equations, a classical computer can find an estimate of x M x in O ( N κ ) .

Quantum efficiency

The quantum algorithm for solving linear systems of equations originally proposed by Harrow et al. was shown to be O ( κ 2 log N ) . The runtime of this algorithm was subsequently improved to O ( κ log 3 κ log N ) by Andris Ambainis.

Optimality

An important factor in the performance of the matrix inversion algorithm is the condition number of A κ , which represents the ratio of A 's largest and smallest eigenvalues. As the condition number increases, the ease with which the solution vector can be found using gradient descent methods such as the conjugate gradient method decreases, as A becomes closer to a matrix which cannot be inverted and the solution vector becomes less stable. This algorithm assumes that all elements of the matrix A lie between 1 κ and 1, in which case the claimed run-time proportional to κ 2 will be achieved. Therefore, the speedup over classical algorithms is increased further when κ is a p o l y ( log ( N ) ) .

If the run-time of the algorithm were made poly-logarithmic in κ then problems solvable on n qubits could be solved in poly(n) time, causing the complexity class BQP to be equal to PSPACE.

Error analysis

Performing the Hamiltonian simulation, which is the dominant source of error, is done by simulating e i A t . Assuming that A is s-sparse, this can be done with an error bounded by a constant ε , which will translate to the additive error achieved in the output state | x .

The phase estimation step errs by O ( 1 t 0 ) in estimating λ , which translates into a relative error of O ( 1 λ t 0 ) in λ 1 . If λ 1 / κ , taking t 0 = O ( κ ε ) induces a final error of ε . This requires that the overall run-time efficiency be increased proportional to O ( 1 ε ) to minimize error.

Experimental realization

While there does not yet exist a quantum computer that can truly offer a speedup over a classical computer, implementation of a "proof of concept" remains an important milestone in the development of a new quantum algorithm. Demonstrating the quantum algorithm for linear systems of equations remained a challenge for years after its proposal until 2013 when it was demonstrated by Cai et al., Barz et al. and Pan et al. in parallel.

Cai et al.

Published in Physical Review Letters 110, 230501 (2013), Cai et al. reported an experimental demonstration of the simplest meaningful instance of this algorithm, that is, solving 2*2 linear equations for various input vectors. The quantum circuit is optimized and compiled into a linear optical network with four photonic quantum bits (qubits) and four controlled logic gates, which is used to coherently implement every subroutine for this algorithm. For various input vectors, the quantum computer gives solutions for the linear equations with reasonably high precision, ranging from fidelities of 0.825 to 0.993.

Barz et al.

On February 5, 2013, Barz et al. demonstrated the quantum algorithm for linear systems of equations on a photonic quantum computing architecture. This implementation used two consecutive entangling gates on the same pair of polarization-encoded qubits. Two separately controlled NOT gates were realized where the successful operation of the first was heralded by a measurement of two ancillary photons. Barz et al. found that the fidelity in the obtained output state ranged from 64.7% to 98.1% due to the influence of higher-order emissions from spontaneous parametric down-conversion.

Pan et al.

On February 8, 2013 Pan et al. reported a proof-of-concept experimental demonstration of the quantum algorithm using a 4-qubit nuclear magnetic resonance quantum information processor. The implementation was tested using simple linear systems of only 2 variables. Across three experiments they obtain the solution vector with over 96% fidelity.

Applications

Quantum computers are devices that harness quantum mechanics to perform computations in ways that classical computers cannot. For certain problems, quantum algorithms supply exponential speedups over their classical counterparts, the most famous example being Shor's factoring algorithm. Few such exponential speedups are known, and those that are (such as the use of quantum computers to simulate other quantum systems) have so far found limited use outside the domain of quantum mechanics. This algorithm provides an exponentially faster method of estimating features of the solution of a set of linear equations, which is a problem ubiquitous in science and engineering, both on its own and as a subroutine in more complex problems.

Linear differential equation solving

Dominic Berry proposed a new algorithm for solving linear time dependent differential equations as an extension of the quantum algorithm for solving linear systems of equations. Berry provides an efficient algorithm for solving the full-time evolution under sparse linear differential equations on a quantum computer.

Least-squares fitting

Wiebe et al. provide a new quantum algorithm to determine the quality of a least-squares fit in which a continuous function is used to approximate a set of discrete points by extending the quantum algorithm for linear systems of equations. As the amount of discrete points increases, the time required to produce a least-squares fit using even a quantum computer running a quantum state tomography algorithm becomes very large. Wiebe et al. find that in many cases, their algorithm can efficiently find a concise approximation of the data points, eliminating the need for the higher-complexity tomography algorithm.

Machine learning and big data analysis

Machine learning is the study of systems that can identify trends in data. Tasks in machine learning frequently involve manipulating and classifying a large volume of data in high-dimensional vector spaces. The runtime of classical machine learning algorithms is limited by a polynomial dependence on both the volume of data and the dimensions of the space. Quantum computers are capable of manipulating high-dimensional vectors using tensor product spaces are thus the perfect platform for machine learning algorithms.

The quantum algorithm for linear systems of equations has been applied to a support vector machine, which is an optimized linear or non-linear binary classifier. A support vector machine can be used for supervised machine learning, in which training set of already classified data is available, or unsupervised machine learning, in which all data given to the system is unclassified. Rebentrost et al. show that a quantum support vector machine can be used for big data classification and achieve an exponential speedup over classical computers.

References

Quantum algorithm for linear systems of equations Wikipedia