natural number
a natural number is any element of the set
which is the set of all the numbers created by starting with 0 and then counting forward indefinitely. we call
the set of natural numbers.
[cite:@tao_analysis_1 definition 2.1.1]
[cite:@tao_analysis_1 definition 2.1.1]
in some texts the natural numbers start at 1 instead of 0, but this is a matter of notational convention more than anything else. in [cite:@tao_analysis_1] we refer to the set
as the positive integers
rather than the natural numbers.
natural numbers are sometimes also known as whole numbers.
in a sense, broken link: blk:def-natural-set-inf solves the problem of what the natural numbers are: a natural number is any element of the set natural numbers are sometimes also known as whole numbers.
we define 1 to be the number
, 2 to be the number
, 3 to be the number
, etc. (in other words,
,
,
, etc.
there exists a number system \nnumset, whose elements we call natural numbers, for which the peano axioms are true.
[cite:@tao_analysis_1 assumption 2.6]
[cite:@tao_analysis_1 assumption 2.6]
3 is a natural number.
by broken link: blk:axi-peano-zero, 0 is a natural number. by broken link: blk:axi-peano-inc, 0++ = 1 is a natural number. by broken link: blk:axi-peano-inc again, 1++ = 2 is a natural number. by broken link: blk:axi-peano-inc again, 2++ = 3 is a natural number.
the principle of induction gives us a way to prove that a property a certain property
is true for every natural number
.
we use induction. we first verify the base case
, i.e., we prove
. (insert proof of
here.) now suppose inductively that
is a natural number, and
has already been proven. we now prove
. (insert proof of
, assuming that
is true, here.) this closes the induction, and thus
is true for all numbers n.
suppose for each natural number
, we have some function
from the natural numbers to the natural numbers. let
be a natural number. then we can assign a unique natural number
to each natural number
, such that
and
for each natural number
.
we use induction. we first observe that this procedure gives a single value to
, namely
. (none of the other definitions
will redefine the value of
, because of broken link: blk:axi-peano-diff) now suppose inductively that the procedure gives a single value to
. then it gives a single value to
, namely
. (none of the other definitions
will redefine the value of
, because of broken link: blk:axi-peano-induction) this completes the induction, and so an is defined for each natural number
, with a single value assigned to each
.
the definition we proposed broken link: blk:pro-natural-rec isnt circular because the concept of a function doesnt require the peano axioms.
let
be a natural number. to add zero to
, we define
. now suppose inductively that we have defined how to add
to
. then we can add
to
by defining
.
[cite:@tao_analysis_1 definition 2.2.1]
[cite:@tao_analysis_1 definition 2.2.1]
it is implicitly defined in broken link: blk:def-natural-add that the addition of two natural number yields a third natural number, as
yields
which is assumed to be a natural number, and by the induction hypothesis
is defined and also yields a natural number, then
is defined to be
which is a natural number by broken link: blk:axi-peano-inc and the inductive hypthesis.
this means that any operations that apply to natural numbers also apply to a parenthesized addition of natural numbers such as
, we can increment them, e.g.
, or add additions of natural numbers to other additions of natural numbers, e.g.
, and so on.
this means that any operations that apply to natural numbers also apply to a parenthesized addition of natural numbers such as
for any natural number
,
.
[cite:@tao_analysis_1 lemma 2.2.2]
[cite:@tao_analysis_1 lemma 2.2.2]
we induct on
, for the base case,
by broken link: blk:def-natural-add, we assume
(the induction hypothesis) and need to show
, by broken link: blk:def-natural-add we know
and by the induction hypothesis we know
so
which means
.
the base case
follows since we know that
for every natural number
, and 0 is a natural number. now suppose inductively that
. we wish to show that
. but by definition of addition,
is equal to
, which is equal to
since
. this closes the induction.
[cite:@tao_analysis_1 lemma 2.2.2]
[cite:@tao_analysis_1 lemma 2.2.2]
for any natural numbers
and
, 
we induct on
, keeping
fixed, for the base case
we need to show
, by broken link: blk:def-natural-add we know
and
so
which means the base case
is true as both equal
, we assume the induction hypothesis,
, and have to show
, by broken link: blk:def-natural-add we know
and
by the induction hypothesis and
by broken link: blk:def-natural-add.
for any natural numbers
and
,
.
we induct on
, keeping
fixed, for the base case, we must show
, but we already know both equal
by broken link: blk:def-natural-add and broken link: blk:lem-natural-add-zero. we assume the inductive hypotheis
and we have to show
: by broken link: blk:def-natural-add
and by broken link: blk:def-natural-add-suc
and by the inductive hypothesis
.
for any natural numbers
, we have
.
we induct on
, keeping
and
fixed, for the base case
, we need to show
, by broken link: blk:def-natural-add we know
so
and we know
, so both sides are equal. we assume the inductive hypothesis
and have to show
, by broken link: blk:def-natural-add,
, again by broken link: blk:def-natural-add
and by the inductive hypothesis
, by broken link: blk:def-natural-add,
.
let
be natural numbers such that
, then
.
we fix
and induct on
, for the base case,
implies
by broken link: blk:def-natural-add, we assume the inductive hypothesis,
implies
, and need to show
implies
, by broken link: blk:def-natural-add,
and again by broken link: blk:def-natural-add
, so we have
, by broken link: blk:axi-peano-diff
, and so by the inductive hypothesis
, which closes the induction.
if
is a positive natural number, and
is a natural number, then
is positive (and hence
is also, by broken link: blk:pro-natural-add-com).
we fix
and induct on
, for the base case
,
is positive, we assume the inductive hypothesis; i.e. that
is positive, and have to show that
is positive, by broken link: blk:lem-natural-add-suc
, and by broken link: blk:axi-peano-nosuc
is positive as zero isnt the successor of any natural number, this closes the induction.
if
and
are natural numbers such that
, then
and
.
assume in contradiction that
or
(that one of them is non-zero, i.e. one of them is positive), then we would get a contradiction by broken link: blk:pro-natural-pos-add which says
would be positive but we have
.
let
be a positive number. then there exists exactly one natural number
such that
.
[cite:@tao_analysis_1 lemma 2.2.10]
[cite:@tao_analysis_1 lemma 2.2.10]