My 2 big math achievements
Two big achievements:
- I solved GLL.
- I showed that you can put NP in BQP.
A note on the second one: You have to get the generator right. It's easy. You look at the value of a, the thing you're taking the sqrt of, and you have to see what prime factors it has in common with the modulus. Then, you take each instance of the prime factor that is in common between those two, and multiply them together. To "stay on the modular rail road track" so to speak, you have to make sure that that product is a divisor of your generator, and, that all other factors of the generator are coprime to the modulus.
That's how you select the generator to solve MSR using a DLP algorithm.
Comments
Post a Comment