Number Theory Flashcards

1
Q

How can you simplify modulo arithmetic with addition?

e.g. 44 mod 7

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

What is -1 mod 7?

-14 mod 8?

A

6

2

(Negative modulos work like a clock going in reverse.)

Tip: If you have a negative number that you are performing a mod on (e.g. -1 mod 7), simply add what you are modding it with (7) to the negative number, and you get your answer (6).

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

How can you simplify modulo arithmetic with multiplication?

e.g. 55 mod 7

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

Define a prime number.

A

(Non-prime numbers are called composite numbers.)

1 is not a prime number.

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

Define relative prime (or coprime) numbers.

A

e.g. 4 and 9 are coprime.

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

Define what a least common multiplier is.

A

lcm(a, b) = a • b / gcd(a, b)

(gcd = greatest common divisor)

e.g. The LCM of 4 and 6 is 12.

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

What does “a is congruent to r in the modulo b system” mean?

A

a mod b = r

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

What does it mean if a is congruent to c mod b?

A

a mod b = c mod b

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

Define the greatest common divisor.

A

The GCD is the largest possible c, such that c divides both a and b.

e.g. The GCD of 8 and 12 is 4.

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

e.g. 1200 = 24 x 31 x 52 = 2 x 2 x 2 x 2 x 3 x 5

This theorem is stating two things: first, that 1200 can be represented as a product of primes, and second, no matter how this is done, there will always be four 2s, one 3, two 5s, and no other primes in the product.

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