doc-src/TutorialI/Types/numerics.tex
author paulson
Wed, 10 Dec 2003 15:59:34 +0100
changeset 14288 d149e3cbdb39
parent 13996 a994b92ab1ea
child 14295 7f115e5c5de4
permissions -rw-r--r--
Moving some theorems from Real/RealArith0.ML
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
     1
% $Id$
11389
55e2aef8909b the records section
paulson
parents: 11216
diff changeset
     2
55e2aef8909b the records section
paulson
parents: 11216
diff changeset
     3
\section{Numbers}
55e2aef8909b the records section
paulson
parents: 11216
diff changeset
     4
\label{sec:numbers}
55e2aef8909b the records section
paulson
parents: 11216
diff changeset
     5
11494
23a118849801 revisions and indexing
paulson
parents: 11480
diff changeset
     6
\index{numbers|(}%
11174
96a533d300a6 revisions in response to comments by Tobias
paulson
parents: 11161
diff changeset
     7
Until now, our numerical examples have used the type of \textbf{natural
96a533d300a6 revisions in response to comments by Tobias
paulson
parents: 11161
diff changeset
     8
numbers},
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
     9
\isa{nat}.  This is a recursive datatype generated by the constructors
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    10
zero  and successor, so it works well with inductive proofs and primitive
11174
96a533d300a6 revisions in response to comments by Tobias
paulson
parents: 11161
diff changeset
    11
recursive function definitions.  HOL also provides the type
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
    12
\isa{int} of \textbf{integers}, which lack induction but support true
11174
96a533d300a6 revisions in response to comments by Tobias
paulson
parents: 11161
diff changeset
    13
subtraction.  The integers are preferable to the natural numbers for reasoning about
96a533d300a6 revisions in response to comments by Tobias
paulson
parents: 11161
diff changeset
    14
complicated arithmetic expressions, even for some expressions whose
13979
4c3a638828b9 HOL-Complex
paulson
parents: 13750
diff changeset
    15
value is non-negative.  The logic HOL-Complex also has the types
4c3a638828b9 HOL-Complex
paulson
parents: 13750
diff changeset
    16
\isa{real} and \isa{complex}: the real and complex numbers.  Isabelle has no 
4c3a638828b9 HOL-Complex
paulson
parents: 13750
diff changeset
    17
subtyping,  so the numeric
4c3a638828b9 HOL-Complex
paulson
parents: 13750
diff changeset
    18
types are distinct and there are functions to convert between them.
11174
96a533d300a6 revisions in response to comments by Tobias
paulson
parents: 11161
diff changeset
    19
Fortunately most numeric operations are overloaded: the same symbol can be
96a533d300a6 revisions in response to comments by Tobias
paulson
parents: 11161
diff changeset
    20
used at all numeric types. Table~\ref{tab:overloading} in the appendix
96a533d300a6 revisions in response to comments by Tobias
paulson
parents: 11161
diff changeset
    21
shows the most important operations, together with the priorities of the
96a533d300a6 revisions in response to comments by Tobias
paulson
parents: 11161
diff changeset
    22
infix symbols.
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    23
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
    24
\index{linear arithmetic}%
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    25
Many theorems involving numeric types can be proved automatically by
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    26
Isabelle's arithmetic decision procedure, the method
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
    27
\methdx{arith}.  Linear arithmetic comprises addition, subtraction
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    28
and multiplication by constant factors; subterms involving other operators
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    29
are regarded as variables.  The procedure can be slow, especially if the
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    30
subgoal to be proved involves subtraction over type \isa{nat}, which 
13996
a994b92ab1ea *** empty log message ***
nipkow
parents: 13983
diff changeset
    31
causes case splits.  On types \isa{nat} and \isa{int}, \methdx{arith}
a994b92ab1ea *** empty log message ***
nipkow
parents: 13983
diff changeset
    32
can deal with quantifiers (this is known as ``Presburger Arithmetic''),
a994b92ab1ea *** empty log message ***
nipkow
parents: 13983
diff changeset
    33
whereas on type \isa{real} it cannot.
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    34
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    35
The simplifier reduces arithmetic expressions in other
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    36
ways, such as dividing through by common factors.  For problems that lie
10881
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
    37
outside the scope of automation, HOL provides hundreds of
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    38
theorems about multiplication, division, etc., that can be brought to
10881
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
    39
bear.  You can locate them using Proof General's Find
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
    40
button.  A few lemmas are given below to show what
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
    41
is available.
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    42
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    43
\subsection{Numeric Literals}
10779
nipkow
parents: 10777
diff changeset
    44
\label{sec:numerals}
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    45
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
    46
\index{numeric literals|(}%
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
    47
The constants \cdx{0} and \cdx{1} are overloaded.  They denote zero and one,
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
    48
respectively, for all numeric types.  Other values are expressed by numeric
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
    49
literals, which consist of one or more decimal digits optionally preceeded by
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
    50
a minus sign (\isa{-}).  Examples are \isa{2}, \isa{-3} and
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
    51
\isa{441223334678}.  Literals are available for the types of natural numbers,
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
    52
integers and reals; they denote integer values of arbitrary size.
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    53
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    54
Literals look like constants, but they abbreviate 
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
    55
terms representing the number in a two's complement binary notation. 
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
    56
Isabelle performs arithmetic on literals by rewriting rather 
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    57
than using the hardware arithmetic. In most cases arithmetic 
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    58
is fast enough, even for large numbers. The arithmetic operations 
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
    59
provided for literals include addition, subtraction, multiplication, 
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
    60
integer division and remainder.  Fractions of literals (expressed using
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
    61
division) are reduced to lowest terms.
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    62
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
    63
\begin{warn}\index{overloading!and arithmetic}
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
    64
The arithmetic operators are 
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    65
overloaded, so you must be careful to ensure that each numeric 
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    66
expression refers to a specific type, if necessary by inserting 
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    67
type constraints.  Here is an example of what can go wrong:
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
    68
\par
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    69
\begin{isabelle}
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
    70
\isacommand{lemma}\ "2\ *\ m\ =\ m\ +\ m"
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    71
\end{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    72
%
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    73
Carefully observe how Isabelle displays the subgoal:
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    74
\begin{isabelle}
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
    75
\ 1.\ (2::'a)\ *\ m\ =\ m\ +\ m
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    76
\end{isabelle}
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
    77
The type \isa{'a} given for the literal \isa{2} warns us that no numeric
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    78
type has been specified.  The problem is underspecified.  Given a type
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    79
constraint such as \isa{nat}, \isa{int} or \isa{real}, it becomes trivial.
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
    80
\end{warn}
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
    81
10881
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
    82
\begin{warn}
11428
332347b9b942 tidying the index
paulson
parents: 11416
diff changeset
    83
\index{recdef@\isacommand {recdef} (command)!and numeric literals}  
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
    84
Numeric literals are not constructors and therefore
91886738773a indexing
paulson
parents: 11389
diff changeset
    85
must not be used in patterns.  For example, this declaration is
91886738773a indexing
paulson
parents: 11389
diff changeset
    86
rejected:
10881
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
    87
\begin{isabelle}
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
    88
\isacommand{recdef}\ h\ "\isacharbraceleft \isacharbraceright "\isanewline
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
    89
"h\ 3\ =\ 2"\isanewline
11148
79aa2932b2d7 *** empty log message ***
nipkow
parents: 10983
diff changeset
    90
"h\ i\ \ =\ i"
10881
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
    91
\end{isabelle}
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
    92
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
    93
You should use a conditional expression instead:
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
    94
\begin{isabelle}
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
    95
"h\ i\ =\ (if\ i\ =\ 3\ then\ 2\ else\ i)"
10881
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
    96
\end{isabelle}
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
    97
\index{numeric literals|)}
10881
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
    98
\end{warn}
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
    99
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   100
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   101
11216
279004936bb0 *** empty log message ***
nipkow
parents: 11174
diff changeset
   102
\subsection{The Type of Natural Numbers, {\tt\slshape nat}}
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   103
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   104
\index{natural numbers|(}\index{*nat (type)|(}%
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   105
This type requires no introduction: we have been using it from the
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   106
beginning.  Hundreds of theorems about the natural numbers are
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   107
proved in the theories \isa{Nat}, \isa{NatArith} and \isa{Divides}.  Only
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   108
in exceptional circumstances should you resort to induction.
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   109
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   110
\subsubsection{Literals}
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   111
\index{numeric literals!for type \protect\isa{nat}}%
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   112
The notational options for the natural  numbers are confusing.  Recall that an
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   113
overloaded constant can be defined independently for each type; the definition
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   114
of \cdx{1} for type \isa{nat} is
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   115
\begin{isabelle}
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   116
1\ \isasymequiv\ Suc\ 0
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   117
\rulename{One_nat_def}
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   118
\end{isabelle}
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   119
This is installed as a simplification rule, so the simplifier will replace
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   120
every occurrence of \isa{1::nat} by \isa{Suc\ 0}.  Literals are obviously
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   121
better than nested \isa{Suc}s at expressing large values.  But many theorems,
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   122
including the rewrite rules for primitive recursive functions, can only be
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   123
applied to terms of the form \isa{Suc\ $n$}.
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   124
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   125
The following default  simplification rules replace
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   126
small literals by zero and successor: 
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   127
\begin{isabelle}
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   128
2\ +\ n\ =\ Suc\ (Suc\ n)
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   129
\rulename{add_2_eq_Suc}\isanewline
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   130
n\ +\ 2\ =\ Suc\ (Suc\ n)
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   131
\rulename{add_2_eq_Suc'}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   132
\end{isabelle}
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   133
It is less easy to transform \isa{100} into \isa{Suc\ 99} (for example), and
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   134
the simplifier will normally reverse this transformation.  Novices should
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   135
express natural numbers using \isa{0} and \isa{Suc} only.
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   136
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   137
\subsubsection{Typical lemmas}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   138
Inequalities involving addition and subtraction alone can be proved
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   139
automatically.  Lemmas such as these can be used to prove inequalities
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   140
involving multiplication and division:
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   141
\begin{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   142
\isasymlbrakk i\ \isasymle \ j;\ k\ \isasymle \ l\isasymrbrakk \ \isasymLongrightarrow \ i\ *\ k\ \isasymle \ j\ *\ l%
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   143
\rulename{mult_le_mono}\isanewline
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   144
\isasymlbrakk i\ <\ j;\ 0\ <\ k\isasymrbrakk \ \isasymLongrightarrow \ i\
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   145
*\ k\ <\ j\ *\ k%
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   146
\rulename{mult_less_mono1}\isanewline
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   147
m\ \isasymle \ n\ \isasymLongrightarrow \ m\ div\ k\ \isasymle \ n\ div\ k%
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   148
\rulename{div_le_mono}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   149
\end{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   150
%
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   151
Various distributive laws concerning multiplication are available:
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   152
\begin{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   153
(m\ +\ n)\ *\ k\ =\ m\ *\ k\ +\ n\ *\ k%
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   154
\rulenamedx{add_mult_distrib}\isanewline
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   155
(m\ -\ n)\ *\ k\ =\ m\ *\ k\ -\ n\ *\ k%
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   156
\rulenamedx{diff_mult_distrib}\isanewline
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   157
(m\ mod\ n)\ *\ k\ =\ (m\ *\ k)\ mod\ (n\ *\ k)
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   158
\rulenamedx{mod_mult_distrib}
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   159
\end{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   160
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   161
\subsubsection{Division}
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   162
\index{division!for type \protect\isa{nat}}%
10881
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
   163
The infix operators \isa{div} and \isa{mod} are overloaded.
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
   164
Isabelle/HOL provides the basic facts about quotient and remainder
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
   165
on the natural numbers:
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   166
\begin{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   167
m\ mod\ n\ =\ (if\ m\ <\ n\ then\ m\ else\ (m\ -\ n)\ mod\ n)
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   168
\rulename{mod_if}\isanewline
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   169
m\ div\ n\ *\ n\ +\ m\ mod\ n\ =\ m%
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   170
\rulenamedx{mod_div_equality}
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   171
\end{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   172
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   173
Many less obvious facts about quotient and remainder are also provided. 
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   174
Here is a selection:
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   175
\begin{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   176
a\ *\ b\ div\ c\ =\ a\ *\ (b\ div\ c)\ +\ a\ *\ (b\ mod\ c)\ div\ c%
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   177
\rulename{div_mult1_eq}\isanewline
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   178
a\ *\ b\ mod\ c\ =\ a\ *\ (b\ mod\ c)\ mod\ c%
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   179
\rulename{mod_mult1_eq}\isanewline
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   180
a\ div\ (b*c)\ =\ a\ div\ b\ div\ c%
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   181
\rulename{div_mult2_eq}\isanewline
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   182
a\ mod\ (b*c)\ =\ b * (a\ div\ b\ mod\ c)\ +\ a\ mod\ b%
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   183
\rulename{mod_mult2_eq}\isanewline
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   184
0\ <\ c\ \isasymLongrightarrow \ (c\ *\ a)\ div\ (c\ *\ b)\ =\ a\ div\ b%
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   185
\rulename{div_mult_mult1}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   186
\end{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   187
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   188
Surprisingly few of these results depend upon the
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   189
divisors' being nonzero.
91886738773a indexing
paulson
parents: 11389
diff changeset
   190
\index{division!by zero}%
91886738773a indexing
paulson
parents: 11389
diff changeset
   191
That is because division by
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   192
zero yields zero:
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   193
\begin{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   194
a\ div\ 0\ =\ 0
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   195
\rulename{DIVISION_BY_ZERO_DIV}\isanewline
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   196
a\ mod\ 0\ =\ a%
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   197
\rulename{DIVISION_BY_ZERO_MOD}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   198
\end{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   199
As a concession to convention, these equations are not installed as default
11174
96a533d300a6 revisions in response to comments by Tobias
paulson
parents: 11161
diff changeset
   200
simplification rules.  In \isa{div_mult_mult1} above, one of
11161
166f7d87b37f *** empty log message ***
nipkow
parents: 11148
diff changeset
   201
the two divisors (namely~\isa{c}) must still be nonzero.
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   202
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   203
The \textbf{divides} relation\index{divides relation}
91886738773a indexing
paulson
parents: 11389
diff changeset
   204
has the standard definition, which
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   205
is overloaded over all numeric types: 
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   206
\begin{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   207
m\ dvd\ n\ \isasymequiv\ {\isasymexists}k.\ n\ =\ m\ *\ k
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   208
\rulenamedx{dvd_def}
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   209
\end{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   210
%
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   211
Section~\ref{sec:proving-euclid} discusses proofs involving this
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   212
relation.  Here are some of the facts proved about it:
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   213
\begin{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   214
\isasymlbrakk m\ dvd\ n;\ n\ dvd\ m\isasymrbrakk \ \isasymLongrightarrow \ m\ =\ n%
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   215
\rulenamedx{dvd_anti_sym}\isanewline
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   216
\isasymlbrakk k\ dvd\ m;\ k\ dvd\ n\isasymrbrakk \ \isasymLongrightarrow \ k\ dvd\ (m\ +\ n)
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   217
\rulenamedx{dvd_add}
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   218
\end{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   219
11216
279004936bb0 *** empty log message ***
nipkow
parents: 11174
diff changeset
   220
\subsubsection{Simplifier Tricks}
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   221
The rule \isa{diff_mult_distrib} shown above is one of the few facts
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   222
about \isa{m\ -\ n} that is not subject to
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   223
the condition \isa{n\ \isasymle \  m}.  Natural number subtraction has few
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   224
nice properties; often you should remove it by simplifying with this split
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   225
rule:
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   226
\begin{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   227
P(a-b)\ =\ ((a<b\ \isasymlongrightarrow \ P\
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   228
0)\ \isasymand \ (\isasymforall d.\ a\ =\ b+d\ \isasymlongrightarrow \ P\
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   229
d))
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   230
\rulename{nat_diff_split}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   231
\end{isabelle}
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   232
For example, splitting helps to prove the following fact:
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   233
\begin{isabelle}
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   234
\isacommand{lemma}\ "(n\ -\ 2)\ *\ (n\ +\ 2)\ =\ n\ *\ n\ -\ (4::nat)"\isanewline
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   235
\isacommand{apply}\ (simp\ split:\ nat_diff_split,\ clarify)\isanewline
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   236
\ 1.\ \isasymAnd d.\ \isasymlbrakk n\ <\ 2;\ n\ *\ n\ =\ 4\ +\ d\isasymrbrakk \ \isasymLongrightarrow \ d\ =\ 0
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   237
\end{isabelle}
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   238
The result lies outside the scope of linear arithmetic, but
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   239
 it is easily found
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   240
if we explicitly split \isa{n<2} as \isa{n=0} or \isa{n=1}:
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   241
\begin{isabelle}
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   242
\isacommand{apply}\ (subgoal_tac\ "n=0\ |\ n=1",\ force,\ arith)\isanewline
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   243
\isacommand{done}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   244
\end{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   245
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   246
Suppose that two expressions are equal, differing only in 
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   247
associativity and commutativity of addition.  Simplifying with the
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   248
following equations sorts the terms and groups them to the right, making
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   249
the two expressions identical:
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   250
\begin{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   251
m\ +\ n\ +\ k\ =\ m\ +\ (n\ +\ k)
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   252
\rulenamedx{add_assoc}\isanewline
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   253
m\ +\ n\ =\ n\ +\ m%
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   254
\rulenamedx{add_commute}\isanewline
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   255
x\ +\ (y\ +\ z)\ =\ y\ +\ (x\
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   256
+\ z)
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   257
\rulename{add_left_commute}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   258
\end{isabelle}
11494
23a118849801 revisions and indexing
paulson
parents: 11480
diff changeset
   259
The name \isa{add_ac}\index{*add_ac (theorems)} 
23a118849801 revisions and indexing
paulson
parents: 11480
diff changeset
   260
refers to the list of all three theorems; similarly
23a118849801 revisions and indexing
paulson
parents: 11480
diff changeset
   261
there is \isa{mult_ac}.\index{*mult_ac (theorems)} 
23a118849801 revisions and indexing
paulson
parents: 11480
diff changeset
   262
Here is an example of the sorting effect.  Start
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   263
with this goal:
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   264
\begin{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   265
\ 1.\ Suc\ (i\ +\ j\ *\ l\ *\ k\ +\ m\ *\ n)\ =\
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   266
f\ (n\ *\ m\ +\ i\ +\ k\ *\ j\ *\ l)
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   267
\end{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   268
%
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   269
Simplify using  \isa{add_ac} and \isa{mult_ac}:
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   270
\begin{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   271
\isacommand{apply}\ (simp\ add:\ add_ac\ mult_ac)
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   272
\end{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   273
%
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   274
Here is the resulting subgoal:
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   275
\begin{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   276
\ 1.\ Suc\ (i\ +\ (m\ *\ n\ +\ j\ *\ (k\ *\ l)))\
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   277
=\ f\ (i\ +\ (m\ *\ n\ +\ j\ *\ (k\ *\ l)))%
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   278
\end{isabelle}%
91886738773a indexing
paulson
parents: 11389
diff changeset
   279
\index{natural numbers|)}\index{*nat (type)|)}
91886738773a indexing
paulson
parents: 11389
diff changeset
   280
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   281
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   282
11216
279004936bb0 *** empty log message ***
nipkow
parents: 11174
diff changeset
   283
\subsection{The Type of Integers, {\tt\slshape int}}
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   284
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   285
\index{integers|(}\index{*int (type)|(}%
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   286
Reasoning methods resemble those for the natural numbers, but induction and
10881
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
   287
the constant \isa{Suc} are not available.  HOL provides many lemmas
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   288
for proving inequalities involving integer multiplication and division,
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   289
similar to those shown above for type~\isa{nat}.  
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   290
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   291
The \rmindex{absolute value} function \cdx{abs} is overloaded for the numeric types.
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   292
It is defined for the integers; we have for example the obvious law
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   293
\begin{isabelle}
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   294
\isasymbar x\ *\ y\isasymbar \ =\ \isasymbar x\isasymbar \ *\ \isasymbar y\isasymbar 
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   295
\rulename{abs_mult}
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   296
\end{isabelle}
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   297
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   298
\begin{warn}
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   299
The absolute value bars shown above cannot be typed on a keyboard.  They
10983
59961d32b1ae *** empty log message ***
nipkow
parents: 10978
diff changeset
   300
can be entered using the X-symbol package.  In \textsc{ascii}, type \isa{abs x} to
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   301
get \isa{\isasymbar x\isasymbar}.
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   302
\end{warn}
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   303
10881
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
   304
The \isa{arith} method can prove facts about \isa{abs} automatically, 
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
   305
though as it does so by case analysis, the cost can be exponential.
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
   306
\begin{isabelle}
11174
96a533d300a6 revisions in response to comments by Tobias
paulson
parents: 11161
diff changeset
   307
\isacommand{lemma}\ "abs\ (x+y)\ \isasymle \ abs\ x\ +\ abs\ (y\ ::\ int)"\isanewline
10881
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
   308
\isacommand{by}\ arith
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
   309
\end{isabelle}
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   310
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   311
Concerning simplifier tricks, we have no need to eliminate subtraction: it
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   312
is well-behaved.  As with the natural numbers, the simplifier can sort the
11494
23a118849801 revisions and indexing
paulson
parents: 11480
diff changeset
   313
operands of sums and products.  The name \isa{zadd_ac}\index{*zadd_ac (theorems)}
23a118849801 revisions and indexing
paulson
parents: 11480
diff changeset
   314
refers to the
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   315
associativity and commutativity theorems for integer addition, while
11494
23a118849801 revisions and indexing
paulson
parents: 11480
diff changeset
   316
\isa{zmult_ac}\index{*zmult_ac (theorems)}
23a118849801 revisions and indexing
paulson
parents: 11480
diff changeset
   317
has the analogous theorems for multiplication.  The
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   318
prefix~\isa{z} in many theorem names recalls the use of $\mathbb{Z}$ to
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   319
denote the set of integers.
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   320
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   321
For division and remainder,\index{division!by negative numbers}
91886738773a indexing
paulson
parents: 11389
diff changeset
   322
the treatment of negative divisors follows
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   323
mathematical practice: the sign of the remainder follows that
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   324
of the divisor:
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   325
\begin{isabelle}
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   326
0\ <\ b\ \isasymLongrightarrow \ 0\ \isasymle \ a\ mod\ b%
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   327
\rulename{pos_mod_sign}\isanewline
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   328
0\ <\ b\ \isasymLongrightarrow \ a\ mod\ b\ <\ b%
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   329
\rulename{pos_mod_bound}\isanewline
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   330
b\ <\ 0\ \isasymLongrightarrow \ a\ mod\ b\ \isasymle \ 0
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   331
\rulename{neg_mod_sign}\isanewline
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   332
b\ <\ 0\ \isasymLongrightarrow \ b\ <\ a\ mod\ b%
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   333
\rulename{neg_mod_bound}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   334
\end{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   335
ML treats negative divisors in the same way, but most computer hardware
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   336
treats signed operands using the same rules as for multiplication.
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   337
Many facts about quotients and remainders are provided:
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   338
\begin{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   339
(a\ +\ b)\ div\ c\ =\isanewline
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   340
a\ div\ c\ +\ b\ div\ c\ +\ (a\ mod\ c\ +\ b\ mod\ c)\ div\ c%
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   341
\rulename{zdiv_zadd1_eq}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   342
\par\smallskip
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   343
(a\ +\ b)\ mod\ c\ =\ (a\ mod\ c\ +\ b\ mod\ c)\ mod\ c%
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   344
\rulename{zmod_zadd1_eq}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   345
\end{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   346
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   347
\begin{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   348
(a\ *\ b)\ div\ c\ =\ a\ *\ (b\ div\ c)\ +\ a\ *\ (b\ mod\ c)\ div\ c%
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   349
\rulename{zdiv_zmult1_eq}\isanewline
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   350
(a\ *\ b)\ mod\ c\ =\ a\ *\ (b\ mod\ c)\ mod\ c%
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   351
\rulename{zmod_zmult1_eq}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   352
\end{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   353
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   354
\begin{isabelle}
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   355
0\ <\ c\ \isasymLongrightarrow \ a\ div\ (b*c)\ =\ a\ div\ b\ div\ c%
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   356
\rulename{zdiv_zmult2_eq}\isanewline
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   357
0\ <\ c\ \isasymLongrightarrow \ a\ mod\ (b*c)\ =\ b*(a\ div\ b\ mod\
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   358
c)\ +\ a\ mod\ b%
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   359
\rulename{zmod_zmult2_eq}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   360
\end{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   361
The last two differ from their natural number analogues by requiring
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   362
\isa{c} to be positive.  Since division by zero yields zero, we could allow
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   363
\isa{c} to be zero.  However, \isa{c} cannot be negative: a counterexample
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   364
is
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   365
$\isa{a} = 7$, $\isa{b} = 2$ and $\isa{c} = -3$, when the left-hand side of
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   366
\isa{zdiv_zmult2_eq} is $-2$ while the right-hand side is~$-1$.%
91886738773a indexing
paulson
parents: 11389
diff changeset
   367
\index{integers|)}\index{*int (type)|)}
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   368
13979
4c3a638828b9 HOL-Complex
paulson
parents: 13750
diff changeset
   369
Induction is less important for integers than it is for the natural numbers, but it can be valuable if the range of integers has a lower or upper bound.  There are four rules for integer induction, corresponding to the possible relations of the bound ($\geq$, $>$, $\leq$ and $<$):
13750
b5cd10cb106b integer induction rules
paulson
parents: 12333
diff changeset
   370
\begin{isabelle}
b5cd10cb106b integer induction rules
paulson
parents: 12333
diff changeset
   371
\isasymlbrakk k\ \isasymle \ i;\ P\ k;\ \isasymAnd i.\ \isasymlbrakk k\ \isasymle \ i;\ P\ i\isasymrbrakk \ \isasymLongrightarrow \ P(i+1)\isasymrbrakk \ \isasymLongrightarrow \ P\ i%
b5cd10cb106b integer induction rules
paulson
parents: 12333
diff changeset
   372
\rulename{int_ge_induct}\isanewline
b5cd10cb106b integer induction rules
paulson
parents: 12333
diff changeset
   373
\isasymlbrakk k\ <\ i;\ P(k+1);\ \isasymAnd i.\ \isasymlbrakk k\ <\ i;\ P\ i\isasymrbrakk \ \isasymLongrightarrow \ P(i+1)\isasymrbrakk \ \isasymLongrightarrow \ P\ i%
b5cd10cb106b integer induction rules
paulson
parents: 12333
diff changeset
   374
\rulename{int_gr_induct}\isanewline
b5cd10cb106b integer induction rules
paulson
parents: 12333
diff changeset
   375
\isasymlbrakk i\ \isasymle \ k;\ P\ k;\ \isasymAnd i.\ \isasymlbrakk i\ \isasymle \ k;\ P\ i\isasymrbrakk \ \isasymLongrightarrow \ P(i-1)\isasymrbrakk \ \isasymLongrightarrow \ P\ i%
b5cd10cb106b integer induction rules
paulson
parents: 12333
diff changeset
   376
\rulename{int_le_induct}\isanewline
b5cd10cb106b integer induction rules
paulson
parents: 12333
diff changeset
   377
\isasymlbrakk i\ <\ k;\ P(k-1);\ \isasymAnd i.\ \isasymlbrakk i\ <\ k;\ P\ i\isasymrbrakk \ \isasymLongrightarrow \ P(i-1)\isasymrbrakk \ \isasymLongrightarrow \ P\ i%
b5cd10cb106b integer induction rules
paulson
parents: 12333
diff changeset
   378
\rulename{int_less_induct}
b5cd10cb106b integer induction rules
paulson
parents: 12333
diff changeset
   379
\end{isabelle}
b5cd10cb106b integer induction rules
paulson
parents: 12333
diff changeset
   380
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   381
11216
279004936bb0 *** empty log message ***
nipkow
parents: 11174
diff changeset
   382
\subsection{The Type of Real Numbers, {\tt\slshape real}}
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   383
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   384
\index{real numbers|(}\index{*real (type)|(}%
10777
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   385
The real numbers enjoy two significant properties that the integers lack. 
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   386
They are
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   387
\textbf{dense}: between every two distinct real numbers there lies another.
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   388
This property follows from the division laws, since if $x<y$ then between
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   389
them lies $(x+y)/2$.  The second property is that they are
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   390
\textbf{complete}: every set of reals that is bounded above has a least
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   391
upper bound.  Completeness distinguishes the reals from the rationals, for
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   392
which the set $\{x\mid x^2<2\}$ has no least upper bound.  (It could only be
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   393
$\surd2$, which is irrational.)
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   394
The formalization of completeness is complicated; rather than
10777
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   395
reproducing it here, we refer you to the theory \texttt{RComplete} in
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   396
directory \texttt{Real}.
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   397
Density, however, is trivial to express:
10777
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   398
\begin{isabelle}
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   399
x\ <\ y\ \isasymLongrightarrow \ \isasymexists r.\ x\ <\ r\ \isasymand \ r\ <\ y%
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   400
\rulename{real_dense}
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   401
\end{isabelle}
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   402
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   403
Here is a selection of rules about the division operator.  The following
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   404
are installed as default simplification rules in order to express
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   405
combinations of products and quotients as rational expressions:
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   406
\begin{isabelle}
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 13996
diff changeset
   407
a\ *\ (b\ /\ c)\ =\ a\ *\ b\ /\ c
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 13996
diff changeset
   408
\rulename{times_divide_eq_right}\isanewline
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 13996
diff changeset
   409
b\ /\ c\ *\ a\ =\ b\ *\ a\ /\ c
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 13996
diff changeset
   410
\rulename{times_divide_eq_left}\isanewline
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 13996
diff changeset
   411
a\ /\ (b\ /\ c)\ =\ a\ *\ c\ /\ b
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 13996
diff changeset
   412
\rulename{divide_divide_eq_right}\isanewline
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 13996
diff changeset
   413
a\ /\ b\ /\ c\ =\ a\ /\ (b\ *\ c)
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 13996
diff changeset
   414
\rulename{divide_divide_eq_left}
10777
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   415
\end{isabelle}
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   416
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   417
Signs are extracted from quotients in the hope that complementary terms can
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   418
then be cancelled:
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   419
\begin{isabelle}
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   420
-\ x\ /\ y\ =\ -\ (x\ /\ y)
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   421
\rulename{real_minus_divide_eq}\isanewline
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   422
x\ /\ -\ y\ =\ -\ (x\ /\ y)
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   423
\rulename{real_divide_minus_eq}
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   424
\end{isabelle}
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   425
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   426
The following distributive law is available, but it is not installed as a
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   427
simplification rule.
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   428
\begin{isabelle}
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   429
(x\ +\ y)\ /\ z\ =\ x\ /\ z\ +\ y\ /\ z%
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   430
\rulename{real_add_divide_distrib}
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   431
\end{isabelle}
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   432
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   433
As with the other numeric types, the simplifier can sort the operands of
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   434
addition and multiplication.  The name \isa{real_add_ac} refers to the
10777
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   435
associativity and commutativity theorems for addition, while similarly
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   436
\isa{real_mult_ac} contains those properties for multiplication. 
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   437
10777
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   438
The absolute value function \isa{abs} is
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   439
defined for the reals, along with many theorems such as this one about
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   440
exponentiation:
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   441
\begin{isabelle}
12333
ef43a3d6e962 minor tweaks
paulson
parents: 12156
diff changeset
   442
\isasymbar r\ \isacharcircum \ n\isasymbar\ =\ 
ef43a3d6e962 minor tweaks
paulson
parents: 12156
diff changeset
   443
\isasymbar r\isasymbar \ \isacharcircum \ n
10777
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   444
\rulename{realpow_abs}
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   445
\end{isabelle}
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   446
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   447
Numeric literals\index{numeric literals!for type \protect\isa{real}}
91886738773a indexing
paulson
parents: 11389
diff changeset
   448
for type \isa{real} have the same syntax as those for type
11174
96a533d300a6 revisions in response to comments by Tobias
paulson
parents: 11161
diff changeset
   449
\isa{int} and only express integral values.  Fractions expressed
96a533d300a6 revisions in response to comments by Tobias
paulson
parents: 11161
diff changeset
   450
using the division operator are automatically simplified to lowest terms:
96a533d300a6 revisions in response to comments by Tobias
paulson
parents: 11161
diff changeset
   451
\begin{isabelle}
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   452
\ 1.\ P\ ((3\ /\ 4)\ *\ (8\ /\ 15))\isanewline
11174
96a533d300a6 revisions in response to comments by Tobias
paulson
parents: 11161
diff changeset
   453
\isacommand{apply} simp\isanewline
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   454
\ 1.\ P\ (2\ /\ 5)
11174
96a533d300a6 revisions in response to comments by Tobias
paulson
parents: 11161
diff changeset
   455
\end{isabelle}
96a533d300a6 revisions in response to comments by Tobias
paulson
parents: 11161
diff changeset
   456
Exponentiation can express floating-point values such as
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   457
\isa{2 * 10\isacharcircum6}, but at present no special simplification
11174
96a533d300a6 revisions in response to comments by Tobias
paulson
parents: 11161
diff changeset
   458
is performed.
96a533d300a6 revisions in response to comments by Tobias
paulson
parents: 11161
diff changeset
   459
96a533d300a6 revisions in response to comments by Tobias
paulson
parents: 11161
diff changeset
   460
10881
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
   461
\begin{warn}
13983
afc0dadddaa4 now refers to Complex and Complex_Main
paulson
parents: 13979
diff changeset
   462
Type \isa{real} is only available in the logic HOL-Complex, which
afc0dadddaa4 now refers to Complex and Complex_Main
paulson
parents: 13979
diff changeset
   463
is  HOL extended with a definitional development of the real and complex
11174
96a533d300a6 revisions in response to comments by Tobias
paulson
parents: 11161
diff changeset
   464
numbers.  Base your theory upon theory
13983
afc0dadddaa4 now refers to Complex and Complex_Main
paulson
parents: 13979
diff changeset
   465
\thydx{Complex_Main}, not the usual \isa{Main}.%
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   466
\index{real numbers|)}\index{*real (type)|)}
91886738773a indexing
paulson
parents: 11389
diff changeset
   467
Launch Isabelle using the command 
11174
96a533d300a6 revisions in response to comments by Tobias
paulson
parents: 11161
diff changeset
   468
\begin{verbatim}
13983
afc0dadddaa4 now refers to Complex and Complex_Main
paulson
parents: 13979
diff changeset
   469
Isabelle -l HOL-Complex
11174
96a533d300a6 revisions in response to comments by Tobias
paulson
parents: 11161
diff changeset
   470
\end{verbatim}
10881
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
   471
\end{warn}
10777
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   472
13983
afc0dadddaa4 now refers to Complex and Complex_Main
paulson
parents: 13979
diff changeset
   473
Also available in HOL-Complex is the
afc0dadddaa4 now refers to Complex and Complex_Main
paulson
parents: 13979
diff changeset
   474
theory \isa{Hyperreal}, which define the type \tydx{hypreal} of 
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   475
\rmindex{non-standard reals}.  These
10777
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   476
\textbf{hyperreals} include infinitesimals, which represent infinitely
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   477
small and infinitely large quantities; they facilitate proofs
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   478
about limits, differentiation and integration~\cite{fleuriot-jcm}.  The
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   479
development defines an infinitely large number, \isa{omega} and an
10881
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
   480
infinitely small positive number, \isa{epsilon}.  The 
12333
ef43a3d6e962 minor tweaks
paulson
parents: 12156
diff changeset
   481
relation $x\approx y$ means ``$x$ is infinitely close to~$y$.''
ef43a3d6e962 minor tweaks
paulson
parents: 12156
diff changeset
   482
Theory \isa{Hyperreal} also defines transcendental functions such as sine,
ef43a3d6e962 minor tweaks
paulson
parents: 12156
diff changeset
   483
cosine, exponential and logarithm --- even the versions for type
ef43a3d6e962 minor tweaks
paulson
parents: 12156
diff changeset
   484
\isa{real}, because they are defined using nonstandard limits.%
13996
a994b92ab1ea *** empty log message ***
nipkow
parents: 13983
diff changeset
   485
\index{numbers|)}