![]() | ||
Grover's algorithm is a quantum algorithm that finds with high probability the unique input to a black box function that produces a particular output value, using just
Contents
- Applications
- Setup
- Algorithm steps
- The first iteration
- Description of U
- Geometric proof of correctness
- Algebraic proof of correctness
- Extension to space with multiple targets
- Quantum partial search
- Optimality
- Applicability and limitations
- References
The analogous problem in classical computation cannot be solved in fewer than
Unlike other quantum algorithms, which may provide exponential speedup over their classical counterparts, Grover's algorithm provides only a quadratic speedup. However, even quadratic speedup is considerable when
Like many quantum algorithms, Grover's algorithm is probabilistic in the sense that it gives the correct answer with a probability of less than 1. Though there is technically no upper bound on the number of repetitions that might be needed before the correct answer is obtained, the expected number of repetitions is a constant factor that does not grow with
Grover's original paper described the algorithm as a database search algorithm, and this description is still common. The database in this analogy is a table of all of the function's outputs, indexed by the corresponding input.
Applications
Although the purpose of Grover's algorithm is usually described as "searching a database", it may be more accurate to describe it as "inverting a function". Roughly speaking, if we have a function
Grover's algorithm can also be used for estimating the mean and median of a set of numbers, and for solving the collision problem. The algorithm can be further optimized if there is more than one matching entry and the number of matches is known beforehand. Grover's algorithm can be used to crack passwords as well.
Setup
Consider an unsorted database with N entries. The algorithm requires an N-dimensional state space H, which can be supplied by n = log2 N qubits. Consider the problem of determining the index of the database entry that satisfies some search criterion. Let f be the function that maps database entries to 0 or 1, where f(x) = 1 if and only if x satisfies the search criterion (x = ω). We are provided with (quantum black box) access to a subroutine in the form of a unitary operator Uω that acts as follows:
An alternative definition of Uω may be encountered assuming the presence of an ancillary qubit system (like in the quantum circuit depicted below). The operation then represents a conditional inversion (NOT gate) conditioned by the value of f(x) on the main system:
or briefly,
This is a natural way to realize a binary operation using the method of uncomputation. Note that if the ancillary qubit is prepared in the state
In either setting, our goal is to identify the index
Algorithm steps
The steps of Grover's algorithm are given as follows. Let
Then the operator
is known as the Grover diffusion operator.
Here is the algorithm:
- Initialize the system to the state
| s ⟩ = 1 N ∑ x = 0 N − 1 | x ⟩ . - Perform the following "Grover iteration" r(N) times. The function r(N), which is asymptotically O(N1/2), is described below.
- Apply the operator
U ω - Apply the operator
U s
- Apply the operator
- Perform the measurement Ω. The measurement result will be eigenvalue λω with probability approaching 1 for N ≫ 1. From λω, ω may be obtained.
The first iteration
A preliminary observation, in parallel with our definition
is that
To prove this it suffices to check how
The following computations show what happens in the first iteration:
It is worth noting the special case of N = 4 with a single marked state. This has
After application of the operators
Description of Uω
Grover's algorithm requires a "quantum oracle" operator
where
As usual,
We regard
Geometric proof of correctness
Consider the plane spanned by
In geometric terms, the angle
The operator
We need to stop when the state vector passes close to
where r is the (integer) number of Grover iterations. The earliest time that we get a near-optimal measurement is therefore
Algebraic proof of correctness
To complete the algebraic analysis, we need to find out what happens when we repeatedly apply
So in the basis
This matrix happens to have a very convenient Jordan form. If we define
It follows that r-th power of the matrix (corresponding to r iterations) is
Using this form, we can use trigonometric identities to compute the probability of observing ω after r iterations mentioned in the previous section,
Alternatively, one might reasonably imagine that a near-optimal time to distinguish would be when the angles 2rt and −2rt are as far apart as possible, which corresponds to
A short calculation now shows that the observation yields the correct answer ω with error O(1/N).
Extension to space with multiple targets
If, instead of 1 matching entry, there are k matching entries, the same algorithm works, but the number of iterations must be π(N/k)1/2/4 instead of πN1/2/4. There are several ways to handle the case if k is unknown. For example, one could run Grover's algorithm several times, with
iterations. For any k, one of the iterations will find a matching entry with a sufficiently high probability. The total number of iterations is at most
which is still O(N1/2). It can be shown that this can be improved. If the number of marked items is k, where k is unknown, there is an algorithm that finds the solution in
Quantum partial search
A modification of Grover's algorithm called quantum partial search was described by Grover and Radhakrishnan in 2004. In partial search, one is not interested in finding the exact address of the target item, only the first few digits of the address. Equivalently, we can think of "chunking" the search space into blocks, and then asking "in which block is the target item?". In many applications, such a search yields enough information if the target address contains the information wanted. For instance, to use the example given by L. K. Grover, if one has a list of students organized by class rank, we may only be interested in whether a student is in the lower 25%, 25–50%, 50–75% or 75–100% percentile.
To describe partial search, we consider a database separated into
Grover's algorithm requires
The global Grover operator acts on the blocks. Essentially, it is given as follows:
- Perform
j 1 - Perform
j 2 - Perform one standard Grover iteration.
The optimal values of
Optimality
It is known that Grover's algorithm is optimal. That is, any algorithm that accesses the database only by using the operator Uω must apply Uω at least as many times as Grover's algorithm. This result is important in understanding the limits of quantum computation.
If the Grover's search problem was solvable with logc N applications of Uω, that would imply that NP is contained in BQP, by transforming problems in NP into Grover-type search problems. The optimality of Grover's algorithm suggests (but does not prove) that NP is not contained in BQP.
The number of iterations for k matching entries, π(N/k)1/2/4, is also optimal.
Applicability and limitations
When applications of Grover's algorithm are considered, it should be emphasized that the database is not represented explicitly. Instead, an oracle is invoked to evaluate an item by its index. Reading a full data-base item by item and converting it into such a representation may take a lot longer than Grover's search. To account for such effects, Grover's algorithm can be viewed as solving an equation or satisfying a constraint. In such applications, the oracle is a way to check the constraint and is not related to the search algorithm. This separation usually prevents algorithmic optimizations, whereas conventional search algorithms often rely on such optimizations and avoid exhaustive search. These and other considerations about using Grover's algorithm are discussed in a paper by Viamontes, Markov and Hayes.