Page 1 of 8

MATH 3336 - Discrete Primes and Greatest Common (4.3)

Definition: A positive � greater than 1 is called prime if the only positive factors of � are 1 and � A positive integer that is greater than 1 and is not prime is called composite

Ne An integer is a composite if and only if there exists an integer � such that �|� and 1 � �

Eae The integer is prime because its only positive factors are and but is composite because it is divisible by and

The Fdaea Thee f Ahec Every positive integer greater than can be written uniquely as a prime or as the product of two or more primes where the prime factors are written in of nondecreasing size Eae a. 50 2 ⋅ 52 b. 121 112 c. 256 28

Theorem: If � is a composite integer, then � has a prime less than or equal to √�. Proof:

© 2020, I. Perepelitsa

Page 2 of 8

Example (trial ): Show that 97 is prime.

Because every integer has a prime , it would be helpful to have a procedure for finding this prime factorization. Example: Find the prime factorization of 143.

Theorem: There are infinitely many primes. Proof:

© 2020, I. Perepelitsa

Page 3 of 8

The Siee of Eratosthenes can be used to find all primes not exceeding a specified positive integer For example begin with the list of between and a. Delete all the integers other than divisible by b. Delete all the integers other than divisible by c. Next delete all the integers other than divisible by d. Next delete all the integers other than divisible by e. Since all the remaining integers are not divisible by any of the previous integers other than the primes are 2,3,5,7,11,15,1719,23,29,31,37,41,43,47,53, 59,61,67,71,73,79,83,89, 97

Mersenne primes (French monk Marin Mersenne):2� 1 22 1 3 23 1 7 25 1 31 etc. 211 1 2047 23 ⋅ 89 277,232,917 1

© 2020, I. Perepelitsa

Page 4 of 8

Conjectures and open problems about primes. Example: �� �2 � + 41 �1 41, �2 43, �3 47, �4 53

Is �� prime for all positive integers �? Fact: For every polynomial with integer coefficients, there is a positive integer � such that �� is composite.

Gdbach Cece Every even integer �, � 2, is the sum of two primes. 4 6 8 10 12

The conjecture has been checked for all positive even integers up to 4 ⋅ 1018, BUT there is NO proof.

There are many conjectures asserting that there are infinitely many primes of certain special forms.

The Twin Prime Conjecture: There are infinitely many twin primes. Twin primes are a pair of primes that differ by 2: 3 & 5, 11 & 13, 5 & 7, 17 & 19, 4967 & 4969

Greatest Common Divisors and Least Common Multiples Definition: Let � and � be integers, not both zero. The largest integer � such that �|� and �|� is called the greatest common divisor of � and �. Notation: ����, �

© 2020, I. Perepelitsa

Page 5 of 8

One way to find the greatest common divisor is to find all positive common divisors of both integers and then take the largest divisor.

Example: What is the greatest common divisor of 12 and 24?

Divisors of 12: 1, 2, 3, 4, 6, 12

Divisors of 24: 1, 2, 3, 4, 6, 8, 12, 24

Hence gcd12, 24

Definition: The integers � and � are relatively prime if their greatest common divisor is 1. Example: 11 and 25 are relatively prime since gcd11, 25 1.

Definition: The integers �1, �2, … , �� are pairwise relatively prime if gcd��, �� 1, whenever 1 � � �.

Example: Determine whether the integers in each of these sets are pairwise relatively prime. a. 21, 34, and 55 b. 14, 17, 85 gcd21, 34 gcd14, 17 gcd21, 55 gcd14, 85 gcd34, 55 gcd17, 85

© 2020, I. Perepelitsa

Page 6 of 8

Another way to find the greatest common divisor of two integers is to use their prime factorization.

�1 �2 �� �1 �2 �� Let � �1 ⋅ �2 ⋅ … ⋅ �� and � �1 ⋅ �2 ⋅ … ⋅ �� .

m �1,�1 m�2,�2 m ��,�� Then gcd�, � �1 ⋅ �2 ⋅ … ⋅ ��

Example: Find the greatest common divisor of 120 23 ⋅ 3 ⋅ 5 and 500 22 ⋅ 53.

Prime factorization can also be used to find the of two . Definition: The least common multiple of the positive integers � and � is the smallest positive integer that is divisible by both � and �. Notation: ����, �

�1 �2 �� �1 �2 �� Let � �1 ⋅ �2 ⋅ … ⋅ �� and � �1 ⋅ �2 ⋅ … ⋅ �� .

m �1,�1 m�2,�2 m ��,�� Then lcm�, � �1 ⋅ �2 ⋅ … ⋅ ��

Example: Find the least common multiple of 120 23 ⋅ 3 ⋅ 5 and 500 22 ⋅ 53

Theorem: Let � and � be positive integers. Then �� gcd �, � ⋅ lcm�, �

© 2020, I. Perepelitsa

Page 7 of 8

Finding the gcd of two positive integers using their prime is not efficient because there is no efficient for finding the prime factorization of a positive integer

Euclidean Algorithm The algorithm is based on the following lemma Lemma: Let � �� + �, where �, �, �, and � are integers. Then gcd�, � gcd �, �.

The algorithm can be written as a sequence of equations. Let �0 � and �1 �.

�0 �1�1 + �2 0 �2 �1

�1 �2�2 + �3 0 �3 �2 . . .

��−2 ��−1��−1 + �� 0 �� ��−1

��−1 ���� If � is smaller than �, the first step of the algorithm swaps the numbers. The remainders decrease with every step but can never be negative. A remainder �� must eventually equal zero. Then the algorithm stops. gcd�, � gcd�0, �1 gcd�1, �2 ⋯ gcd��−1, �� gcd ��, 0

Example: Find the greatest common divisor of 91 and 287.

© 2020, I. Perepelitsa

Page 8 of 8 gcd as a Linear Combinations Be Thee If � and � are positive integers, then there exists integers � and � such that gcd�, � �� + ��

Example: Express gcd(252, 198) =18 as a linear combination of 252 and 198.

© 2020, I. Perepelitsa