Number theory Flashcards

1
Q

Division algorithm

A

Way of expressing a large number as a multiplication in a remainder.
a=bq +r

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

Euclidean algorithm used to find?

A

Greatest common divisor of two large numbers

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

How to find GCD

A

We use division algorithm where the remainder becomes the factor in next line until remainder is 0, then that factor is our GCD.

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

Reverse Euclidean algorithm

A

Rewrite remainder GCD line in terms of the GCD. Substitute in rearranged upper lines, solve any brackets and group like terms. Stop when GCD is expressed as multiples of two original numbers.

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

How to express a base10 number in base 6

A

Do division algorithm of number, using new base as factor.
Once remainder = to number being decided we stop. We then read up division algorithm and find value of it in new base.

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

Hexadecimal values past 9

A

10 = A
11 = B
12 = C
13 = D
14 = E
15 = F

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

How to convert different bases back to base 10

A

Set in table of all the different powers of base, starting with 0. See how many of each level there are. Multiplying out and that will be value in base 10.

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

Fundamental theory of arithmetic

A

Each number greater than 1can be expressed as a product of primes

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

How to work out prime composition of an integer.

A

Divide by smallest prime possible, then divide other number left over by smallest prime. Keep doing this until only primes left over. Collect terms.

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