Recall that a number u is less than a number v if u is part of a sum that is equal to v:
v = u + z.
Since a<b then for some natural number x, b = a + x.
Since c<d then for some natural number y, d = c + y.
These equations in x and y can be added:
b + d = (a + c) + (x + y)
But this is of the form v = (u) + (z) which is equivalent to u < v
Therefore: a + c < b + d.
By reversing the direction of the inequality signs, a similar proof exists for
For any natural numbers a,b,c,d, if a>b and c>d
then a+c>b+d.
(Addition law for counting)
To find the total (combined) number of objects of two types, add the number of objects of the first type to the number of objects of the second type and subtract the number of objects that are of both types.
The conclusion: ω + ω = ω. An infinite number are not like a finite number. Add it to itself and the sum is equal to itself again. Logic dictates this. This discussion also supports the statement 2ω = ω. It is possible to extend the discussion to support 3ω, 4ω, ... , nω, ... . In the later chapter on relations in the section on one-to-one correspondences, the expression ω x ω is discussed.
Suppose k is a factor of a positive integer m. If k = m, then k is not larger than m.
Suppose k is not the same as m. As a factor k is part of a product nk = m. Then m = k + (n-1)k. Then k is part of the whole m and must be smaller than m. (Technically speaking, n is not equal to 1, so that n-1 is not zero, which has not yet been introduced into the number system.)
------------
If k is a factor of positive integer m then it remains to prove that the quotient m/k is also a factor of m. Since k is a factor of m then k is part of a product of positive integers equal to m: m = nk. Then n = m/k.
A complete factorization of a natural number n is a product of primes without repeats, where each prime may be raised to powers (natural numbers) n = pa x qb x ... . where p,q,.. are primes and a,b,... are natural numbers. For convenience, primes p,q,.. are arranged in increasing order: p < q < ...
For example, the number 34425 ends in 5, so 5 must be a factor:
*(The Fundamental Theorem of Arithmetic) Every natural number larger than 1 has a unique complete factorization into powers of primes.
For a computer program that computes the complete factorizations of natural numbers click here
This idea can be used with the powers of prime factors of two natural numbers larger than 1. The best explanation comes with an example. The complete factorizations of two numbers 172872 and 111132 are:
Do the same for the next terms in each factorization, 32 and 34. The smaller of 32 and 34 is 32.
Finaly choose the smaller of 74 and 73 which is 73.
Assemble these three new terms to get: gcd(172872,111132) = 22 x 32 x 73 = 12348
The choice of smaller of pairs of terms in each decomposition guarantees that 12348 is a divisor of both numbers 172872 and 111132. Moreover, by choice of lower powers of prime factors, 12348 is the largest common factor.
The dual of choosing the smaller exponent is choosing the larger exponent. The dual of gcd is lcm. This suggests a similar method for constructing the lcm, namely choosing the larger of corresponding terms.
The larger of 23 and 22 is 23.
The larger of 32 and 34 is 34.
The larger of 74 and 73 is 74.
These three choices of larger form the product: lcm(172872,111132) = 23 x 34 x 74 = 1555848.
It may happen that a prime factor in a complete factorization does not have a written exponent: 4704 = 25 x 3 x 72. In order to compare exponents, the prime factor 3 will need an exponent. But 3 = 31.
It may happen that two natural numbers may have different prime factors (and some may be the same). For example,
The following paragraphs [A] and [B] are the "tecnhical definitions of gcd and lcm:
[A]
The greatest common divisor (gcd) of two given natural numbers m,n is a natural number d satisfying the following two conditions:
(a) it must be a divisor of both given numbers: d|m and d|n;
(b) any natural number x that is a divisor of both given numbers must be a divisor of the greatest common divisor:
if x|m and x|n then x|d.
Notation: d = gcd(m,n).
[B]
The least common multiple (lcm) of two given natural numbers m,n is an natural number k satisfying the following two conditions:
(a) it must be a multiple of both given numbers: m|k and n|k;
(b) any natural number x that is a multiple of both given numbers must be a multiple of the least common multiple:
if m|x and n|x then k|x.
Notation: k = lcm(m,n).
Let d = gcd(m,n)
and
k = lcm(m,n).
The theorem can be expressed as:
dk = m x n
.
The proof is in two parts.
First part of the proof: dk | mn product of gcd and lcm divides the product of the natural numbers.
By [A] the quotient n/d is an natural number. Then the product m (n/d) = mn/d is also an natural number, which means
(*) m | mn/d.
Similarly, by [A] the quotient m/d is a natural number. Then the product n (m/d) = mn/d is also an natural number and
(**) n | mn/d
By (*) and (**) the natural number mn/d is a common multiple of both m and n. By [B] least common multiple must divide all such multiples. Therefore
k | mn/d.
By theorem [ ]
(***)
kd |mn.
Second part of the proof: mn | dk
the product of the natural numbers divides the product of gcd and lcm.
Since mn is a multiple of both m and n, by [B] the least common multiple must be able to divide completely into it, that is, the quotient mn/k is an natural number. According to [B] both quotients k/m and k/n are natural numbers. The product of any two natural numbers is a natural number (closure) so
(***) and (****) show that
kd
and mn divide each other. By theorem [ ] they must be equal.
The product of the numbers 3528 and 111132 is equal to 25 x 36 x 75 = 392 073 696. The product of gcd(3528,111132) and lcm(3528,111132) = 25 x 36 x 75 = 1764 x 222264 = 392 073 696.