Number Theory with Glenn Olsen
Last updated
Was this helpful?
Last updated
Was this helpful?
YouTube Playlist (83 vids), Published on Jul 25, 2014 []
Subsets of Numbers
Divisibility
Primes
GCD (Greatest Common Divisor)
Euclidean Algorithm
LCM (Least Common Multiple)
Relationship between GCD and LCM
Total Number of Factors
Units Digit
Remainder
Trailing Zeros
Counting Multiples
Sum of the First n Natural Numbers
Linear Diophantine Equations
Modular Arithmetic
Gear Problem
Number Sense
Subsets: conventions used (what is meant by different sets):
Integers:
Whole numbers:
Counting numbers:
sum of first n odd numbers:
sum of first 7 off numbers = 1+3+5+7+9+11+13=
It isa very common that two elements in a triple differ by 1 or 2
most common: (3,4,5)
common: (5,12,13), (8,15,17), (7,24,25)
not so common: (20,21,29), (12,35,37), (9,40,41)
Divisibility: if a
and b
are ints, then a
divides b
if b = a*n
for some int n
.
The integer, , consisting of (base 10) digits, , is divisible by if:
rule 2, m=2: if the last digit is divisible by 2
rule 4, m=4 (2^2): if the last 2 digits are divisible by 4
rule 8, m=8 (2^3): if the last 3 digits are divisible by 8
rule 3, m=3: if the sum of all the digits is divisible by 3
rule 9, m=9: if the sum of all the digits is divisible by 9
rule 5: last digit must be 0 or 5
rule 10: last digit must be 0
rule 6 (2*3): if rules 2 and rule 3 both hold
rule 12 (3*4)