Presentation is loading. Please wait.

Presentation is loading. Please wait.

P vs. NP, AKS, RSA: The Acronyms of Mathematics Awareness Month Emily List Wittenberg University s07.elist@wittenberg.edu Thank you for the introduction.

Similar presentations


Presentation on theme: "P vs. NP, AKS, RSA: The Acronyms of Mathematics Awareness Month Emily List Wittenberg University s07.elist@wittenberg.edu Thank you for the introduction."— Presentation transcript:

1 P vs. NP, AKS, RSA: The Acronyms of Mathematics Awareness Month Emily List Wittenberg University Thank you for the introduction and thank you for the University of Akron and the section meeting for giving me the opportunity to speak.

2 April 2006: Mathematics Awareness Month “Mathematics and Internet Security”
Every April since 1986 the Joint Policy Board of Mathematics has sponsored mathematics awareness month. This year the theme is “Mathematics and Internet Security” To address this topic I will be speaking specifically on the P vs NP problem and how it relates to the RSA cryptosystem. The RSA cryptosystem is the system that allows us to send credit card numbers and other sensitive information across the internet securely. First we will begin by defining what p and np problems are.

3 Definitions P: yes or no decision problems that can be solved by an algorithm that runs in polynomial time. Polynomial time: the number of steps needed to solve a problem can be expressed as a function Where x is the size of the input and n is a constant. Example of a P problem: adding two n digit numbers together…it only takes n steps. These algorithms are said to be feasible. There is a qualitative difference between polynomial time and superpolynomail time (anything that is larger than polynomial time) Mathematicians and Computer scientists are always looking for algorithms that run in polynomial time for problems we don’t have one for yet.

4 What’s so great about polynomial time?
Running time of algorithm t(n) Maximum size solvable in 1 second n N0=100 million 100 N0 1000 N0 100n N1=1 million 100 N1 1000 N1 n2 N2=10,000 10 N2 31.6 N2 n3 N3=464 4.64 N3 10 N3 2n N4=26 N4+6.64 N4+9.97 Current computer 100 times faster 1000 times faster This table shows the qualitative difference between polynomial and superpolynomial time. Talk about the first column and how it relates to the second column. And then how the third and the fourth really show the most dramatic difference: when computers get faster polynomial running time increases by a factor, while super polynomial time only increases by an additive constant. Ramachandran, Vijaya. P versus NP

5 Definitions Continued
NP: a problem that can be verified using an algorithm that runs in polynomial time IMPORTANT: This does not mean “not polynomial time” -All P problems are NP -example of a problem that is NP but not known to be P: factoring a large number. If we have the factors it’s easy to verify that they are factors, but it is sometimes hard to find those factors. Easy way to think about it: jigsaw puzzle, minesweeper game It’s also important to note that these are by no means the “hardest” of all problems, there are other types of problems that cannot be talked about in this way that are harder.

6 What would a solution to P = NP? look like?
or The big question is: Is P = NP? These are what the two solutions to that question would look like. NP P

7 Why is P vs NP important? Clay Mathematics Institute: $1,000,000 prize
Internet security implications Public Key Encryption Whitfield Diffie and Martin Hellman, 1976 Whitfiled Diffie and Martin Hellman— RSA public-key cryptosystem Ronald Rivest, Adi Shamir, and Leonard Aldeman, 1977

8 RSA Encryption Uses a function that is NP but not known to be P to encrypt information. Fermat’s Little Theorem: Let a and p be integers such that p is prime and gcd(a, p) =1, then

9 Theorem: If m is an integer, n = pq, p and q are primes, and ef 1 mod ((p-1)(q-1)), then (me)f (mod n) m. Proof.

10 Theorem: If m is an integer, n = pq, p and q are primes, and ef 1 mod ((p-1)(q-1)), then (me)f (mod n) m. Proof. ef = (p-1)(q-1)k + 1 By substitution, (me)f = m(p-1)(q-1)k+1 = m(p-1)(q-1)km.

11 Theorem: If m is an integer, n = pq, p and q are primes, and ef 1 mod ((p-1)(q-1)), then (me)f (mod n) m. Proof. ef = (p-1)(q-1)k + 1 By substitution, (me)f = m(p-1)(q-1)k+1 = m(p-1)(q-1)km. Then by Fermat’s little theorem: (m(p-1))(q-1)k 1 (me)f m(p-1)(q-1)km m (mod p)

12 Theorem: If m is an integer, n = pq, p and q are primes, and ef 1 mod ((p-1)(q-1)), then (me)f (mod n) m. Proof. ef = (p-1)(q-1)k + 1 By substitution, (me)f = m(p-1)(q-1)k+1 = m(p-1)(q-1)km. Then by Fermat’s little theorem: (m(p-1))(q-1)k 1 (me)f m(p-1)(q-1)km m (mod p) Similarly, (me)f m(p-1)(q-1)km m (mod q).

13 Theorem: If m is an integer, n = pq, p and q are primes, and ef 1 mod ((p-1)(q-1)), then (me)f (mod n) m. Proof. ef = (p-1)(q-1)k + 1 By substitution, (me)f = m(p-1)(q-1)k+1 = m(p-1)(q-1)km. Then by Fermat’s little theorem: (m(p-1))(q-1)k 1 (me)f m(p-1)(q-1)km m (mod p) Similarly, (me)f m(p-1)(q-1)km m (mod q). Therefore, by the Chinese Remainder Theorem we have (me)f (mod n) m.

14 RSA Example We want to encrypt the number 17:
Necessary Information Where is comes from What it is for this example p,q prime p=67 q=89 n pq 5963 Φ(n) Number of integers less than n that are relatively prime to n . (p-1)(q-1) 5808 e,f e,f >1 such that e = 37 f = 157 We want to encrypt the number 17: xe(mod n) (mod 5963) To decrypt: 5064f (mod 5963)

15 Why is RSA secure? It’s nearly impossible to find f without the factors of n. Since we do not have an algorithm that runs in polynomial time to find factorizations, finding the factors n is nearly impossible. Figure out what to put on this slide.

16 Is this number prime, if so what are it’s factors?

17 Sieve of Eratosthenes

18 Sieve of Eratosthenes

19 Sieve of Eratosthenes

20 Sieve of Eratosthenes

21 Does the Sieve of Eratosthenes run in polynomial time?
Why not? For a number with N digits, the number of steps the sieve needs is [10N]1/2 which is exponential. Figure out what sieve isn’t P so I can explain it better.

22 “Primes” is in P In 2002, Manindra Agrawal, Neeraj Kayal and Nitin Saxena came up with an algorithm that runs in polynomial and give the primality of a number. “This algorithm is beautiful” Carl Pomerance “The proof is simple, elegant and beautiful” R. Balasubramanian Practice pronouncing names!!, uses “relatively” simple math—it doesn’t use the eliptic curves that people were thinking was necessary.

23 AKS Algorithm From “PRIMES is in P”
This algorithm DOES NOT attempt to factor the number n at all, this is different from many of the other previous attempts. From “PRIMES is in P”

24 Explanation of AKS Lemma 2.1 Let a be an integer, n is a natural number, n > 2 and gcd(a,n)=1. Then n is prime iff (X+ a)n Xn +a(mod n). Proof. By the binomial theorem: the coefficient of xi in ((X+a)n –(Xn +a) is an-i .

25 Explanation of AKS Lemma 2.1 Let a be an integer, n is a natural number, n > 2 and gcd(a,n)=1. Then n is prime iff (X+ a)n Xn +a(mod n). Proof. By the binomial theorem: the coefficient of xi in ((X+a)n –(Xn +a) is an-i . Suppose n is prime. Then (mod n) and hence all of the coefficients are zero.

26 Explanation of AKS Lemma 2.1 Let a be an integer, n is a natural number, n > 2 and gcd(a,n)=1. Then n is prime iff (X+ a)n Xn +a(mod n). Proof. By the binomial theorem: the coefficient of xi in ((X+a)n –(Xn +a) is an-i . Suppose n is prime. Then (mod n) and hence all of the coefficients are zero. Suppose n is composite. Consider a prime q that is a factor of n and let qk divide n, but qk+1 does not. Then qk does not divide and gcd( an-q, qk) =1 Hence, the coefficient of Xq is not zero (mod n). Therefore (X+a)n Xn +a (mod n).

27 Does AKS ruin RSA? Why not? NO!!
AKS does not factor a number, it only tells us if it is prime or not. RSA is secure as long as we don’t have an algorithm that can factor in polynomial time.

28 Acknowledgements Manindra Agrawal, Neeraj Kayal, and Nitin Saxena. PRIMES is in P. ( Februaruy 2003. P vs NP Problem. Clay Mathematics Institute, ( Ramachandran, Vijaya. P versus NP. University of Texas Lectures on the Millennium Prize Problems, May ( Stewart, Ian. Ian Stewart on Minesweeper. Clay Mathematics Institute, ( Kaliski, Burt. The Mathematics of the RSA Public-Key Cryptosystem. RSA Laboratories. Polynomial time. Wikipedia, ( _time)


Download ppt "P vs. NP, AKS, RSA: The Acronyms of Mathematics Awareness Month Emily List Wittenberg University s07.elist@wittenberg.edu Thank you for the introduction."

Similar presentations


Ads by Google