doc-src/TutorialI/Types/numerics.tex
author nipkow
Wed, 22 Jun 2005 09:26:18 +0200
changeset 16523 f8a734dc0fbc
parent 16412 50eab0183aea
child 21243 afffe1f72143
permissions -rw-r--r--
*** empty log message ***
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
14400
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
    13
subtraction.  With subtraction, arithmetic reasoning is easier, which makes
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
    14
the integers preferable to the natural numbers for
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
    15
complicated arithmetic expressions, even if they are non-negative.  The logic HOL-Complex also has the types
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
    16
\isa{rat}, \isa{real} and \isa{complex}: the rational, real and complex numbers.  Isabelle has no 
13979
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.
14400
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
    19
Most numeric operations are overloaded: the same symbol can be
11174
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
14400
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
    22
infix symbols. Algebraic properties are organized using type classes
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
    23
around algebraic concepts such as rings and fields;
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
    24
a property such as the commutativity of addition is a single theorem 
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
    25
(\isa{add_commute}) that applies to all numeric types.
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    26
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
    27
\index{linear arithmetic}%
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    28
Many theorems involving numeric types can be proved automatically by
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    29
Isabelle's arithmetic decision procedure, the method
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
    30
\methdx{arith}.  Linear arithmetic comprises addition, subtraction
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    31
and multiplication by constant factors; subterms involving other operators
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    32
are regarded as variables.  The procedure can be slow, especially if the
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    33
subgoal to be proved involves subtraction over type \isa{nat}, which 
13996
a994b92ab1ea *** empty log message ***
nipkow
parents: 13983
diff changeset
    34
causes case splits.  On types \isa{nat} and \isa{int}, \methdx{arith}
14400
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
    35
can deal with quantifiers---this is known as Presburger arithmetic---whereas on type \isa{real} it cannot.
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    36
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    37
The simplifier reduces arithmetic expressions in other
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    38
ways, such as dividing through by common factors.  For problems that lie
10881
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
    39
outside the scope of automation, HOL provides hundreds of
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    40
theorems about multiplication, division, etc., that can be brought to
10881
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
    41
bear.  You can locate them using Proof General's Find
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
    42
button.  A few lemmas are given below to show what
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
    43
is available.
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    44
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    45
\subsection{Numeric Literals}
10779
nipkow
parents: 10777
diff changeset
    46
\label{sec:numerals}
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    47
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
    48
\index{numeric literals|(}%
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
    49
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
    50
respectively, for all numeric types.  Other values are expressed by numeric
14400
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
    51
literals, which consist of one or more decimal digits optionally preceeded by a minus sign (\isa{-}).  Examples are \isa{2}, \isa{-3} and
\isa{441223334678}.  Literals are available for the types of natural
numbers, integers, rationals, reals, etc.; they denote integer values of
arbitrary size.
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    52
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    53
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
    54
terms representing the number in a two's complement binary notation. 
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
    55
Isabelle performs arithmetic on literals by rewriting rather 
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    56
than using the hardware arithmetic. In most cases arithmetic 
14400
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
    57
is fast enough, even for numbers in the millions. The arithmetic operations 
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
    58
provided for literals include addition, subtraction, multiplication, 
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
    59
integer division and remainder.  Fractions of literals (expressed using
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
    60
division) are reduced to lowest terms.
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    61
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
    62
\begin{warn}\index{overloading!and arithmetic}
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
    63
The arithmetic operators are 
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    64
overloaded, so you must be careful to ensure that each numeric 
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    65
expression refers to a specific type, if necessary by inserting 
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    66
type constraints.  Here is an example of what can go wrong:
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
    67
\par
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    68
\begin{isabelle}
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
    69
\isacommand{lemma}\ "2\ *\ m\ =\ m\ +\ m"
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    70
\end{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    71
%
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    72
Carefully observe how Isabelle displays the subgoal:
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    73
\begin{isabelle}
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
    74
\ 1.\ (2::'a)\ *\ m\ =\ m\ +\ m
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    75
\end{isabelle}
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
    76
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
    77
type has been specified.  The problem is underspecified.  Given a type
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    78
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
    79
\end{warn}
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
    80
10881
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
    81
\begin{warn}
11428
332347b9b942 tidying the index
paulson
parents: 11416
diff changeset
    82
\index{recdef@\isacommand {recdef} (command)!and numeric literals}  
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
    83
Numeric literals are not constructors and therefore
91886738773a indexing
paulson
parents: 11389
diff changeset
    84
must not be used in patterns.  For example, this declaration is
91886738773a indexing
paulson
parents: 11389
diff changeset
    85
rejected:
10881
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
    86
\begin{isabelle}
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
    87
\isacommand{recdef}\ h\ "\isacharbraceleft \isacharbraceright "\isanewline
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
    88
"h\ 3\ =\ 2"\isanewline
11148
79aa2932b2d7 *** empty log message ***
nipkow
parents: 10983
diff changeset
    89
"h\ i\ \ =\ i"
10881
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
    90
\end{isabelle}
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
    91
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
    92
You should use a conditional expression instead:
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
    93
\begin{isabelle}
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
    94
"h\ i\ =\ (if\ i\ =\ 3\ then\ 2\ else\ i)"
10881
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
    95
\end{isabelle}
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
    96
\index{numeric literals|)}
10881
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
    97
\end{warn}
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
    98
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
    99
11216
279004936bb0 *** empty log message ***
nipkow
parents: 11174
diff changeset
   100
\subsection{The Type of Natural Numbers, {\tt\slshape nat}}
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   101
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   102
\index{natural numbers|(}\index{*nat (type)|(}%
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   103
This type requires no introduction: we have been using it from the
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   104
beginning.  Hundreds of theorems about the natural numbers are
14400
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   105
proved in the theories \isa{Nat}, \isa{NatArith} and \isa{Divides}.  
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   106
Basic properties of addition and multiplication are available through the
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   107
axiomatic type class for semirings (\S\ref{sec:numeric-axclasses}).
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   108
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   109
\subsubsection{Literals}
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   110
\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
   111
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
   112
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
   113
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
   114
\begin{isabelle}
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   115
1\ \isasymequiv\ Suc\ 0
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   116
\rulename{One_nat_def}
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   117
\end{isabelle}
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   118
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
   119
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
   120
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
   121
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
   122
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
   123
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   124
The following default  simplification rules replace
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   125
small literals by zero and successor: 
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   126
\begin{isabelle}
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   127
2\ +\ n\ =\ Suc\ (Suc\ n)
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   128
\rulename{add_2_eq_Suc}\isanewline
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   129
n\ +\ 2\ =\ Suc\ (Suc\ n)
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   130
\rulename{add_2_eq_Suc'}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   131
\end{isabelle}
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   132
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
   133
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
   134
express natural numbers using \isa{0} and \isa{Suc} only.
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   135
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   136
\subsubsection{Division}
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   137
\index{division!for type \protect\isa{nat}}%
10881
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
   138
The infix operators \isa{div} and \isa{mod} are overloaded.
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
   139
Isabelle/HOL provides the basic facts about quotient and remainder
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
   140
on the natural numbers:
10594
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
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
   143
\rulename{mod_if}\isanewline
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   144
m\ div\ n\ *\ n\ +\ m\ mod\ n\ =\ m%
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   145
\rulenamedx{mod_div_equality}
10594
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
Many less obvious facts about quotient and remainder are also provided. 
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   149
Here is a selection:
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   150
\begin{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   151
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
   152
\rulename{div_mult1_eq}\isanewline
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   153
a\ *\ b\ mod\ c\ =\ a\ *\ (b\ mod\ c)\ mod\ c%
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   154
\rulename{mod_mult1_eq}\isanewline
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   155
a\ div\ (b*c)\ =\ a\ div\ b\ div\ c%
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   156
\rulename{div_mult2_eq}\isanewline
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   157
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
   158
\rulename{mod_mult2_eq}\isanewline
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   159
0\ <\ c\ \isasymLongrightarrow \ (c\ *\ a)\ div\ (c\ *\ b)\ =\ a\ div\ b%
14400
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   160
\rulename{div_mult_mult1}\isanewline
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   161
(m\ mod\ n)\ *\ k\ =\ (m\ *\ k)\ mod\ (n\ *\ k)
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   162
\rulenamedx{mod_mult_distrib}\isanewline
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   163
m\ \isasymle \ n\ \isasymLongrightarrow \ m\ div\ k\ \isasymle \ n\ div\ k%
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   164
\rulename{div_le_mono}
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   165
\end{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   166
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   167
Surprisingly few of these results depend upon the
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   168
divisors' being nonzero.
91886738773a indexing
paulson
parents: 11389
diff changeset
   169
\index{division!by zero}%
91886738773a indexing
paulson
parents: 11389
diff changeset
   170
That is because division by
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   171
zero yields zero:
10594
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\ div\ 0\ =\ 0
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   174
\rulename{DIVISION_BY_ZERO_DIV}\isanewline
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   175
a\ mod\ 0\ =\ a%
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   176
\rulename{DIVISION_BY_ZERO_MOD}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   177
\end{isabelle}
14400
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   178
In \isa{div_mult_mult1} above, one of
11161
166f7d87b37f *** empty log message ***
nipkow
parents: 11148
diff changeset
   179
the two divisors (namely~\isa{c}) must still be nonzero.
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   180
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   181
The \textbf{divides} relation\index{divides relation}
91886738773a indexing
paulson
parents: 11389
diff changeset
   182
has the standard definition, which
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   183
is overloaded over all numeric types: 
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   184
\begin{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   185
m\ dvd\ n\ \isasymequiv\ {\isasymexists}k.\ n\ =\ m\ *\ k
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   186
\rulenamedx{dvd_def}
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   187
\end{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   188
%
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   189
Section~\ref{sec:proving-euclid} discusses proofs involving this
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   190
relation.  Here are some of the facts proved about it:
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   191
\begin{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   192
\isasymlbrakk m\ dvd\ n;\ n\ dvd\ m\isasymrbrakk \ \isasymLongrightarrow \ m\ =\ n%
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   193
\rulenamedx{dvd_anti_sym}\isanewline
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   194
\isasymlbrakk k\ dvd\ m;\ k\ dvd\ n\isasymrbrakk \ \isasymLongrightarrow \ k\ dvd\ (m\ +\ n)
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   195
\rulenamedx{dvd_add}
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   196
\end{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   197
14400
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   198
\subsubsection{Subtraction}
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   199
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   200
There are no negative natural numbers, so \isa{m\ -\ n} equals zero unless 
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   201
\isa{m} exceeds~\isa{n}. The following is one of the few facts
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   202
about \isa{m\ -\ n} that is not subject to
14400
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   203
the condition \isa{n\ \isasymle \  m}. 
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   204
\begin{isabelle}
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   205
(m\ -\ n)\ *\ k\ =\ m\ *\ k\ -\ n\ *\ k%
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   206
\rulenamedx{diff_mult_distrib}
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   207
\end{isabelle}
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   208
Natural number subtraction has few
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   209
nice properties; often you should remove it by simplifying with this split
14400
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   210
rule.
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   211
\begin{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   212
P(a-b)\ =\ ((a<b\ \isasymlongrightarrow \ P\
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   213
0)\ \isasymand \ (\isasymforall d.\ a\ =\ b+d\ \isasymlongrightarrow \ P\
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   214
d))
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   215
\rulename{nat_diff_split}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   216
\end{isabelle}
14400
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   217
For example, splitting helps to prove the following fact.
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   218
\begin{isabelle}
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   219
\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
   220
\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
   221
\ 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
   222
\end{isabelle}
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   223
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
   224
 it is easily found
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   225
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
   226
\begin{isabelle}
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   227
\isacommand{apply}\ (subgoal_tac\ "n=0\ |\ n=1",\ force,\ arith)\isanewline
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   228
\isacommand{done}
14400
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   229
\end{isabelle}%%%%%%
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   230
\index{natural numbers|)}\index{*nat (type)|)}
91886738773a indexing
paulson
parents: 11389
diff changeset
   231
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   232
11216
279004936bb0 *** empty log message ***
nipkow
parents: 11174
diff changeset
   233
\subsection{The Type of Integers, {\tt\slshape int}}
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   234
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   235
\index{integers|(}\index{*int (type)|(}%
14400
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   236
Reasoning methods for the integers resemble those for the natural numbers, 
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   237
but induction and
the constant \isa{Suc} are not available.  HOL provides many lemmas for
proving inequalities involving integer multiplication and division, similar
to those shown above for type~\isa{nat}. The laws of addition, subtraction
and multiplication are available through the axiomatic type class for rings
(\S\ref{sec:numeric-axclasses}).
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   238
14400
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   239
The \rmindex{absolute value} function \cdx{abs} is overloaded, and is 
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   240
defined for all types that involve negative numbers, including the integers.
10881
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
   241
The \isa{arith} method can prove facts about \isa{abs} automatically, 
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
   242
though as it does so by case analysis, the cost can be exponential.
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
   243
\begin{isabelle}
11174
96a533d300a6 revisions in response to comments by Tobias
paulson
parents: 11161
diff changeset
   244
\isacommand{lemma}\ "abs\ (x+y)\ \isasymle \ abs\ x\ +\ abs\ (y\ ::\ int)"\isanewline
10881
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
   245
\isacommand{by}\ arith
03f06372230b abs and other small changes
paulson
parents: 10794
diff changeset
   246
\end{isabelle}
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   247
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   248
For division and remainder,\index{division!by negative numbers}
91886738773a indexing
paulson
parents: 11389
diff changeset
   249
the treatment of negative divisors follows
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   250
mathematical practice: the sign of the remainder follows that
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   251
of the divisor:
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   252
\begin{isabelle}
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   253
0\ <\ b\ \isasymLongrightarrow \ 0\ \isasymle \ a\ mod\ b%
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   254
\rulename{pos_mod_sign}\isanewline
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   255
0\ <\ b\ \isasymLongrightarrow \ a\ mod\ b\ <\ b%
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   256
\rulename{pos_mod_bound}\isanewline
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   257
b\ <\ 0\ \isasymLongrightarrow \ a\ mod\ b\ \isasymle \ 0
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   258
\rulename{neg_mod_sign}\isanewline
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   259
b\ <\ 0\ \isasymLongrightarrow \ b\ <\ a\ mod\ b%
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   260
\rulename{neg_mod_bound}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   261
\end{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   262
ML treats negative divisors in the same way, but most computer hardware
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   263
treats signed operands using the same rules as for multiplication.
10794
65d18005d802 revisions especially concerning the reals
paulson
parents: 10779
diff changeset
   264
Many facts about quotients and remainders are provided:
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   265
\begin{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   266
(a\ +\ b)\ div\ c\ =\isanewline
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   267
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
   268
\rulename{zdiv_zadd1_eq}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   269
\par\smallskip
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   270
(a\ +\ b)\ mod\ c\ =\ (a\ mod\ c\ +\ b\ mod\ c)\ mod\ c%
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   271
\rulename{zmod_zadd1_eq}
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
\begin{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   275
(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
   276
\rulename{zdiv_zmult1_eq}\isanewline
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   277
(a\ *\ b)\ mod\ c\ =\ a\ *\ (b\ mod\ c)\ mod\ c%
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   278
\rulename{zmod_zmult1_eq}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   279
\end{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   280
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   281
\begin{isabelle}
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   282
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
   283
\rulename{zdiv_zmult2_eq}\isanewline
12156
d2758965362e new-style numerals without leading #, along with generic 0 and 1
paulson
parents: 11494
diff changeset
   284
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
   285
c)\ +\ a\ mod\ b%
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   286
\rulename{zmod_zmult2_eq}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   287
\end{isabelle}
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   288
The last two differ from their natural number analogues by requiring
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   289
\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
   290
\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
   291
is
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   292
$\isa{a} = 7$, $\isa{b} = 2$ and $\isa{c} = -3$, when the left-hand side of
14400
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   293
\isa{zdiv_zmult2_eq} is $-2$ while the right-hand side is~$-1$.
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   294
The prefix~\isa{z} in many theorem names recalls the use of $\mathbb{Z}$ to
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   295
denote the set of integers.%
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   296
\index{integers|)}\index{*int (type)|)}
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   297
13979
4c3a638828b9 HOL-Complex
paulson
parents: 13750
diff changeset
   298
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
   299
\begin{isabelle}
b5cd10cb106b integer induction rules
paulson
parents: 12333
diff changeset
   300
\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
   301
\rulename{int_ge_induct}\isanewline
b5cd10cb106b integer induction rules
paulson
parents: 12333
diff changeset
   302
\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
   303
\rulename{int_gr_induct}\isanewline
b5cd10cb106b integer induction rules
paulson
parents: 12333
diff changeset
   304
\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
   305
\rulename{int_le_induct}\isanewline
b5cd10cb106b integer induction rules
paulson
parents: 12333
diff changeset
   306
\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
   307
\rulename{int_less_induct}
b5cd10cb106b integer induction rules
paulson
parents: 12333
diff changeset
   308
\end{isabelle}
b5cd10cb106b integer induction rules
paulson
parents: 12333
diff changeset
   309
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   310
14400
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   311
\subsection{The Types of Rational, Real and Complex Numbers}
16359
nipkow
parents: 14400
diff changeset
   312
\label{sec:real}
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   313
14400
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   314
\index{rational numbers|(}\index{*rat (type)|(}%
11416
91886738773a indexing
paulson
parents: 11389
diff changeset
   315
\index{real numbers|(}\index{*real (type)|(}%
14400
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   316
\index{complex numbers|(}\index{*complex (type)|(}%
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   317
These types provide true division, the overloaded operator \isa{/}, 
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   318
which differs from the operator \isa{div} of the 
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   319
natural numbers and integers. The rationals and reals are 
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   320
\textbf{dense}: between every two distinct numbers lies another.
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   321
This property follows from the division laws, since if $x\not=y$ then $(x+y)/2$ lies between them:
10777
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   322
\begin{isabelle}
14400
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   323
a\ <\ b\ \isasymLongrightarrow \ \isasymexists r.\ a\ <\ r\ \isasymand \ r\ <\ b%
14295
7f115e5c5de4 more general lemmas for Ring_and_Field
paulson
parents: 14288
diff changeset
   324
\rulename{dense}
10777
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   325
\end{isabelle}
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   326
14400
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   327
The real numbers are, moreover, \textbf{complete}: every set of reals that
is bounded above has a least upper bound.  Completeness distinguishes the
reals from the rationals, for which the set $\{x\mid x^2<2\}$ has no least
upper bound.  (It could only be $\surd2$, which is irrational. The
formalization of completeness, which is complicated, 
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   328
can be found in theory \texttt{RComplete} of directory
\texttt{Real}.
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   329
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   330
Numeric literals\index{numeric literals!for type \protect\isa{real}}
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   331
for type \isa{real} have the same syntax as those for type
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   332
\isa{int} and only express integral values.  Fractions expressed
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   333
using the division operator are automatically simplified to lowest terms:
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   334
\begin{isabelle}
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   335
\ 1.\ P\ ((3\ /\ 4)\ *\ (8\ /\ 15))\isanewline
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   336
\isacommand{apply} simp\isanewline
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   337
\ 1.\ P\ (2\ /\ 5)
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   338
\end{isabelle}
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   339
Exponentiation can express floating-point values such as
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   340
\isa{2 * 10\isacharcircum6}, but at present no special simplification
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   341
is performed.
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   342
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   343
\begin{warn}
16359
nipkow
parents: 14400
diff changeset
   344
Type \isa{real} is only available in the logic HOL-Complex, which is
nipkow
parents: 14400
diff changeset
   345
HOL extended with a definitional development of the real and complex
nipkow
parents: 14400
diff changeset
   346
numbers.  Base your theory upon theory \thydx{Complex_Main}, not the
16523
f8a734dc0fbc *** empty log message ***
nipkow
parents: 16412
diff changeset
   347
usual \isa{Main}, and set the Proof General menu item \pgmenu{Isabelle} $>$
f8a734dc0fbc *** empty log message ***
nipkow
parents: 16412
diff changeset
   348
\pgmenu{Logics} $>$ \pgmenu{HOL-Complex}.%
14400
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   349
\index{real numbers|)}\index{*real (type)|)}
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   350
\end{warn}
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   351
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   352
Also available in HOL-Complex is the
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   353
theory \isa{Hyperreal}, which define the type \tydx{hypreal} of 
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   354
\rmindex{non-standard reals}.  These
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   355
\textbf{hyperreals} include infinitesimals, which represent infinitely
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   356
small and infinitely large quantities; they facilitate proofs
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   357
about limits, differentiation and integration~\cite{fleuriot-jcm}.  The
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   358
development defines an infinitely large number, \isa{omega} and an
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   359
infinitely small positive number, \isa{epsilon}.  The 
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   360
relation $x\approx y$ means ``$x$ is infinitely close to~$y$.''
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   361
Theory \isa{Hyperreal} also defines transcendental functions such as sine,
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   362
cosine, exponential and logarithm --- even the versions for type
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   363
\isa{real}, because they are defined using nonstandard limits.%
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   364
\index{rational numbers|)}\index{*rat (type)|)}%
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   365
\index{real numbers|)}\index{*real (type)|)}%
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   366
\index{complex numbers|)}\index{*complex (type)|)}
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   367
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   368
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   369
\subsection{The Numeric Type Classes}\label{sec:numeric-axclasses}
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   370
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   371
Isabelle/HOL organises its numeric theories using axiomatic type classes.
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   372
Hundreds of basic properties are proved in the theory \isa{Ring_and_Field}.
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   373
These lemmas are available (as simprules if they were declared as such)
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   374
for all numeric types satisfying the necessary axioms. The theory defines
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   375
the following type classes:
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   376
\begin{itemize}
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   377
\item 
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   378
\tcdx{semiring} and \tcdx{ordered_semiring}: a \emph{semiring}
provides the operators \isa{+} and~\isa{*}, which are commutative and
associative, with the usual distributive law and with \isa{0} and~\isa{1}
as their respective identities. An \emph{ordered semiring} is also linearly
ordered, with addition and multiplication respecting the ordering. Type \isa{nat} is an ordered semiring.
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   379
\item 
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   380
\tcdx{ring} and \tcdx{ordered_ring}: a \emph{ring} extends a semiring
with unary minus (the additive inverse) and subtraction (both
denoted~\isa{-}). An \emph{ordered ring} includes the absolute value
function, \cdx{abs}. Type \isa{int} is an ordered ring.
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   381
\item 
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   382
\tcdx{field} and \tcdx{ordered_field}: a field extends a ring with the
multiplicative inverse (called simply \cdx{inverse} and division~(\isa{/}).
An ordered field is based on an ordered ring. Type \isa{complex} is a field, while type \isa{real} is an ordered field.
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   383
\item 
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   384
\tcdx{division_by_zero} includes all types where \isa{inverse 0 = 0}
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   385
and \isa{a / 0 = 0}. These include all of Isabelle's standard numeric types.
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   386
However, the basic properties of fields are derived without assuming
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   387
division by zero.
\end{itemize}
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   388
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   389
Theory \thydx{Ring_and_Field} proves over 250 lemmas, each of which
holds for all types in the corresponding type class. In most
cases, it is obvious whether a property is valid for a particular type. All
abstract properties involving subtraction require a ring, and therefore do
not hold for type \isa{nat}, although we have theorems such as
\isa{diff_mult_distrib} proved specifically about subtraction on
type~\isa{nat}. All abstract properties involving division require a field.
Obviously, all properties involving orderings required an ordered
structure.
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   390
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   391
The following two theorems are less obvious. Although they
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   392
mention no ordering, they require an ordered ring. However, if we have a 
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   393
field, then an ordering is no longer required.
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   394
\begin{isabelle}
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   395
(a\ *\ b\ =\ (0::'a))\ =\ (a\ =\ (0::'a)\ \isasymor \ b\ =\ (0::'a))
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   396
\rulename{mult_eq_0_iff}\isanewline
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   397
(a\ *\ c\ =\ b\ *\ c)\ =\ (c\ =\ (0::'a)\ \isasymor \ a\ =\ b)
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   398
\rulename{mult_cancel_right}
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   399
\end{isabelle}
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   400
Theorems \isa{field_mult_eq_0_iff} and \isa{field_mult_cancel_right}
16412
50eab0183aea *** empty log message ***
nipkow
parents: 16359
diff changeset
   401
express the same properties, only for fields.
50eab0183aea *** empty log message ***
nipkow
parents: 16359
diff changeset
   402
\begin{pgnote}
16523
f8a734dc0fbc *** empty log message ***
nipkow
parents: 16412
diff changeset
   403
Setting the flag \pgmenu{Isabelle} $>$ \pgmenu{Settings} $>$
f8a734dc0fbc *** empty log message ***
nipkow
parents: 16412
diff changeset
   404
\pgmenu{Show Sorts} will display the type classes of all type variables.
16412
50eab0183aea *** empty log message ***
nipkow
parents: 16359
diff changeset
   405
\end{pgnote}
50eab0183aea *** empty log message ***
nipkow
parents: 16359
diff changeset
   406
\noindent
50eab0183aea *** empty log message ***
nipkow
parents: 16359
diff changeset
   407
Here is how the theorem \isa{field_mult_cancel_right} appears with the flag set.
14400
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   408
\begin{isabelle}
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   409
((a::'a::field)\ *\ (c::'a::field)\ =\ (b::'a::field)\ *\ c)\ =\isanewline
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   410
(c\ =\ (0::'a::field)\ \isasymor \ a\ =\ b)
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   411
\end{isabelle}
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   412
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   413
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   414
\subsubsection{Simplifying with the AC-Laws}
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   415
Suppose that two expressions are equal, differing only in 
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   416
associativity and commutativity of addition.  Simplifying with the
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   417
following equations sorts the terms and groups them to the right, making
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   418
the two expressions identical.
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   419
\begin{isabelle}
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   420
a\ +\ b\ +\ c\ =\ a\ +\ (b\ +\ c)
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   421
\rulenamedx{add_assoc}\isanewline
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   422
a\ +\ b\ =\ b\ +\ a%
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   423
\rulenamedx{add_commute}\isanewline
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   424
a\ +\ (b\ +\ c)\ =\ b\ +\ (a\ +\ c)
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   425
\rulename{add_left_commute}
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   426
\end{isabelle}
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   427
The name \isa{add_ac}\index{*add_ac (theorems)} 
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   428
refers to the list of all three theorems; similarly
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   429
there is \isa{mult_ac}.\index{*mult_ac (theorems)} 
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   430
They are all proved for semirings and therefore hold for all numeric types.
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   431
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   432
Here is an example of the sorting effect.  Start
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   433
with this goal, which involves type \isa{nat}.
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   434
\begin{isabelle}
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   435
\ 1.\ Suc\ (i\ +\ j\ *\ l\ *\ k\ +\ m\ *\ n)\ =\
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   436
f\ (n\ *\ m\ +\ i\ +\ k\ *\ j\ *\ l)
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   437
\end{isabelle}
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   438
%
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   439
Simplify using  \isa{add_ac} and \isa{mult_ac}.
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   440
\begin{isabelle}
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   441
\isacommand{apply}\ (simp\ add:\ add_ac\ mult_ac)
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   442
\end{isabelle}
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   443
%
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   444
Here is the resulting subgoal.
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   445
\begin{isabelle}
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   446
\ 1.\ Suc\ (i\ +\ (m\ *\ n\ +\ j\ *\ (k\ *\ l)))\
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   447
=\ f\ (i\ +\ (m\ *\ n\ +\ j\ *\ (k\ *\ l)))%
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   448
\end{isabelle}
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   449
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   450
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   451
\subsubsection{Division Laws for Fields}
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   452
10777
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   453
Here is a selection of rules about the division operator.  The following
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   454
are installed as default simplification rules in order to express
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   455
combinations of products and quotients as rational expressions:
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   456
\begin{isabelle}
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 13996
diff changeset
   457
a\ *\ (b\ /\ c)\ =\ a\ *\ b\ /\ c
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 13996
diff changeset
   458
\rulename{times_divide_eq_right}\isanewline
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 13996
diff changeset
   459
b\ /\ c\ *\ a\ =\ b\ *\ a\ /\ c
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 13996
diff changeset
   460
\rulename{times_divide_eq_left}\isanewline
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 13996
diff changeset
   461
a\ /\ (b\ /\ c)\ =\ a\ *\ c\ /\ b
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 13996
diff changeset
   462
\rulename{divide_divide_eq_right}\isanewline
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 13996
diff changeset
   463
a\ /\ b\ /\ c\ =\ a\ /\ (b\ *\ c)
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 13996
diff changeset
   464
\rulename{divide_divide_eq_left}
10777
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   465
\end{isabelle}
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   466
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   467
Signs are extracted from quotients in the hope that complementary terms can
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   468
then be cancelled:
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   469
\begin{isabelle}
14295
7f115e5c5de4 more general lemmas for Ring_and_Field
paulson
parents: 14288
diff changeset
   470
-\ (a\ /\ b)\ =\ -\ a\ /\ b
7f115e5c5de4 more general lemmas for Ring_and_Field
paulson
parents: 14288
diff changeset
   471
\rulename{minus_divide_left}\isanewline
7f115e5c5de4 more general lemmas for Ring_and_Field
paulson
parents: 14288
diff changeset
   472
-\ (a\ /\ b)\ =\ a\ /\ -\ b
7f115e5c5de4 more general lemmas for Ring_and_Field
paulson
parents: 14288
diff changeset
   473
\rulename{minus_divide_right}
10777
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   474
\end{isabelle}
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   475
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   476
The following distributive law is available, but it is not installed as a
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   477
simplification rule.
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   478
\begin{isabelle}
14295
7f115e5c5de4 more general lemmas for Ring_and_Field
paulson
parents: 14288
diff changeset
   479
(a\ +\ b)\ /\ c\ =\ a\ /\ c\ +\ b\ /\ c%
7f115e5c5de4 more general lemmas for Ring_and_Field
paulson
parents: 14288
diff changeset
   480
\rulename{add_divide_distrib}
10777
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   481
\end{isabelle}
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   482
14400
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   483
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   484
\subsubsection{Absolute Value}
10594
6330bc4b6fe4 nat and int sections but no real
paulson
parents:
diff changeset
   485
14400
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   486
The \rmindex{absolute value} function \cdx{abs} is available for all 
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   487
ordered rings, including types \isa{int}, \isa{rat} and \isa{real}.
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   488
It satisfies many properties,
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   489
such as the following:
10777
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   490
\begin{isabelle}
14400
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   491
\isasymbar x\ *\ y\isasymbar \ =\ \isasymbar x\isasymbar \ *\ \isasymbar y\isasymbar 
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   492
\rulename{abs_mult}\isanewline
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   493
(\isasymbar a\isasymbar \ \isasymle \ b)\ =\ (a\ \isasymle \ b\ \isasymand \ -\ a\ \isasymle \ b)
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   494
\rulename{abs_le_iff}\isanewline
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   495
\isasymbar a\ +\ b\isasymbar \ \isasymle \ \isasymbar a\isasymbar \ +\ \isasymbar b\isasymbar 
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   496
\rulename{abs_triangle_ineq}
10777
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   497
\end{isabelle}
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   498
14400
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   499
\begin{warn}
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   500
The absolute value bars shown above cannot be typed on a keyboard.  They
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   501
can be entered using the X-symbol package.  In \textsc{ascii}, type \isa{abs x} to
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   502
get \isa{\isasymbar x\isasymbar}.
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   503
\end{warn}
11174
96a533d300a6 revisions in response to comments by Tobias
paulson
parents: 11161
diff changeset
   504
96a533d300a6 revisions in response to comments by Tobias
paulson
parents: 11161
diff changeset
   505
14400
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   506
\subsubsection{Raising to a Power}
10777
a5a6255748c3 initial material on the Reals
paulson
parents: 10654
diff changeset
   507
14400
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   508
Another type class, \tcdx{ringppower}, specifies rings that also have 
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   509
exponentation to a natural number power, defined using the obvious primitive
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   510
recursion. Theory \thydx{Power} proves various theorems, such as the 
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   511
following.
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   512
\begin{isabelle}
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   513
a\ \isacharcircum \ (m\ +\ n)\ =\ a\ \isacharcircum \ m\ *\ a\ \isacharcircum \ n%
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   514
\rulename{power_add}\isanewline
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   515
a\ \isacharcircum \ (m\ *\ n)\ =\ (a\ \isacharcircum \ m)\ \isacharcircum \ n%
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   516
\rulename{power_mult}\isanewline
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   517
\isasymbar a\ \isacharcircum \ n\isasymbar \ =\ \isasymbar a\isasymbar \ \isacharcircum \ n%
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   518
\rulename{power_abs}
6069098854b9 new numerics section using type classes
paulson
parents: 14353
diff changeset
   519
\end{isabelle}%%%%%%%%%%%%%%%%%%%%%%%%%
13996
a994b92ab1ea *** empty log message ***
nipkow
parents: 13983
diff changeset
   520
\index{numbers|)}