1 / 9

The Euclidean Algorithm

The Euclidean Algorithm. That’s right, it’s real. Duh it’s real. One of the oldest known algorithms. Used to find the greatest common divisor of two positive integers. The greatest common divisor of a and b is expressed by gcd(a, b). Mini Examples. For example: gcd(12, 18) = 6

Télécharger la présentation

The Euclidean Algorithm

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. The Euclidean Algorithm That’s right, it’s real.

  2. Duh it’s real. • One of the oldest known algorithms. • Used to find the greatest common divisor of two positive integers. • The greatest common divisor of a and b is expressed by gcd(a, b).

  3. Mini Examples • For example: gcd(12, 18) = 6 • And: gcd(420, 66) = 6 • And: ...you get the idea…

  4. In a Nut Shell Blue collar-ly, there’s a looping process going on that ends when the remainder is finally zero. At this point, the greatest common divisor is the last divisor used. This is the part where you do an example on the board, Harold.

  5. How’s it work Take the larger of the two values that you are finding the gcd for. (I assume a>=b). Divide a by b, getting a quotient and a remainder. Next, divide b by the first remainder that you get, and thus a cycle has begun, and can be seen when arrows are drawn in.

  6. And it can get CRAZY

  7. Proving Euclid Wasn’t Nuts Buckle your seatbelts. This could get rough.

  8. Euclidean Alg. Elsewhere • Proving two numbers are relatively prime. • Finding modular inverses to help solve and decrypt the RSA algorithm. (which I will NOT go over for your sanity) • RSA is public key cryptography. Ooooo look more examples!

  9. Homework • Find the gcd(147, 105) • Find the gcd(Birthyear, Birthmonth^2) • Prove that 1193 and 317 are relatively prime. Then, try using Fermat’s Little Theorem to find the value of x in the equation: 317x = 1 mod 1193

More Related