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