Number Theory and Notation Flashcards

1
Q

a divides b

A

a | b

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

what will guarantee a number is a multiple of 3?

A

if a number is the product of 3 consecutive numbers, then that number is a multiple of 3.

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

GCD

A

greatest common divisor

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

Euclid’s Algorithm

A

a method of finding the GCD of two numbers. divide the larger number by the smaller number. if the remainder is 0, then the smaller number is the GCD. otherwise, let the smaller number become the largest number and let the remainder become the smallest number and repeat.

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

prime numbers

A

natural numbers greater than 1 whose only factors are 1 and itself

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

composite numbers

A

natural numbers greater than 1 that are not prime numbers

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

what is special about 1?

A

1 is neither prime nor composite

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

what does it mean for a and b to be relatively prime/coprime?

A

GCD(a,b) = 1

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

what is special about the GCD(a,b)?

A

the GCD(a,b) is the smallest value of c for which ax + by = c has integer solutions

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

what does it mean for GCD(a,b) = 1?

A

a and b are relatively prime/coprime

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

what is a diophantine equation?

A

an equation of the form ax + by = c where all the constants are integers and the only solutions of interest are integers

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

Euclid’s lemma

A

if p, a, b are integers and p is prime with p dividing ab, then p divides a or p divides b.

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

when does a general integer solution exist for ax + by = c?

A

when GCD(a, b) divides c

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

what does it mean when, given a diophantine equation, GCD(a,b) divides c?

A

there are infinitely many integer solutions

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

what does it mean when, given a diphantine equation, GCD(a,b) does not divide c?

A

there are no integer solutions

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

what is the general solution to a diophantine equation, if it exists?

A

x = x0 + bk/gcd(a,b)
y = y0 - ak/gcd(a,b)
where k is any integer and (x0, y0) is one particular solution to ax + by = c

17
Q

what can we use to find one particular solution to a diophantine equation?

A

Euclid’s Algorithm, backwards.

18
Q

what are positive integers?

A

integers greater than 0

19
Q

what are negative integers?

A

integers less than 0

20
Q

what is special about 0?

A

0 is neither positive nor negative