Skip to main content

Questions tagged [grovers-algorithm]

Grover's search algorithm is an algorithm that can perform a search in the order of square root of the input size. This is a provable speed up over the best classical algorithm, which requires a time of order N to perform a search.

1 vote
1 answer
78 views

Recently, I have watched video on 3Blue1Brown about Grover's algorithm. He give an example that: To find a secret number in the range from 0 to n−1, you can query a hidden function that returns “true”...
Henry Tom's user avatar
3 votes
0 answers
62 views

Recently, I've been looking at the Quantum Counting Algorithm, derived from Grover's algorithm in (https://arxiv.org/pdf/quant-ph/9605034). Background: I got especially interested in, if the prime ...
Ramezzez's user avatar
  • 366
3 votes
2 answers
278 views

I was reading the fantastic paper "Grover’s algorithm is an approximation of imaginary-time evolution" (https://arxiv.org/abs/2507.15065) and there's a step in their proof that I can't ...
Arnaud Lamy's user avatar
2 votes
1 answer
145 views

I am learning Grover by reading the lecture notes https://www.cs.cmu.edu/~odonnell/quantum15/lecture04.pdf It assumes the availability of an oracle gate $O_f$ that provides the following output: $$ - \...
user2448054's user avatar
0 votes
1 answer
100 views

I am trying to solve the boolean problem (x1 or x2) and (~x1 or ~x2 or x3) using Grover's algorithm. The only measured bits are q0, q1, and q2. This is my oracle: ...
Perry500's user avatar
2 votes
1 answer
105 views

I've been trying around different things with Grover's algorithm, and would want to experiment a practical scenario with it by building an oracle to find an 8-bit key. Very shortly explained, my ...
Aleksi Talman's user avatar
0 votes
0 answers
62 views

I have a list of strategies each with a corresponding score, I want my oracle to apply the phase shift on the strategy with the largest score value. Without knowing the values beforehand how would I ...
James Garcia's user avatar
0 votes
1 answer
181 views

Hey guys I need some help figuring out why this code will not return the correct keyed result Basically it is Gorver's Algorithm that is protected by Shor's error correction but when run '000' always ...
Garrett's user avatar
3 votes
1 answer
134 views

After reading document https://link.springer.com/chapter/10.1007/978-3-319-11857-4_41, I have been curious about the mathematical expression of the phase detection operator. I searched for articles ...
Ren-Xin Zhao's user avatar
1 vote
1 answer
134 views

Nearly every time I've read about Grover's algorithm, there is an introduction to the equivalent classical algorithm. It goes something like this: You're searching for a hidden integer that only a ...
tau's user avatar
  • 113
1 vote
2 answers
128 views

Given two separate states, I'd like to entangle them to a specific configuration. Example 1: $$|+\rangle \otimes |+\rangle \rightarrow \frac{1}{\sqrt{2}}(|00\rangle + |11\rangle)$$ Example 2: $$(a_1|0\...
Daniele Cuomo's user avatar
3 votes
1 answer
457 views

I am learning quantum computing as a beginner and have a question about the Grover’s algorithm (perhaps a naive question). I understand that the key of the Grover’s algorithm is to iteratively use a ...
tankgong's user avatar
3 votes
2 answers
954 views

I am trying to understand Grover's algorithm without much of a background in quantum. I believe I understood the main parts to be: The quantum state is initialized to represent all $n$ possible ...
J. Schmidt's user avatar
-2 votes
1 answer
251 views

If I know what oracle to implement, I know what is the state that I am searching for, so why should I use this algorithm? I mean, if my quantum control system knows how to implement the oracle, it ...
Yaniv Kurman's user avatar
0 votes
1 answer
181 views

I am building a n-qubit circuit for Grover's algorithm using the material on Qiskit Github as a guide. https://github.com/Qiskit/textbook/blob/main/notebooks/ch-algorithms/grover.ipynb In particular I ...
eddie felson's user avatar

15 30 50 per page
1
2 3 4 5
29