Abstract Algebra. Ch 0: Preliminaries. Properties of Integers

Size: px
Start display at page:

Download "Abstract Algebra. Ch 0: Preliminaries. Properties of Integers"

Transcription

1 Abstract Algebra Ch 0: Preliminaries Properties of Integers Note: Solutions to many of the examples are found at the end of this booklet, but try working them out for yourself first. 1. Fundamental Theorem of Arithmetic: (Theorem 0.3:) Every integer n > 1 can be written uniquely as a product of increasing primes raised to positive integer powers: i.e., n = p m pr mr where p 1 < p 2 <... < p r are primes, m 1 1, and this is unique. Some questions to think about: Some huge number you factor and I factor - how do you know that we get the same list of factors. Why do we say the prime factors? 2. Well Ordering Principle: Every nonempty set S of positive integers contains a smallest member. Note: Well Ordering Principle can t be proved from usual properties of arithmetic, so taken as an axiom. You might think the Well Ordering Principle is obvious - there is an element s S, so just take everything less than s that is in S and take the smallest element - there are only finitely many, so why would there be a problem? But what if we took Q + (positive rationals) instead of N (natural numbers)? From the point of view of addition and multiplication Q + and N act the same. But Q + doesn t satisfy the Well Ordering Principle: For example, the set S = {1,1/2,1/3,1/4,...} has no smallest member. So the Well Ordering Principle distinguishes between the positive integers and the positive rationals. Some questions to think about: What does it mean to have a smallest element? Why must S be non-empty? Why must the elements of S be positive? Why must the elements of S be integers? The following version of the Well Ordering Principle is often useful: 3. Lemma: Let S be a non-empty set of non-negative integers. Then S has a smallest element. Proof: If 0 S we are done. If not, then use the Well Ordering Principle. 1

2 4. Definition: Let m,n Z,m 0. Then m divides n if n = qm for some integer q. We write m n. We also say that n is a multiple of m or that m is a divisor of n. We write m n if m does not divide n. 5. Definition: A prime is a positive integer which has exactly two distinct natural number divisors. We usually think of this as: A prime is an integer m > 1 which is divisible only by 1 and m. Question: Why isn t 1 a prime? 6. Theorem 0.1: Division Algorithm: Let a, b Z with b > 0. Then there exist unique integers q and r with the property that a = bq + r, where 0 r < b. This is really something that you have been using since about 3rd grade: here r stands for remainde and q stands for quotient. Note that in the division algorithm, the remainder r is smaller than the divisor b. The proof is hard and typical. Idea: subtract multiples of b until a qb is just < b. Note: need to prove both existence and uniqueness. Proof: Existence of q and r: Let S = {a bk : k Z,a bk 0}. If 0 S, then b a so we get the desired result with q = a/b,r = 0. If 0 / S, we first note that S is non-empty: if a > 0, then a b 0 S if a < 0 then a b (2a) = a(1 2b) S since b > 0. Thus we may apply the Well Ordering Principle (actually the Lemma)to conclude that S has a smallest member, say r = a bq. Then a = bq + r and r 0, so all that remains to be proved is that r < b. If r b, then a b(q+1) = a bq b = r b 0, so that a b(q+1) S. But a b(q +1) < a bq and a bq is the smallest member of S. Contradiction! So r < b. Uniqueness of q and r: Suppose there are integers q,q,r,r such that a = bq + r,0 r < b and a = bq + r,0 r < b. Suppose (wlog) that r r. Then bq + r = bq + r and b(q q ) = r r. So b (r r) and 0 r r r < b. Thus r r = 0 and so r = r and q = q. 7. Example: Use the division algorithm on a = 473, b = 2 to find q, r. 2

3 8. Example: Use the division algorithm on a = 591, b = 9 to find q, r. 9. Definition: m is a common divisor of a and b if m a and m b. 10. Example: What are all common divisors of -8 and -12? 11. Definition: The greatest common divisor of two nonzero integers a, b is the largest of all common divisors of a and b. Notation: gcd(a,b). When gcd(a,b) = 1 we say that a and b are relatively prime. (That is, no positive common factor other than 1.) 12. Example: What is gcd( 8, 12)? 13. Example: What is gcd(45, 84)? 14. Example: What is gcd( , )? (OK - so I don t actually expect you to answer this... But this question is to prove to you that the Euclidean algorithm, below, is incredibly useful...) 15. Definition: When a = qb + r where q is the quotient and r is the remainder upon dividing a by b, we write a mod b = r. 16. Lemma: Let a,b N. If a > b then gcd(a,b) = gcd(b,a mod b). Proof: Write a in the form a = qb + r. If c a and c b then c divides b and c divides r = a qb = a mod b. Thus any common divisor of a and b is a common divisor of b and a mod b. Conversely, if c b and c r = a qb = a mod b, then c a = qb + r and c b. So every common divisor of b and r is a common divisor of a and b. In particular, the gcd s have to be the same. (Why? Suppose d = gcd(a,b),d = gcd(b,a mod b). Then d is a common divisor of b,a mod b, so d d. Likewise d d. Thus d = d.) 17. Euclidean algorithm for finding gcd(a,b): Let a,b be positive integers and wlog suppose a > b. Let r 1 = a mod b. If r 1 = 0 then b a so gcd(a,b) = b. If r 1 > 0 then gcd(a,b) = gcd(b,r 1 ) by the lemma. So let r 2 = b mod r 1. If r 2 = 0 then gcd(a,b) = r 1. If r 2 > 0 let r 3 =... The final nonzero remainder r N 1 is the greatest common divisor of a and b. Note: Since the r i s decrease with every step but can never be negative, a remainder r N must eventually equal zero, at which point the algorithm stops. The final nonzero remainder r N 1 is the greatest common divisor of a and b. The number N cannot be 3

4 infinite because there are only a finite number of nonnegative integers between the initial remainder r 1 and zero. 18. Example: Use the Euclidean algorithm to find gcd(22471,3266). 19. Example: Use the Euclidean algorithm to find gcd(243,111). 20. Theorem 0.2: For any nonzero integers a and b, there exist integers s and t such that gcd(a,b) = as + bt. Moreover, gcd(a,b) is the smallest positive integer of the form as + bt. Note: This is an important result! It means that gcd(a,b) is a linear combination of a and b. Proof: Consider the set S = {am + bn : m,n Z,am + bn > 0}. S is nonempty since if some choice of m,n makes am + bn < 0 then replace m,n by m, n. Thus the well ordering principle says that S has a smallest member, say d = as + bt. Claim: d = gcd(a,b). d a: a = dq + r where 0 r < d. We show that r = 0. If r > 0: r = a dq = a (as + bt)q = a asq btq = a(1 sq) + b( tq) S (this is in S because it is of the form as + bt and it is > 0 because it is equal to r > 0.) Thus r S and r < d contradiction. Thus r = 0. d b: similar Thus d is a common divisor of a and b. Now suppose d is another common divisor of a and b and write a = d h,b = d k. Then d = as+bt = (d h)s+(d k)t = d (hs + kt), so d d. Thus among all common divisors of a,b the number d is greatest. 21. Corollary: If a and b are relatively prime, then there exist integers s and t such that as + bt = To find the integers s,t in the previous theorem: Use the Euclidean algorithm (it is convenient to set r 0 = b). Then a = q 1 r 0 + r 1 r 0 = q 2 r 1 + r 2 r n 2 = q n r n 1 + r n r 1 = q 3 r 2 + r 3 r n 1 = q n+1 r n Now start with the next-to-last equation, solve for the remainder in each equation back to the first. Recall that r n is gcd(a,b). 4

5 r n = r n 2 q n r n 1 r 3 = r 1 q 3 r 2 r n 1 = r n 3 q n 1 r n 2 r 2 = r 0 q 2 r 1 r 1 = a q 1 r 0 Now substitute each succeeding equation into the previous. 23. Example: Write gcd(243,111) as a linear combination of 243 and Example: Write gcd(22471,3266) as a linear combination of and Euclid s Lemma: If p is a prime that divides ab then p a or p b. Proof: Suppose p is a prime that divides ab but does not divide a. (WTS p b). Since p a, there are integers s,t such that 1 = as + pt. (Why? Because p s only divisors are 1 and p so a isn t a divisor of p and p isn t a divisor of a...) Then b = abs + ptb and since p divides the right side of this equation, p also divides b. 26. Definition: The least common multiple of two non-zero integers a and b is the smallest positive integer that is a multiple of both a and b. Notation: lcm(a,b). 27. Example: Find lcm(15, 24). 5

6 Ch 0: Preliminaries Modular Arithmetic 1. Recall that when a = qb + r where q is the quotient and r is the remainder upon dividing a by b, we write a mod b = r. 2. Example: Find 7 mod 3, 31 mod 4,25 mod Note: if a,b Z, n Z,n 2, then a mod n = b mod n iff n (a b). (This is exercise 9 on page 22.) 4. Exercise 11 on page 22: If a, b integers, then for addition and multiplication, we can mod first - i.e. (a + b) mod n = (a mod n + b mod n) mod n and (a b) mod n = (a mod n b mod n) mod n. 5. Example: mod 3 can be figured out by 2 2 mod 3 = 1. 6

7 Ch 0: Preliminaries Mathematical Induction 1. Theorem 0.4: First Principle of Mathematical Induction: Let S be a set of integers containing a. Suppose S has the property that whenever some integer n a belongs to S, then the integer n+1 also belongs to S. Then S contains every integer greater than or equal to a. 2. Example: 2 2n is divisible by 3 for all n 1. Proof: Let S = {n : 2 2n is divisible by 3}. 1 S because = 3. Assume n S, to show that n + 1 S: 2 2(n+1) 1 = 2 2n = n = 2 2 (2 2n 1) Example: If a prime p divides a 1... a n then p a i for some i. Proof: Let S = {n 1 : if prime p divides a 1...a n then p divides some a i.}. That 1 S is obvious. If n S, to show n+1 S : If p (a 1... a n+1 ), then p (a 1... a n ) a n+1 so by Euclid s lemma, p (a 1... a n ) or p a n+1. If p a n+1 then done. If not, p (a 1... a n ). But n S so p a i for some i. Either way, p a i for some i. 4. Example: n = n + 1 for all positive integers Proof : Let S = {n : n = n + 1}. If n S, to show n + 1 S: n = n + 1 implies n + 1 = (n + 1) + 1. What is wrong with this proof? 5. Example: Let P(x) = x(x 1)(x 2) (x ). Then P(n) = 0 for all n N. Proof : Let S{n : P(n) = 0}. Then 1 S,2 S,3 S, etc. So all n in S. What is wrong with this proof? 6. Theorem 0.5: Second Principle of Mathematical Induction: Let S be a set of integers containing a. Suppose S has the property that n belongs to S whenever every integer less than n and greater than or equal to a belongs to S. Then S contains every integer greater than or equal to a. 7. Example: Fundamental Theorem of Arithmetic: Every integer n > 1 can be written uniquely as a product of increasing primes raised to positive integer powers: i.e., n = p m p mr r where p 1 < p 2 <... < p r are primes, m 1 1, and this is unique. Proof of Existence: Let S = {n 2 : n factors into a product of primes}. Note 2 S. Now assume that for some integer n, S contains all integers k with 2 k n. WTS n + 1 S. If n + 1 is prime then n + 1 S by definition. If n + 1 is not prime 7

8 then n = a b where 2 a,b < n + 1 so a S and b S and thus both factor as primes and thus n + 1 S. Proof of Uniqueness: Let Ŝ = {n > 2 : n has more than one factorization into powers of primes.} If Ŝ = we are done. So assume Ŝ and take the smallest integer n Ŝ (can do by well ordering principle). Thus n has two factorizations, but no smaller integer has. Thus n = p 1 m1... p s m s = q 1 n1... q t n t,p 1 < p 2 <... < p s,q 1 <... < q t. Now p 1 n so p 1 divides q 1 n1... q t n t so divides one of the q i by example 3 above. But q i is a prime so p 1 equals one of the q i. But the same argument shows q 1 divides one of the p j. Now p 1 = q i q 1 = p j (note: because q i could be q 1, so p 1 p j, so j = 1. Thus q 1 = p 1. Let n = m p 1 so m = p 1 m p s m s = q 1 n q t n t. But m < n so m / Ŝ so s = t and p i = q i,m i = n i. Contradiction. 8

9 Ch 0: Preliminaries Equivalence Relations 1. Definition: A relation R on a set S is a true statement about ordered pairs of elements of S. (This is an informal definition.) 2. Example: S= set of all people, relation is child of. Then (a,b) R means a is a child of b. 3. Example: S = R, (a,b) R means a b Definition: An equivalence relation is a relation R on a set S such that the following three properties hold: (a) reflexive: (a,a) R for all a S. (b) symmetric: (a,b) R implies (b,a) R (c) transitive: (a,b) R and (b,c) R implies (a,c) R 5. Example: Which of the three properties do the relations of child of and a b 2 defined above have? 6. When R is an equivalence relation on a set S, we usually write arb instead of (a,b) R. Or, more typically, we use a symbol. Then the three properties are a a,a b b a,a b,b c a c. 7. Definition: If is an equivalence relation on a set S and a S then the set [a] = {x S : x a} is called the equivalence class of a. 8. Example: S is all differentiable functions on R, f g if f = g. Find [f]. 9. Example: S = Z, a b iff a = b mod n. Find [a]. 10. Example: S = all people, a b iff a and b live at the same address. Find [a]. 11. Example: Prove that if a b then [a] = [b]. Proof: Suppose a b and let x [a]. Then x a. But a b so by transitive property x b, so x [b]. Now do vice versa. 12. Definition: A partition of a set S is a collection of nonempty pairwise disjoint subsets of S whose union is S. (see picture on page 17.) 13. Example: Partition the integers into two sets. 14. Example: Do the sets {primes}, {composites} partition N? 9

10 15. Theorem 0.6: The equivalence classes of an equivalence relation on a set S constitute a partition of S. Conversely, for any partition P of S, there is an equivalence relation on S whose equivalence classes are the elements of P. Proof: Let be equivalence relation on set S. For any a S, a [a] by reflexivity, so [a] and the union of all equivalence classes is S. Now suppose [a],[b] are distinct equivalence classes but not pairwise disjoint - so let c [a] [b] (to get a contraction). Let x [a]. Then c a,c b,x a. Thus by symmetric property a c and by transitivity x c so by transitivity again, x b. Thus x [a] x [b] so [a] [b]. Similarly, [b] [a] so [a] = [b], so contradiction to distinct equivalence classes. To prove converse: Let P be a collection of nonempty pairwise disjoint subsets of S whose union is S. Define a b if a,b belong to the same subset in the collection. WTS is an equivalence relation. ( This is exercise 55.) 10

11 Ch 0: Preliminaries Functions (Mappings) 1. Definition: A function (or mapping) φ from a set A to a set B is a rule that assigns to each element a A exactly one element b B. The set A is called the domain of φ and the set B is called the range of φ. If φ(a) = b then b is called the image of a under φ. The subset of B comprising all the images of elements of A is called the image of A under φ. The notation is φ : A B. 2. Definition: Let φ : A B,ψ : B C. The composition ψ φ = ψφ is the mapping from A to C defined by ψφ(a) = ψ(φ(a)) for all a A. Note that this book doesn t use for composition (but I sometimes will). 3. Definition: A function φ : A B is called one-to-one if for every a 1,a 2 A, φ(a 1 ) = φ(a 2 ) implies a 1 = a 2. The function is called onto B if for each b B there is an a A such that φ(a) = b. 4. Theorem 0.7: Basic Facts about Functions: Given functions α : A B,β : B C,γ : C D, then (a) γ (β α) = (γ β) α (associativity). (b) If α, β are one-to-one then so is β α. (c) If α,β are onto then so is β α. (d) If α is one-to-one and onto then there is a function α 1 from B onto A such that (α 1 α)(a) = a for all a A and (α α 1 )(b) = b for all b B. (I.e. the function composed with its inverse is the identity and vice versa.) The function α 1 is the inverse function of α. The function α 1 is one-to-one and onto. ( ) Proof of part (a): Let a A. Then γ (β α)(a) = γ β(α)(a) = γ(β(α))(a). On the other hand, (γ β) α(a) = (γ β(α(a)) = γ(β(α(a)). Thus the equality holds. 11

12 Ch 0: Preliminaries Solutions to Examples Properties of Integers Example 7: Use the division algorithm on a = 473,b = 2 to find q,r. Solution: 472= so the quotient q = 236 and the remainder r = 1. Example 8: Use the division algorithm on a = 591,b = 9 to find q,r. Solution: -591=9*-66+3 so q = 66 and r = 3. Remember that r 0. Example 10: What are all common divisors of -8 and -12? Solution: ±1, ±2, ±4 Example 12: What is gcd( 8, 12)? Solution: by example 10 above, it is 4. Example 13: What is gcd(45,84)? Solution: 45 = 3 2 5,84 = so gcd(45,84) = 3. Example 14: What is gcd( , )? Solution: 15 (why? :-)) Example 18: Use the Euclidean algorithm to find gcd(22471,3266). Solution: 22471= = = = = = Thus the gcd is the last non-zero remainder: gcd(22471,3266) =

13 Solutions to Examples Example 19: Use the Euclidean algorithm to find gcd(243,111). Solution: 243= = = =3 2+0 Thus the gcd is 3. Example 23: Write gcd(243,111) as a linear combination of 243 and 111. Solution: We work the solution from example 19 backwards, solving for the gcd of 3 as a linear combination and substituting up, all the while, gathering like terms... 3 = = 21-( ) 3= = ( ) = Thus 3 = Example 24: Write gcd(22471,3266) as a linear combination of and Solution: This does take some practice but isn t hard = = 138-( ) 1= = ( ) 3-391= = ( ) 22= = ( ) = Thus 23 = Example 27: Find lcm(15,24). Solution: 15 = 3 5,24 = 2 3 3, so the lcm is = 120. Modular Arithmetic Example 2: Find 7 mod 3, 31 mod 4, 25 mod 26. Solution: 7 mod 3 = 1, 31 mod 4 = 1,25 mod 26 = 25 13

14 Solutions to Examples Mathematical Induction Example 4: What is wrong with this proof? We didn t check the base case, and when n = 1, = 2. Example 5: Let P(x) = x(x 1)(x 2) (x ). Then P(n) = 0 for all n N. Proof : What is wrong with this proof? We didn t prove that if it is true for GENERAL n then it is true for n + 1, so for example for n > this isn t true. Equivalence Relations Example 5: Which of the three properties do the relations of child of and a b 2 defined above have? Solution: child of is not any of these, a b 2 is reflexive and transitive but not symmetric. (You should make sure to prove this to yourself!) Example 8: S is all differentiable functions on R, f g if f = g. Find [f]. Solution: [f] = {f + C : C is a constant}. Example 9: S = Z, a b iff a = b mod n. Find [a]. Solution: [a] = {a + qn : q Z} Example 10: S = all people, a b iff a and b live at the same address. Find [a]. Solution: [a] = { all people living at the same address as a}. Example 13: Partition the integers into two sets. Solution: Z = {evens} {odds}. Or Z = {n Z : n 5} {n Z : n < 5.23}, etc. Example 14: Do the sets {primes}, {composites} partition N? Solution: No - even though they are disjoint, the number 1 doesn t appear in either set, so Z isn t partitioned. 14

Kevin James. MTHSC 412 Section 2.4 Prime Factors and Greatest Comm

Kevin James. MTHSC 412 Section 2.4 Prime Factors and Greatest Comm MTHSC 412 Section 2.4 Prime Factors and Greatest Common Divisor Greatest Common Divisor Definition Suppose that a, b Z. Then we say that d Z is a greatest common divisor (gcd) of a and b if the following

More information

8 Divisibility and prime numbers

8 Divisibility and prime numbers 8 Divisibility and prime numbers 8.1 Divisibility In this short section we extend the concept of a multiple from the natural numbers to the integers. We also summarize several other terms that express

More information

CHAPTER 5. Number Theory. 1. Integers and Division. Discussion

CHAPTER 5. Number Theory. 1. Integers and Division. Discussion CHAPTER 5 Number Theory 1. Integers and Division 1.1. Divisibility. Definition 1.1.1. Given two integers a and b we say a divides b if there is an integer c such that b = ac. If a divides b, we write a

More information

8 Primes and Modular Arithmetic

8 Primes and Modular Arithmetic 8 Primes and Modular Arithmetic 8.1 Primes and Factors Over two millennia ago already, people all over the world were considering the properties of numbers. One of the simplest concepts is prime numbers.

More information

MATH10040 Chapter 2: Prime and relatively prime numbers

MATH10040 Chapter 2: Prime and relatively prime numbers MATH10040 Chapter 2: Prime and relatively prime numbers Recall the basic definition: 1. Prime numbers Definition 1.1. Recall that a positive integer is said to be prime if it has precisely two positive

More information

GREATEST COMMON DIVISOR

GREATEST COMMON DIVISOR DEFINITION: GREATEST COMMON DIVISOR The greatest common divisor (gcd) of a and b, denoted by (a, b), is the largest common divisor of integers a and b. THEOREM: If a and b are nonzero integers, then their

More information

Today s Topics. Primes & Greatest Common Divisors

Today s Topics. Primes & Greatest Common Divisors Today s Topics Primes & Greatest Common Divisors Prime representations Important theorems about primality Greatest Common Divisors Least Common Multiples Euclid s algorithm Once and for all, what are prime

More information

Continued Fractions and the Euclidean Algorithm

Continued Fractions and the Euclidean Algorithm Continued Fractions and the Euclidean Algorithm Lecture notes prepared for MATH 326, Spring 997 Department of Mathematics and Statistics University at Albany William F Hammond Table of Contents Introduction

More information

So let us begin our quest to find the holy grail of real analysis.

So let us begin our quest to find the holy grail of real analysis. 1 Section 5.2 The Complete Ordered Field: Purpose of Section We present an axiomatic description of the real numbers as a complete ordered field. The axioms which describe the arithmetic of the real numbers

More information

Chapter 4, Arithmetic in F [x] Polynomial arithmetic and the division algorithm.

Chapter 4, Arithmetic in F [x] Polynomial arithmetic and the division algorithm. Chapter 4, Arithmetic in F [x] Polynomial arithmetic and the division algorithm. We begin by defining the ring of polynomials with coefficients in a ring R. After some preliminary results, we specialize

More information

Mathematics for Computer Science/Software Engineering. Notes for the course MSM1F3 Dr. R. A. Wilson

Mathematics for Computer Science/Software Engineering. Notes for the course MSM1F3 Dr. R. A. Wilson Mathematics for Computer Science/Software Engineering Notes for the course MSM1F3 Dr. R. A. Wilson October 1996 Chapter 1 Logic Lecture no. 1. We introduce the concept of a proposition, which is a statement

More information

Elementary Number Theory and Methods of Proof. CSE 215, Foundations of Computer Science Stony Brook University http://www.cs.stonybrook.

Elementary Number Theory and Methods of Proof. CSE 215, Foundations of Computer Science Stony Brook University http://www.cs.stonybrook. Elementary Number Theory and Methods of Proof CSE 215, Foundations of Computer Science Stony Brook University http://www.cs.stonybrook.edu/~cse215 1 Number theory Properties: 2 Properties of integers (whole

More information

I. GROUPS: BASIC DEFINITIONS AND EXAMPLES

I. GROUPS: BASIC DEFINITIONS AND EXAMPLES I GROUPS: BASIC DEFINITIONS AND EXAMPLES Definition 1: An operation on a set G is a function : G G G Definition 2: A group is a set G which is equipped with an operation and a special element e G, called

More information

MATH 289 PROBLEM SET 4: NUMBER THEORY

MATH 289 PROBLEM SET 4: NUMBER THEORY MATH 289 PROBLEM SET 4: NUMBER THEORY 1. The greatest common divisor If d and n are integers, then we say that d divides n if and only if there exists an integer q such that n = qd. Notice that if d divides

More information

Section 4.2: The Division Algorithm and Greatest Common Divisors

Section 4.2: The Division Algorithm and Greatest Common Divisors Section 4.2: The Division Algorithm and Greatest Common Divisors The Division Algorithm The Division Algorithm is merely long division restated as an equation. For example, the division 29 r. 20 32 948

More information

Properties of Real Numbers

Properties of Real Numbers 16 Chapter P Prerequisites P.2 Properties of Real Numbers What you should learn: Identify and use the basic properties of real numbers Develop and use additional properties of real numbers Why you should

More information

k, then n = p2α 1 1 pα k

k, then n = p2α 1 1 pα k Powers of Integers An integer n is a perfect square if n = m for some integer m. Taking into account the prime factorization, if m = p α 1 1 pα k k, then n = pα 1 1 p α k k. That is, n is a perfect square

More information

CS 103X: Discrete Structures Homework Assignment 3 Solutions

CS 103X: Discrete Structures Homework Assignment 3 Solutions CS 103X: Discrete Structures Homework Assignment 3 s Exercise 1 (20 points). On well-ordering and induction: (a) Prove the induction principle from the well-ordering principle. (b) Prove the well-ordering

More information

Handout NUMBER THEORY

Handout NUMBER THEORY Handout of NUMBER THEORY by Kus Prihantoso Krisnawan MATHEMATICS DEPARTMENT FACULTY OF MATHEMATICS AND NATURAL SCIENCES YOGYAKARTA STATE UNIVERSITY 2012 Contents Contents i 1 Some Preliminary Considerations

More information

Number Theory. Proof. Suppose otherwise. Then there would be a finite number n of primes, which we may

Number Theory. Proof. Suppose otherwise. Then there would be a finite number n of primes, which we may Number Theory Divisibility and Primes Definition. If a and b are integers and there is some integer c such that a = b c, then we say that b divides a or is a factor or divisor of a and write b a. Definition

More information

GCDs and Relatively Prime Numbers! CSCI 2824, Fall 2014!

GCDs and Relatively Prime Numbers! CSCI 2824, Fall 2014! GCDs and Relatively Prime Numbers! CSCI 2824, Fall 2014!!! Challenge Problem 2 (Mastermind) due Fri. 9/26 Find a fourth guess whose scoring will allow you to determine the secret code (repetitions are

More information

Copy in your notebook: Add an example of each term with the symbols used in algebra 2 if there are any.

Copy in your notebook: Add an example of each term with the symbols used in algebra 2 if there are any. Algebra 2 - Chapter Prerequisites Vocabulary Copy in your notebook: Add an example of each term with the symbols used in algebra 2 if there are any. P1 p. 1 1. counting(natural) numbers - {1,2,3,4,...}

More information

The Euclidean Algorithm

The Euclidean Algorithm The Euclidean Algorithm A METHOD FOR FINDING THE GREATEST COMMON DIVISOR FOR TWO LARGE NUMBERS To be successful using this method you have got to know how to divide. If this is something that you have

More information

Discrete Mathematics, Chapter 4: Number Theory and Cryptography

Discrete Mathematics, Chapter 4: Number Theory and Cryptography Discrete Mathematics, Chapter 4: Number Theory and Cryptography Richard Mayr University of Edinburgh, UK Richard Mayr (University of Edinburgh, UK) Discrete Mathematics. Chapter 4 1 / 35 Outline 1 Divisibility

More information

11 Ideals. 11.1 Revisiting Z

11 Ideals. 11.1 Revisiting Z 11 Ideals The presentation here is somewhat different than the text. In particular, the sections do not match up. We have seen issues with the failure of unique factorization already, e.g., Z[ 5] = O Q(

More information

DIVISIBILITY AND GREATEST COMMON DIVISORS

DIVISIBILITY AND GREATEST COMMON DIVISORS DIVISIBILITY AND GREATEST COMMON DIVISORS KEITH CONRAD 1 Introduction We will begin with a review of divisibility among integers, mostly to set some notation and to indicate its properties Then we will

More information

PROBLEM SET 6: POLYNOMIALS

PROBLEM SET 6: POLYNOMIALS PROBLEM SET 6: POLYNOMIALS 1. introduction In this problem set we will consider polynomials with coefficients in K, where K is the real numbers R, the complex numbers C, the rational numbers Q or any other

More information

Quotient Rings and Field Extensions

Quotient Rings and Field Extensions Chapter 5 Quotient Rings and Field Extensions In this chapter we describe a method for producing field extension of a given field. If F is a field, then a field extension is a field K that contains F.

More information

Cartesian Products and Relations

Cartesian Products and Relations Cartesian Products and Relations Definition (Cartesian product) If A and B are sets, the Cartesian product of A and B is the set A B = {(a, b) :(a A) and (b B)}. The following points are worth special

More information

9. POLYNOMIALS. Example 1: The expression a(x) = x 3 4x 2 + 7x 11 is a polynomial in x. The coefficients of a(x) are the numbers 1, 4, 7, 11.

9. POLYNOMIALS. Example 1: The expression a(x) = x 3 4x 2 + 7x 11 is a polynomial in x. The coefficients of a(x) are the numbers 1, 4, 7, 11. 9. POLYNOMIALS 9.1. Definition of a Polynomial A polynomial is an expression of the form: a(x) = a n x n + a n-1 x n-1 +... + a 1 x + a 0. The symbol x is called an indeterminate and simply plays the role

More information

The Prime Numbers. Definition. A prime number is a positive integer with exactly two positive divisors.

The Prime Numbers. Definition. A prime number is a positive integer with exactly two positive divisors. The Prime Numbers Before starting our study of primes, we record the following important lemma. Recall that integers a, b are said to be relatively prime if gcd(a, b) = 1. Lemma (Euclid s Lemma). If gcd(a,

More information

Intermediate Math Circles March 7, 2012 Linear Diophantine Equations II

Intermediate Math Circles March 7, 2012 Linear Diophantine Equations II Intermediate Math Circles March 7, 2012 Linear Diophantine Equations II Last week: How to find one solution to a linear Diophantine equation This week: How to find all solutions to a linear Diophantine

More information

CONTENTS 1. Peter Kahn. Spring 2007

CONTENTS 1. Peter Kahn. Spring 2007 CONTENTS 1 MATH 304: CONSTRUCTING THE REAL NUMBERS Peter Kahn Spring 2007 Contents 2 The Integers 1 2.1 The basic construction.......................... 1 2.2 Adding integers..............................

More information

The last three chapters introduced three major proof techniques: direct,

The last three chapters introduced three major proof techniques: direct, CHAPTER 7 Proving Non-Conditional Statements The last three chapters introduced three major proof techniques: direct, contrapositive and contradiction. These three techniques are used to prove statements

More information

Unique Factorization

Unique Factorization Unique Factorization Waffle Mathcamp 2010 Throughout these notes, all rings will be assumed to be commutative. 1 Factorization in domains: definitions and examples In this class, we will study the phenomenon

More information

SUM OF TWO SQUARES JAHNAVI BHASKAR

SUM OF TWO SQUARES JAHNAVI BHASKAR SUM OF TWO SQUARES JAHNAVI BHASKAR Abstract. I will investigate which numbers can be written as the sum of two squares and in how many ways, providing enough basic number theory so even the unacquainted

More information

Some Polynomial Theorems. John Kennedy Mathematics Department Santa Monica College 1900 Pico Blvd. Santa Monica, CA 90405 rkennedy@ix.netcom.

Some Polynomial Theorems. John Kennedy Mathematics Department Santa Monica College 1900 Pico Blvd. Santa Monica, CA 90405 rkennedy@ix.netcom. Some Polynomial Theorems by John Kennedy Mathematics Department Santa Monica College 1900 Pico Blvd. Santa Monica, CA 90405 rkennedy@ix.netcom.com This paper contains a collection of 31 theorems, lemmas,

More information

3. Mathematical Induction

3. Mathematical Induction 3. MATHEMATICAL INDUCTION 83 3. Mathematical Induction 3.1. First Principle of Mathematical Induction. Let P (n) be a predicate with domain of discourse (over) the natural numbers N = {0, 1,,...}. If (1)

More information

Elementary Number Theory

Elementary Number Theory Elementary Number Theory A revision by Jim Hefferon, St Michael s College, 2003-Dec of notes by W. Edwin Clark, University of South Florida, 2002-Dec L A TEX source compiled on January 5, 2004 by Jim Hefferon,

More information

Math 319 Problem Set #3 Solution 21 February 2002

Math 319 Problem Set #3 Solution 21 February 2002 Math 319 Problem Set #3 Solution 21 February 2002 1. ( 2.1, problem 15) Find integers a 1, a 2, a 3, a 4, a 5 such that every integer x satisfies at least one of the congruences x a 1 (mod 2), x a 2 (mod

More information

a 11 x 1 + a 12 x 2 + + a 1n x n = b 1 a 21 x 1 + a 22 x 2 + + a 2n x n = b 2.

a 11 x 1 + a 12 x 2 + + a 1n x n = b 1 a 21 x 1 + a 22 x 2 + + a 2n x n = b 2. Chapter 1 LINEAR EQUATIONS 1.1 Introduction to linear equations A linear equation in n unknowns x 1, x,, x n is an equation of the form a 1 x 1 + a x + + a n x n = b, where a 1, a,..., a n, b are given

More information

Chapter 3. Cartesian Products and Relations. 3.1 Cartesian Products

Chapter 3. Cartesian Products and Relations. 3.1 Cartesian Products Chapter 3 Cartesian Products and Relations The material in this chapter is the first real encounter with abstraction. Relations are very general thing they are a special type of subset. After introducing

More information

Factoring Polynomials

Factoring Polynomials Factoring Polynomials Sue Geller June 19, 2006 Factoring polynomials over the rational numbers, real numbers, and complex numbers has long been a standard topic of high school algebra. With the advent

More information

CONTINUED FRACTIONS AND PELL S EQUATION. Contents 1. Continued Fractions 1 2. Solution to Pell s Equation 9 References 12

CONTINUED FRACTIONS AND PELL S EQUATION. Contents 1. Continued Fractions 1 2. Solution to Pell s Equation 9 References 12 CONTINUED FRACTIONS AND PELL S EQUATION SEUNG HYUN YANG Abstract. In this REU paper, I will use some important characteristics of continued fractions to give the complete set of solutions to Pell s equation.

More information

WRITING PROOFS. Christopher Heil Georgia Institute of Technology

WRITING PROOFS. Christopher Heil Georgia Institute of Technology WRITING PROOFS Christopher Heil Georgia Institute of Technology A theorem is just a statement of fact A proof of the theorem is a logical explanation of why the theorem is true Many theorems have this

More information

The Division Algorithm for Polynomials Handout Monday March 5, 2012

The Division Algorithm for Polynomials Handout Monday March 5, 2012 The Division Algorithm for Polynomials Handout Monday March 5, 0 Let F be a field (such as R, Q, C, or F p for some prime p. This will allow us to divide by any nonzero scalar. (For some of the following,

More information

Arkansas Tech University MATH 4033: Elementary Modern Algebra Dr. Marcel B. Finan

Arkansas Tech University MATH 4033: Elementary Modern Algebra Dr. Marcel B. Finan Arkansas Tech University MATH 4033: Elementary Modern Algebra Dr. Marcel B. Finan 3 Binary Operations We are used to addition and multiplication of real numbers. These operations combine two real numbers

More information

Lectures on Number Theory. Lars-Åke Lindahl

Lectures on Number Theory. Lars-Åke Lindahl Lectures on Number Theory Lars-Åke Lindahl 2002 Contents 1 Divisibility 1 2 Prime Numbers 7 3 The Linear Diophantine Equation ax+by=c 12 4 Congruences 15 5 Linear Congruences 19 6 The Chinese Remainder

More information

MATH 22. THE FUNDAMENTAL THEOREM of ARITHMETIC. Lecture R: 10/30/2003

MATH 22. THE FUNDAMENTAL THEOREM of ARITHMETIC. Lecture R: 10/30/2003 MATH 22 Lecture R: 10/30/2003 THE FUNDAMENTAL THEOREM of ARITHMETIC You must remember this, A kiss is still a kiss, A sigh is just a sigh; The fundamental things apply, As time goes by. Herman Hupfeld

More information

26 Integers: Multiplication, Division, and Order

26 Integers: Multiplication, Division, and Order 26 Integers: Multiplication, Division, and Order Integer multiplication and division are extensions of whole number multiplication and division. In multiplying and dividing integers, the one new issue

More information

Stupid Divisibility Tricks

Stupid Divisibility Tricks Stupid Divisibility Tricks 101 Ways to Stupefy Your Friends Appeared in Math Horizons November, 2006 Marc Renault Shippensburg University Mathematics Department 1871 Old Main Road Shippensburg, PA 17013

More information

Homework until Test #2

Homework until Test #2 MATH31: Number Theory Homework until Test # Philipp BRAUN Section 3.1 page 43, 1. It has been conjectured that there are infinitely many primes of the form n. Exhibit five such primes. Solution. Five such

More information

z 0 and y even had the form

z 0 and y even had the form Gaussian Integers The concepts of divisibility, primality and factoring are actually more general than the discussion so far. For the moment, we have been working in the integers, which we denote by Z

More information

SYSTEMS OF PYTHAGOREAN TRIPLES. Acknowledgements. I would like to thank Professor Laura Schueller for advising and guiding me

SYSTEMS OF PYTHAGOREAN TRIPLES. Acknowledgements. I would like to thank Professor Laura Schueller for advising and guiding me SYSTEMS OF PYTHAGOREAN TRIPLES CHRISTOPHER TOBIN-CAMPBELL Abstract. This paper explores systems of Pythagorean triples. It describes the generating formulas for primitive Pythagorean triples, determines

More information

U.C. Berkeley CS276: Cryptography Handout 0.1 Luca Trevisan January, 2009. Notes on Algebra

U.C. Berkeley CS276: Cryptography Handout 0.1 Luca Trevisan January, 2009. Notes on Algebra U.C. Berkeley CS276: Cryptography Handout 0.1 Luca Trevisan January, 2009 Notes on Algebra These notes contain as little theory as possible, and most results are stated without proof. Any introductory

More information

Number Theory Hungarian Style. Cameron Byerley s interpretation of Csaba Szabó s lectures

Number Theory Hungarian Style. Cameron Byerley s interpretation of Csaba Szabó s lectures Number Theory Hungarian Style Cameron Byerley s interpretation of Csaba Szabó s lectures August 20, 2005 2 0.1 introduction Number theory is a beautiful subject and even cooler when you learn about it

More information

V55.0106 Quantitative Reasoning: Computers, Number Theory and Cryptography

V55.0106 Quantitative Reasoning: Computers, Number Theory and Cryptography V55.0106 Quantitative Reasoning: Computers, Number Theory and Cryptography 3 Congruence Congruences are an important and useful tool for the study of divisibility. As we shall see, they are also critical

More information

RSA and Primality Testing

RSA and Primality Testing and Primality Testing Joan Boyar, IMADA, University of Southern Denmark Studieretningsprojekter 2010 1 / 81 Correctness of cryptography cryptography Introduction to number theory Correctness of with 2

More information

Math 4310 Handout - Quotient Vector Spaces

Math 4310 Handout - Quotient Vector Spaces Math 4310 Handout - Quotient Vector Spaces Dan Collins The textbook defines a subspace of a vector space in Chapter 4, but it avoids ever discussing the notion of a quotient space. This is understandable

More information

= 2 + 1 2 2 = 3 4, Now assume that P (k) is true for some fixed k 2. This means that

= 2 + 1 2 2 = 3 4, Now assume that P (k) is true for some fixed k 2. This means that Instructions. Answer each of the questions on your own paper, and be sure to show your work so that partial credit can be adequately assessed. Credit will not be given for answers (even correct ones) without

More information

ABSTRACT ALGEBRA: A STUDY GUIDE FOR BEGINNERS

ABSTRACT ALGEBRA: A STUDY GUIDE FOR BEGINNERS ABSTRACT ALGEBRA: A STUDY GUIDE FOR BEGINNERS John A. Beachy Northern Illinois University 2014 ii J.A.Beachy This is a supplement to Abstract Algebra, Third Edition by John A. Beachy and William D. Blair

More information

15 Prime and Composite Numbers

15 Prime and Composite Numbers 15 Prime and Composite Numbers Divides, Divisors, Factors, Multiples In section 13, we considered the division algorithm: If a and b are whole numbers with b 0 then there exist unique numbers q and r such

More information

Lecture 13 - Basic Number Theory.

Lecture 13 - Basic Number Theory. Lecture 13 - Basic Number Theory. Boaz Barak March 22, 2010 Divisibility and primes Unless mentioned otherwise throughout this lecture all numbers are non-negative integers. We say that A divides B, denoted

More information

Public Key Cryptography: RSA and Lots of Number Theory

Public Key Cryptography: RSA and Lots of Number Theory Public Key Cryptography: RSA and Lots of Number Theory Public vs. Private-Key Cryptography We have just discussed traditional symmetric cryptography: Uses a single key shared between sender and receiver

More information

CHAPTER SIX IRREDUCIBILITY AND FACTORIZATION 1. BASIC DIVISIBILITY THEORY

CHAPTER SIX IRREDUCIBILITY AND FACTORIZATION 1. BASIC DIVISIBILITY THEORY January 10, 2010 CHAPTER SIX IRREDUCIBILITY AND FACTORIZATION 1. BASIC DIVISIBILITY THEORY The set of polynomials over a field F is a ring, whose structure shares with the ring of integers many characteristics.

More information

Chapter 11 Number Theory

Chapter 11 Number Theory Chapter 11 Number Theory Number theory is one of the oldest branches of mathematics. For many years people who studied number theory delighted in its pure nature because there were few practical applications

More information

COMMUTATIVE RINGS. Definition: A domain is a commutative ring R that satisfies the cancellation law for multiplication:

COMMUTATIVE RINGS. Definition: A domain is a commutative ring R that satisfies the cancellation law for multiplication: COMMUTATIVE RINGS Definition: A commutative ring R is a set with two operations, addition and multiplication, such that: (i) R is an abelian group under addition; (ii) ab = ba for all a, b R (commutative

More information

How To Know If A Domain Is Unique In An Octempo (Euclidean) Or Not (Ecl)

How To Know If A Domain Is Unique In An Octempo (Euclidean) Or Not (Ecl) Subsets of Euclidean domains possessing a unique division algorithm Andrew D. Lewis 2009/03/16 Abstract Subsets of a Euclidean domain are characterised with the following objectives: (1) ensuring uniqueness

More information

Solutions of Linear Equations in One Variable

Solutions of Linear Equations in One Variable 2. Solutions of Linear Equations in One Variable 2. OBJECTIVES. Identify a linear equation 2. Combine like terms to solve an equation We begin this chapter by considering one of the most important tools

More information

INCIDENCE-BETWEENNESS GEOMETRY

INCIDENCE-BETWEENNESS GEOMETRY INCIDENCE-BETWEENNESS GEOMETRY MATH 410, CSUSM. SPRING 2008. PROFESSOR AITKEN This document covers the geometry that can be developed with just the axioms related to incidence and betweenness. The full

More information

4. FIRST STEPS IN THE THEORY 4.1. A

4. FIRST STEPS IN THE THEORY 4.1. A 4. FIRST STEPS IN THE THEORY 4.1. A Catalogue of All Groups: The Impossible Dream The fundamental problem of group theory is to systematically explore the landscape and to chart what lies out there. We

More information

MATHEMATICAL INDUCTION. Mathematical Induction. This is a powerful method to prove properties of positive integers.

MATHEMATICAL INDUCTION. Mathematical Induction. This is a powerful method to prove properties of positive integers. MATHEMATICAL INDUCTION MIGUEL A LERMA (Last updated: February 8, 003) Mathematical Induction This is a powerful method to prove properties of positive integers Principle of Mathematical Induction Let P

More information

Lecture Notes on Discrete Mathematics

Lecture Notes on Discrete Mathematics Lecture Notes on Discrete Mathematics A. K. Lal September 26, 2012 2 Contents 1 Preliminaries 5 1.1 Basic Set Theory.................................... 5 1.2 Properties of Integers.................................

More information

Number Theory: A Mathemythical Approach. Student Resources. Printed Version

Number Theory: A Mathemythical Approach. Student Resources. Printed Version Number Theory: A Mathemythical Approach Student Resources Printed Version ii Contents 1 Appendix 1 2 Hints to Problems 3 Chapter 1 Hints......................................... 3 Chapter 2 Hints.........................................

More information

Handout #1: Mathematical Reasoning

Handout #1: Mathematical Reasoning Math 101 Rumbos Spring 2010 1 Handout #1: Mathematical Reasoning 1 Propositional Logic A proposition is a mathematical statement that it is either true or false; that is, a statement whose certainty or

More information

PYTHAGOREAN TRIPLES KEITH CONRAD

PYTHAGOREAN TRIPLES KEITH CONRAD PYTHAGOREAN TRIPLES KEITH CONRAD 1. Introduction A Pythagorean triple is a triple of positive integers (a, b, c) where a + b = c. Examples include (3, 4, 5), (5, 1, 13), and (8, 15, 17). Below is an ancient

More information

The Chinese Remainder Theorem

The Chinese Remainder Theorem The Chinese Remainder Theorem Evan Chen evanchen@mit.edu February 3, 2015 The Chinese Remainder Theorem is a theorem only in that it is useful and requires proof. When you ask a capable 15-year-old why

More information

Discrete Mathematics and Probability Theory Fall 2009 Satish Rao, David Tse Note 2

Discrete Mathematics and Probability Theory Fall 2009 Satish Rao, David Tse Note 2 CS 70 Discrete Mathematics and Probability Theory Fall 2009 Satish Rao, David Tse Note 2 Proofs Intuitively, the concept of proof should already be familiar We all like to assert things, and few of us

More information

Mathematical Induction

Mathematical Induction Mathematical Induction (Handout March 8, 01) The Principle of Mathematical Induction provides a means to prove infinitely many statements all at once The principle is logical rather than strictly mathematical,

More information

Basic Concepts of Point Set Topology Notes for OU course Math 4853 Spring 2011

Basic Concepts of Point Set Topology Notes for OU course Math 4853 Spring 2011 Basic Concepts of Point Set Topology Notes for OU course Math 4853 Spring 2011 A. Miller 1. Introduction. The definitions of metric space and topological space were developed in the early 1900 s, largely

More information

An Introductory Course in Elementary Number Theory. Wissam Raji

An Introductory Course in Elementary Number Theory. Wissam Raji An Introductory Course in Elementary Number Theory Wissam Raji 2 Preface These notes serve as course notes for an undergraduate course in number theory. Most if not all universities worldwide offer introductory

More information

Winter Camp 2011 Polynomials Alexander Remorov. Polynomials. Alexander Remorov alexanderrem@gmail.com

Winter Camp 2011 Polynomials Alexander Remorov. Polynomials. Alexander Remorov alexanderrem@gmail.com Polynomials Alexander Remorov alexanderrem@gmail.com Warm-up Problem 1: Let f(x) be a quadratic polynomial. Prove that there exist quadratic polynomials g(x) and h(x) such that f(x)f(x + 1) = g(h(x)).

More information

6.3 Conditional Probability and Independence

6.3 Conditional Probability and Independence 222 CHAPTER 6. PROBABILITY 6.3 Conditional Probability and Independence Conditional Probability Two cubical dice each have a triangle painted on one side, a circle painted on two sides and a square painted

More information

Lecture 3: Finding integer solutions to systems of linear equations

Lecture 3: Finding integer solutions to systems of linear equations Lecture 3: Finding integer solutions to systems of linear equations Algorithmic Number Theory (Fall 2014) Rutgers University Swastik Kopparty Scribe: Abhishek Bhrushundi 1 Overview The goal of this lecture

More information

Negative Integer Exponents

Negative Integer Exponents 7.7 Negative Integer Exponents 7.7 OBJECTIVES. Define the zero exponent 2. Use the definition of a negative exponent to simplify an expression 3. Use the properties of exponents to simplify expressions

More information

5-1 NUMBER THEORY: DIVISIBILITY; PRIME & COMPOSITE NUMBERS 210 f8

5-1 NUMBER THEORY: DIVISIBILITY; PRIME & COMPOSITE NUMBERS 210 f8 5-1 NUMBER THEORY: DIVISIBILITY; PRIME & COMPOSITE NUMBERS 210 f8 Note: Integers are the w hole numbers and their negatives (additive inverses). While our text discusses only whole numbers, all these ideas

More information

Vector and Matrix Norms

Vector and Matrix Norms Chapter 1 Vector and Matrix Norms 11 Vector Spaces Let F be a field (such as the real numbers, R, or complex numbers, C) with elements called scalars A Vector Space, V, over the field F is a non-empty

More information

Math Workshop October 2010 Fractions and Repeating Decimals

Math Workshop October 2010 Fractions and Repeating Decimals Math Workshop October 2010 Fractions and Repeating Decimals This evening we will investigate the patterns that arise when converting fractions to decimals. As an example of what we will be looking at,

More information

Grade 6 Math Circles March 10/11, 2015 Prime Time Solutions

Grade 6 Math Circles March 10/11, 2015 Prime Time Solutions Faculty of Mathematics Waterloo, Ontario N2L 3G1 Centre for Education in Mathematics and Computing Lights, Camera, Primes! Grade 6 Math Circles March 10/11, 2015 Prime Time Solutions Today, we re going

More information

Chapter 2 Remodulization of Congruences Proceedings NCUR VI. è1992è, Vol. II, pp. 1036í1041. Jeærey F. Gold Department of Mathematics, Department of Physics University of Utah Don H. Tucker Department

More information

4.2 Euclid s Classification of Pythagorean Triples

4.2 Euclid s Classification of Pythagorean Triples 178 4. Number Theory: Fermat s Last Theorem Exercise 4.7: A primitive Pythagorean triple is one in which any two of the three numbers are relatively prime. Show that every multiple of a Pythagorean triple

More information

6.2 Permutations continued

6.2 Permutations continued 6.2 Permutations continued Theorem A permutation on a finite set A is either a cycle or can be expressed as a product (composition of disjoint cycles. Proof is by (strong induction on the number, r, of

More information

Chapter 3. if 2 a i then location: = i. Page 40

Chapter 3. if 2 a i then location: = i. Page 40 Chapter 3 1. Describe an algorithm that takes a list of n integers a 1,a 2,,a n and finds the number of integers each greater than five in the list. Ans: procedure greaterthanfive(a 1,,a n : integers)

More information

Matrix Representations of Linear Transformations and Changes of Coordinates

Matrix Representations of Linear Transformations and Changes of Coordinates Matrix Representations of Linear Transformations and Changes of Coordinates 01 Subspaces and Bases 011 Definitions A subspace V of R n is a subset of R n that contains the zero element and is closed under

More information

SUBGROUPS OF CYCLIC GROUPS. 1. Introduction In a group G, we denote the (cyclic) group of powers of some g G by

SUBGROUPS OF CYCLIC GROUPS. 1. Introduction In a group G, we denote the (cyclic) group of powers of some g G by SUBGROUPS OF CYCLIC GROUPS KEITH CONRAD 1. Introduction In a group G, we denote the (cyclic) group of powers of some g G by g = {g k : k Z}. If G = g, then G itself is cyclic, with g as a generator. Examples

More information

it is easy to see that α = a

it is easy to see that α = a 21. Polynomial rings Let us now turn out attention to determining the prime elements of a polynomial ring, where the coefficient ring is a field. We already know that such a polynomial ring is a UF. Therefore

More information

Introduction to Finite Fields (cont.)

Introduction to Finite Fields (cont.) Chapter 6 Introduction to Finite Fields (cont.) 6.1 Recall Theorem. Z m is a field m is a prime number. Theorem (Subfield Isomorphic to Z p ). Every finite field has the order of a power of a prime number

More information

On the generation of elliptic curves with 16 rational torsion points by Pythagorean triples

On the generation of elliptic curves with 16 rational torsion points by Pythagorean triples On the generation of elliptic curves with 16 rational torsion points by Pythagorean triples Brian Hilley Boston College MT695 Honors Seminar March 3, 2006 1 Introduction 1.1 Mazur s Theorem Let C be a

More information

Real Roots of Univariate Polynomials with Real Coefficients

Real Roots of Univariate Polynomials with Real Coefficients Real Roots of Univariate Polynomials with Real Coefficients mostly written by Christina Hewitt March 22, 2012 1 Introduction Polynomial equations are used throughout mathematics. When solving polynomials

More information

1 if 1 x 0 1 if 0 x 1

1 if 1 x 0 1 if 0 x 1 Chapter 3 Continuity In this chapter we begin by defining the fundamental notion of continuity for real valued functions of a single real variable. When trying to decide whether a given function is or

More information