Final Flashcards

1
Q

Definition of Divisibility

A

a|b iff a•c = b

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

Properties of Divisibility

A

If a|b and a|c then a|(b+c)

If a|b and b|c then a|c

If a|b then a|b*c

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

Division Algorithm

A

Let a ∈ Z, d ∈ Z+
Then there are unique integers q and r such that
a = d * q + r

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

Modulus Congruence

A

If a, b ∈ Z and m ∈ Z+, then
a ≅ b (mod m) iff m|a-b

OR if

m | (b - a)

OR if

a = b + k * m
k ∈ Z

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

Definition of GCD

A

gcd(a, b) = d
where d|a and d|b and
∀e != d, if e|a and e|b, then e

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

Euclidean Algorithm

A

gcd(a,b) = gcd(b,rem(a,b))

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

Linear Combination

A
If gcd(a,b) = c
then c = a * s + b * t
where s, t ∈ Z
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Arithmetic Series

A

Sn = n(2a + (n - 1)d) / 2

Really just the average of the 1st and last terms multiplied by n

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

Geometric Series

A

Sn = a(1 - r^n)/(1 - r)

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

Definition of a Prime #

A

an integer p > 1 that has only 1 and itself as (positive) factors

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

Fundamental Theorem of Arithmetic

A

Every integer n > 1 can be written in a unique way as a nondecreasing product of primes

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

Prime Theorem

A

If n is a composite, then n has a prime divisor that satisfies p ≤ √n

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

Principle of Induction

A

To prove ∀n ∈ Z+, P(n):
Basis step: P(1)
Inductive step: show that ∀k ≥ 1 (P(k) -> P(k+1)) is true
i.e. assuming P(k), show P(k + 1)

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

Well Ordering Principle

A

Every non-empty subset of Z+ has a minimum element

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

Principle of Strong Induction

A

To prove ∀n ∈ Z+, P(n):
Basis step: P(1)
Inductive step: show that ∀k ≥ 1 (P(1) ^ P(2) ^ P(3) ^ … ^ P(n) -> P(k+1)) is true

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