src/HOL/ex/Arith_Examples.thy
author wenzelm
Mon, 28 Dec 2015 01:28:28 +0100
changeset 61945 1135b8de26c3
parent 61933 cf58b5b794b2
child 63950 cdc1e59aa513
permissions -rw-r--r--
more symbols;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
     1
(*  Title:  HOL/ex/Arith_Examples.thy
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
     2
    Author: Tjark Weber
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
     3
*)
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
     4
61343
5b5656a63bd6 isabelle update_cartouches;
wenzelm
parents: 60429
diff changeset
     5
section \<open>Arithmetic\<close>
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
     6
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
     7
theory Arith_Examples
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
     8
imports Main
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
     9
begin
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    10
61343
5b5656a63bd6 isabelle update_cartouches;
wenzelm
parents: 60429
diff changeset
    11
text \<open>
61933
cf58b5b794b2 isabelle update_cartouches -c -t;
wenzelm
parents: 61343
diff changeset
    12
  The \<open>arith\<close> method is used frequently throughout the Isabelle
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    13
  distribution.  This file merely contains some additional tests and special
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    14
  corner cases.  Some rather technical remarks:
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    15
31101
26c7bb764a38 qualified names for Lin_Arith tactics and simprocs
haftmann
parents: 31100
diff changeset
    16
  @{ML Lin_Arith.simple_tac} is a very basic version of the tactic.  It performs no
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    17
  meta-to-object-logic conversion, and only some splitting of operators.
31101
26c7bb764a38 qualified names for Lin_Arith tactics and simprocs
haftmann
parents: 31100
diff changeset
    18
  @{ML Lin_Arith.tac} performs meta-to-object-logic conversion, full
61933
cf58b5b794b2 isabelle update_cartouches -c -t;
wenzelm
parents: 61343
diff changeset
    19
  splitting of operators, and NNF normalization of the goal.  The \<open>arith\<close>
cf58b5b794b2 isabelle update_cartouches -c -t;
wenzelm
parents: 61343
diff changeset
    20
  method combines them both, and tries other methods (e.g.~\<open>presburger\<close>)
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    21
  as well.  This is the one that you should use in your proofs!
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    22
61933
cf58b5b794b2 isabelle update_cartouches -c -t;
wenzelm
parents: 61343
diff changeset
    23
  An \<open>arith\<close>-based simproc is available as well (see @{ML
31101
26c7bb764a38 qualified names for Lin_Arith tactics and simprocs
haftmann
parents: 31100
diff changeset
    24
  Lin_Arith.simproc}), which---for performance
26c7bb764a38 qualified names for Lin_Arith tactics and simprocs
haftmann
parents: 31100
diff changeset
    25
  reasons---however does even less splitting than @{ML Lin_Arith.simple_tac}
24093
5d0ecd0c8f3c tuned LinArith setup;
wenzelm
parents: 24075
diff changeset
    26
  at the moment (namely inequalities only).  (On the other hand, it
31101
26c7bb764a38 qualified names for Lin_Arith tactics and simprocs
haftmann
parents: 31100
diff changeset
    27
  does take apart conjunctions, which @{ML Lin_Arith.simple_tac} currently
24093
5d0ecd0c8f3c tuned LinArith setup;
wenzelm
parents: 24075
diff changeset
    28
  does not do.)
61343
5b5656a63bd6 isabelle update_cartouches;
wenzelm
parents: 60429
diff changeset
    29
\<close>
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    30
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    31
61343
5b5656a63bd6 isabelle update_cartouches;
wenzelm
parents: 60429
diff changeset
    32
subsection \<open>Splitting of Operators: @{term max}, @{term min}, @{term abs},
35267
8dfd816713c6 moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents: 34974
diff changeset
    33
           @{term minus}, @{term nat}, @{term Divides.mod},
61343
5b5656a63bd6 isabelle update_cartouches;
wenzelm
parents: 60429
diff changeset
    34
           @{term divide}\<close>
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    35
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    36
lemma "(i::nat) <= max i j"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
    37
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    38
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    39
lemma "(i::int) <= max i j"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
    40
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    41
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    42
lemma "min i j <= (i::nat)"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
    43
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    44
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    45
lemma "min i j <= (i::int)"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
    46
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    47
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    48
lemma "min (i::nat) j <= max i j"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
    49
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    50
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    51
lemma "min (i::int) j <= max i j"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
    52
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    53
23208
4d8a0976fa1c extended
webertj
parents: 23198
diff changeset
    54
lemma "min (i::nat) j + max i j = i + j"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
    55
  by linarith
23208
4d8a0976fa1c extended
webertj
parents: 23198
diff changeset
    56
4d8a0976fa1c extended
webertj
parents: 23198
diff changeset
    57
lemma "min (i::int) j + max i j = i + j"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
    58
  by linarith
23208
4d8a0976fa1c extended
webertj
parents: 23198
diff changeset
    59
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    60
lemma "(i::nat) < j ==> min i j < max i j"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
    61
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    62
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    63
lemma "(i::int) < j ==> min i j < max i j"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
    64
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    65
61945
1135b8de26c3 more symbols;
wenzelm
parents: 61933
diff changeset
    66
lemma "(0::int) <= \<bar>i\<bar>"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
    67
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    68
61945
1135b8de26c3 more symbols;
wenzelm
parents: 61933
diff changeset
    69
lemma "(i::int) <= \<bar>i\<bar>"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
    70
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    71
61945
1135b8de26c3 more symbols;
wenzelm
parents: 61933
diff changeset
    72
lemma "\<bar>\<bar>i::int\<bar>\<bar> = \<bar>i\<bar>"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
    73
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    74
61343
5b5656a63bd6 isabelle update_cartouches;
wenzelm
parents: 60429
diff changeset
    75
text \<open>Also testing subgoals with bound variables.\<close>
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    76
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    77
lemma "!!x. (x::nat) <= y ==> x - y = 0"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
    78
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    79
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    80
lemma "!!x. (x::nat) - y = 0 ==> x <= y"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
    81
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    82
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    83
lemma "!!x. ((x::nat) <= y) = (x - y = 0)"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
    84
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    85
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    86
lemma "[| (x::nat) < y; d < 1 |] ==> x - y = d"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
    87
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    88
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    89
lemma "[| (x::nat) < y; d < 1 |] ==> x - y - x = d - x"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
    90
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    91
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    92
lemma "(x::int) < y ==> x - y < 0"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
    93
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    94
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    95
lemma "nat (i + j) <= nat i + nat j"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
    96
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    97
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
    98
lemma "i < j ==> nat (i - j) = 0"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
    99
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   100
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   101
lemma "(i::nat) mod 0 = i"
46597
7fc239ebece2 deal with FIXMEs for linarith examples
huffman
parents: 44654
diff changeset
   102
  (* rule split_mod is only declared by default for numerals *)
7fc239ebece2 deal with FIXMEs for linarith examples
huffman
parents: 44654
diff changeset
   103
  using split_mod [of _ _ "0", arith_split]
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
   104
  by linarith
23198
174b5f2ec7c1 extended
webertj
parents: 23196
diff changeset
   105
174b5f2ec7c1 extended
webertj
parents: 23196
diff changeset
   106
lemma "(i::nat) mod 1 = 0"
46597
7fc239ebece2 deal with FIXMEs for linarith examples
huffman
parents: 44654
diff changeset
   107
  (* rule split_mod is only declared by default for numerals *)
7fc239ebece2 deal with FIXMEs for linarith examples
huffman
parents: 44654
diff changeset
   108
  using split_mod [of _ _ "1", arith_split]
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
   109
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   110
23198
174b5f2ec7c1 extended
webertj
parents: 23196
diff changeset
   111
lemma "(i::nat) mod 42 <= 41"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
   112
  by linarith
23198
174b5f2ec7c1 extended
webertj
parents: 23196
diff changeset
   113
174b5f2ec7c1 extended
webertj
parents: 23196
diff changeset
   114
lemma "(i::int) mod 0 = i"
46597
7fc239ebece2 deal with FIXMEs for linarith examples
huffman
parents: 44654
diff changeset
   115
  (* rule split_zmod is only declared by default for numerals *)
7fc239ebece2 deal with FIXMEs for linarith examples
huffman
parents: 44654
diff changeset
   116
  using split_zmod [of _ _ "0", arith_split]
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
   117
  by linarith
23198
174b5f2ec7c1 extended
webertj
parents: 23196
diff changeset
   118
174b5f2ec7c1 extended
webertj
parents: 23196
diff changeset
   119
lemma "(i::int) mod 1 = 0"
46597
7fc239ebece2 deal with FIXMEs for linarith examples
huffman
parents: 44654
diff changeset
   120
  (* rule split_zmod is only declared by default for numerals *)
7fc239ebece2 deal with FIXMEs for linarith examples
huffman
parents: 44654
diff changeset
   121
  using split_zmod [of _ _ "1", arith_split]
7fc239ebece2 deal with FIXMEs for linarith examples
huffman
parents: 44654
diff changeset
   122
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   123
23198
174b5f2ec7c1 extended
webertj
parents: 23196
diff changeset
   124
lemma "(i::int) mod 42 <= 41"
46597
7fc239ebece2 deal with FIXMEs for linarith examples
huffman
parents: 44654
diff changeset
   125
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   126
24328
83afe527504d fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
webertj
parents: 24093
diff changeset
   127
lemma "-(i::int) * 1 = 0 ==> i = 0"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
   128
  by linarith
24328
83afe527504d fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
webertj
parents: 24093
diff changeset
   129
61945
1135b8de26c3 more symbols;
wenzelm
parents: 61933
diff changeset
   130
lemma "[| (0::int) < \<bar>i\<bar>; \<bar>i\<bar> * 1 < \<bar>i\<bar> * j |] ==> 1 < \<bar>i\<bar> * j"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
   131
  by linarith
24328
83afe527504d fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
webertj
parents: 24093
diff changeset
   132
23218
01c4d19f597e use antiquotations instead of raw TeX code;
wenzelm
parents: 23211
diff changeset
   133
61343
5b5656a63bd6 isabelle update_cartouches;
wenzelm
parents: 60429
diff changeset
   134
subsection \<open>Meta-Logic\<close>
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   135
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   136
lemma "x < Suc y == x <= y"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
   137
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   138
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   139
lemma "((x::nat) == z ==> x ~= y) ==> x ~= y | z ~= y"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
   140
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   141
23218
01c4d19f597e use antiquotations instead of raw TeX code;
wenzelm
parents: 23211
diff changeset
   142
61343
5b5656a63bd6 isabelle update_cartouches;
wenzelm
parents: 60429
diff changeset
   143
subsection \<open>Various Other Examples\<close>
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   144
23198
174b5f2ec7c1 extended
webertj
parents: 23196
diff changeset
   145
lemma "(x < Suc y) = (x <= y)"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
   146
  by linarith
23198
174b5f2ec7c1 extended
webertj
parents: 23196
diff changeset
   147
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   148
lemma "[| (x::nat) < y; y < z |] ==> x < z"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
   149
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   150
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   151
lemma "(x::nat) < y & y < z ==> x < z"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
   152
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   153
61343
5b5656a63bd6 isabelle update_cartouches;
wenzelm
parents: 60429
diff changeset
   154
text \<open>This example involves no arithmetic at all, but is solved by
5b5656a63bd6 isabelle update_cartouches;
wenzelm
parents: 60429
diff changeset
   155
  preprocessing (i.e. NNF normalization) alone.\<close>
23208
4d8a0976fa1c extended
webertj
parents: 23198
diff changeset
   156
4d8a0976fa1c extended
webertj
parents: 23198
diff changeset
   157
lemma "(P::bool) = Q ==> Q = P"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
   158
  by linarith
23208
4d8a0976fa1c extended
webertj
parents: 23198
diff changeset
   159
4d8a0976fa1c extended
webertj
parents: 23198
diff changeset
   160
lemma "[| P = (x = 0); (~P) = (y = 0) |] ==> min (x::nat) y = 0"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
   161
  by linarith
23208
4d8a0976fa1c extended
webertj
parents: 23198
diff changeset
   162
4d8a0976fa1c extended
webertj
parents: 23198
diff changeset
   163
lemma "[| P = (x = 0); (~P) = (y = 0) |] ==> max (x::nat) y = x + y"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
   164
  by linarith
23208
4d8a0976fa1c extended
webertj
parents: 23198
diff changeset
   165
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   166
lemma "[| (x::nat) ~= y; a + 2 = b; a < y; y < b; a < x; x < b |] ==> False"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
   167
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   168
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   169
lemma "[| (x::nat) > y; y > z; z > x |] ==> False"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
   170
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   171
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   172
lemma "(x::nat) - 5 > y ==> y < x"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
   173
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   174
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   175
lemma "(x::nat) ~= 0 ==> 0 < x"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
   176
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   177
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   178
lemma "[| (x::nat) ~= y; x <= y |] ==> x < y"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
   179
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   180
23196
fabf2e8a7ba4 tracing disabled
webertj
parents: 23193
diff changeset
   181
lemma "[| (x::nat) < y; P (x - y) |] ==> P 0"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
   182
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   183
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   184
lemma "(x - y) - (x::nat) = (x - x) - y"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
   185
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   186
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   187
lemma "[| (a::nat) < b; c < d |] ==> (a - b) = (c - d)"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
   188
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   189
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   190
lemma "((a::nat) - (b - (c - (d - e)))) = (a - (b - (c - (d - e))))"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
   191
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   192
23198
174b5f2ec7c1 extended
webertj
parents: 23196
diff changeset
   193
lemma "(n < m & m < n') | (n < m & m = n') | (n < n' & n' < m) |
174b5f2ec7c1 extended
webertj
parents: 23196
diff changeset
   194
  (n = n' & n' < m) | (n = m & m < n') |
174b5f2ec7c1 extended
webertj
parents: 23196
diff changeset
   195
  (n' < m & m < n) | (n' < m & m = n) |
174b5f2ec7c1 extended
webertj
parents: 23196
diff changeset
   196
  (n' < n & n < m) | (n' = n & n < m) | (n' = m & m < n) |
174b5f2ec7c1 extended
webertj
parents: 23196
diff changeset
   197
  (m < n & n < n') | (m < n & n' = n) | (m < n' & n' < n) |
174b5f2ec7c1 extended
webertj
parents: 23196
diff changeset
   198
  (m = n & n < n') | (m = n' & n' < n) |
174b5f2ec7c1 extended
webertj
parents: 23196
diff changeset
   199
  (n' = m & m = (n::nat))"
174b5f2ec7c1 extended
webertj
parents: 23196
diff changeset
   200
(* FIXME: this should work in principle, but is extremely slow because     *)
174b5f2ec7c1 extended
webertj
parents: 23196
diff changeset
   201
(*        preprocessing negates the goal and tries to compute its negation *)
174b5f2ec7c1 extended
webertj
parents: 23196
diff changeset
   202
(*        normal form, which creates lots of separate cases for this       *)
174b5f2ec7c1 extended
webertj
parents: 23196
diff changeset
   203
(*        disjunction of conjunctions                                      *)
31101
26c7bb764a38 qualified names for Lin_Arith tactics and simprocs
haftmann
parents: 31100
diff changeset
   204
(* by (tactic {* Lin_Arith.tac 1 *}) *)
23198
174b5f2ec7c1 extended
webertj
parents: 23196
diff changeset
   205
oops
174b5f2ec7c1 extended
webertj
parents: 23196
diff changeset
   206
174b5f2ec7c1 extended
webertj
parents: 23196
diff changeset
   207
lemma "2 * (x::nat) ~= 1"
23208
4d8a0976fa1c extended
webertj
parents: 23198
diff changeset
   208
(* FIXME: this is beyond the scope of the decision procedure at the moment, *)
4d8a0976fa1c extended
webertj
parents: 23198
diff changeset
   209
(*        because its negation is satisfiable in the rationals?             *)
31101
26c7bb764a38 qualified names for Lin_Arith tactics and simprocs
haftmann
parents: 31100
diff changeset
   210
(* by (tactic {* Lin_Arith.simple_tac 1 *}) *)
23198
174b5f2ec7c1 extended
webertj
parents: 23196
diff changeset
   211
oops
174b5f2ec7c1 extended
webertj
parents: 23196
diff changeset
   212
61343
5b5656a63bd6 isabelle update_cartouches;
wenzelm
parents: 60429
diff changeset
   213
text \<open>Constants.\<close>
23198
174b5f2ec7c1 extended
webertj
parents: 23196
diff changeset
   214
174b5f2ec7c1 extended
webertj
parents: 23196
diff changeset
   215
lemma "(0::nat) < 1"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
   216
  by linarith
23198
174b5f2ec7c1 extended
webertj
parents: 23196
diff changeset
   217
174b5f2ec7c1 extended
webertj
parents: 23196
diff changeset
   218
lemma "(0::int) < 1"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
   219
  by linarith
23198
174b5f2ec7c1 extended
webertj
parents: 23196
diff changeset
   220
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46597
diff changeset
   221
lemma "(47::nat) + 11 < 8 * 15"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
   222
  by linarith
23198
174b5f2ec7c1 extended
webertj
parents: 23196
diff changeset
   223
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46597
diff changeset
   224
lemma "(47::int) + 11 < 8 * 15"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
   225
  by linarith
23198
174b5f2ec7c1 extended
webertj
parents: 23196
diff changeset
   226
61343
5b5656a63bd6 isabelle update_cartouches;
wenzelm
parents: 60429
diff changeset
   227
text \<open>Splitting of inequalities of different type.\<close>
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   228
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   229
lemma "[| (a::nat) ~= b; (i::int) ~= j; a < 2; b < 2 |] ==>
61945
1135b8de26c3 more symbols;
wenzelm
parents: 61933
diff changeset
   230
  a + b <= nat (max \<bar>i\<bar> \<bar>j\<bar>)"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
   231
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   232
61343
5b5656a63bd6 isabelle update_cartouches;
wenzelm
parents: 60429
diff changeset
   233
text \<open>Again, but different order.\<close>
23198
174b5f2ec7c1 extended
webertj
parents: 23196
diff changeset
   234
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   235
lemma "[| (i::int) ~= j; (a::nat) ~= b; a < 2; b < 2 |] ==>
61945
1135b8de26c3 more symbols;
wenzelm
parents: 61933
diff changeset
   236
  a + b <= nat (max \<bar>i\<bar> \<bar>j\<bar>)"
31066
972c870da225 explicit method linarith
haftmann
parents: 30686
diff changeset
   237
  by linarith
23193
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   238
1f2d94b6a8ef some tests for arith added
webertj
parents:
diff changeset
   239
end