Lecture 2 Flashcards

1
Q

Definition of a prime number

A

Let p>1 be an integer, then p is prime if it’s only positive divisors are 1 and itself.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Theorem (prime power factorization)

A

Let n>1 be an integer. Then n can be factored into prime powers uniquely

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Formula for the gdc and lcm

A

m = p_1^e_1 x p_2^e_2 x … x p_r^e_r
n = p_1^f_1 x p_2^f_2 x … x p_r^f_r

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Consequence of the gcd and lcm formulas

A

For any m,n which are not zero. Then m x n = gcd(m,n) x lcm(m,n)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Euler-Totient function

A

Let an integer n be greater than or equal to 1. Then the Euler-Totient function of n, is given by phi(n)=number of elements {0<=a<n: gcd(a,n) = 1}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Example of the Euler-Totient

A

phi(5) = 4 because gcd(1,5) = 1, gcd(2,5)=1, gcd(3,5)=1 and gcd(4,5)=1.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Division Algorithm

A

If a and b are integers and b does not equal zero, there are unique integers q and r s.t.
a=q x b + r, 0<=r<|b|
q=quotient of a/b and r is the remainder

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Definition of a group

A

A group is a set G with a binary operation * s.t
1) * is associative: (ab)c = a(bc)
2) * has an identity element, denoted e: ae = ea=a
3) * admits inverses: for each a in G there is an a^-1 s.t. a * a^-1 = a^-1 * a = e

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Example of a group

A

The set Z (the integers) and the operation + (addition)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly