src/HOL/Induct/Mutil.ML
author paulson
Sat, 04 Mar 2000 11:52:42 +0100
changeset 8339 bcadeb9c7095
parent 7499 23e090051cb8
child 8399 86b04d47b853
permissions -rw-r--r--
tidied
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3423
3684a4420a67 Much polishing of proofs
paulson
parents: 3414
diff changeset
     1
(*  Title:      HOL/Induct/Mutil
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
     2
    ID:         $Id$
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
     4
    Copyright   1996  University of Cambridge
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
     5
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
     6
The Mutilated Chess Board Problem, formalized inductively
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
     7
*)
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
     8
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
     9
Addsimps tiling.intrs;
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    10
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    11
(** The union of two disjoint tilings is a tiling **)
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    12
5490
85855f65d0c6 From Compl(A) to -A
paulson
parents: 5419
diff changeset
    13
Goal "t: tiling A ==> u: tiling A --> t Int u = {} --> t Un u : tiling A";
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    14
by (etac tiling.induct 1);
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    15
by (Simp_tac 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3919
diff changeset
    16
by (simp_tac (simpset() addsimps [Un_assoc]) 1);
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3919
diff changeset
    17
by (blast_tac (claset() addIs tiling.intrs) 1);
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    18
qed_spec_mp "tiling_UnI";
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    19
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    20
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    21
(*** Chess boards ***)
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    22
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4686
diff changeset
    23
Goalw [below_def] "(i: below k) = (i<k)";
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    24
by (Blast_tac 1);
3423
3684a4420a67 Much polishing of proofs
paulson
parents: 3414
diff changeset
    25
qed "below_less_iff";
3684a4420a67 Much polishing of proofs
paulson
parents: 3414
diff changeset
    26
AddIffs [below_less_iff];
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    27
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4686
diff changeset
    28
Goalw [below_def] "below 0 = {}";
3423
3684a4420a67 Much polishing of proofs
paulson
parents: 3414
diff changeset
    29
by (Simp_tac 1);
3684a4420a67 Much polishing of proofs
paulson
parents: 3414
diff changeset
    30
qed "below_0";
3684a4420a67 Much polishing of proofs
paulson
parents: 3414
diff changeset
    31
Addsimps [below_0];
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    32
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4686
diff changeset
    33
Goalw [below_def]
3423
3684a4420a67 Much polishing of proofs
paulson
parents: 3414
diff changeset
    34
    "below(Suc n) Times B = ({n} Times B) Un ((below n) Times B)";
7401
paulson
parents: 5628
diff changeset
    35
by Auto_tac;
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    36
qed "Sigma_Suc1";
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    37
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4686
diff changeset
    38
Goalw [below_def]
3423
3684a4420a67 Much polishing of proofs
paulson
parents: 3414
diff changeset
    39
    "A Times below(Suc n) = (A Times {n}) Un (A Times (below n))";
7401
paulson
parents: 5628
diff changeset
    40
by Auto_tac;
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    41
qed "Sigma_Suc2";
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    42
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4686
diff changeset
    43
Goal "{i} Times below(n+n) : tiling domino";
5184
9b8547a9496a Adapted to new datatype package.
berghofe
parents: 5143
diff changeset
    44
by (induct_tac "n" 1);
7401
paulson
parents: 5628
diff changeset
    45
by (ALLGOALS(asm_simp_tac (simpset() addsimps [Un_assoc RS sym, Sigma_Suc2])));
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    46
by (resolve_tac tiling.intrs 1);
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    47
by (assume_tac 2);
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    48
by (subgoal_tac    (*seems the easiest way of turning one to the other*)
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    49
    "({i} Times {Suc(n+n)}) Un ({i} Times {n+n}) = \
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    50
\    {(i, n+n), (i, Suc(n+n))}" 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3919
diff changeset
    51
by (asm_simp_tac (simpset() addsimps [domino.horiz]) 1);
4477
b3e5857d8d99 New Auto_tac (by Oheimb), and new syntax (without parens), and expandshort
paulson
parents: 4387
diff changeset
    52
by Auto_tac;
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    53
qed "dominoes_tile_row";
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    54
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4686
diff changeset
    55
Goal "(below m) Times below(n+n) : tiling domino";
5184
9b8547a9496a Adapted to new datatype package.
berghofe
parents: 5143
diff changeset
    56
by (induct_tac "m" 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3919
diff changeset
    57
by (ALLGOALS (asm_simp_tac (simpset() addsimps [Sigma_Suc1])));
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3919
diff changeset
    58
by (blast_tac (claset() addSIs [tiling_UnI, dominoes_tile_row]
5490
85855f65d0c6 From Compl(A) to -A
paulson
parents: 5419
diff changeset
    59
                        addSEs [below_less_iff RS iffD1 RS less_irrefl]) 1);
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    60
qed "dominoes_tile_matrix";
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    61
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    62
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    63
(*** Basic properties of evnodd ***)
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    64
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4686
diff changeset
    65
Goalw [evnodd_def] "(i,j): evnodd A b = ((i,j): A  &  (i+j) mod 2 = b)";
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    66
by (Simp_tac 1);
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    67
qed "evnodd_iff";
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    68
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4686
diff changeset
    69
Goalw [evnodd_def] "evnodd A b <= A";
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    70
by (rtac Int_lower1 1);
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    71
qed "evnodd_subset";
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    72
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    73
(* finite X ==> finite(evnodd X b) *)
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    74
bind_thm("finite_evnodd", evnodd_subset RS finite_subset);
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    75
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4686
diff changeset
    76
Goalw [evnodd_def] "evnodd (A Un B) b = evnodd A b Un evnodd B b";
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    77
by (Blast_tac 1);
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    78
qed "evnodd_Un";
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    79
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4686
diff changeset
    80
Goalw [evnodd_def] "evnodd (A - B) b = evnodd A b - evnodd B b";
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    81
by (Blast_tac 1);
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    82
qed "evnodd_Diff";
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    83
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4686
diff changeset
    84
Goalw [evnodd_def] "evnodd {} b = {}";
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    85
by (Simp_tac 1);
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    86
qed "evnodd_empty";
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    87
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4686
diff changeset
    88
Goalw [evnodd_def]
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    89
    "evnodd (insert (i,j) C) b = \
3423
3684a4420a67 Much polishing of proofs
paulson
parents: 3414
diff changeset
    90
\      (if (i+j) mod 2 = b then insert (i,j) (evnodd C b) else evnodd C b)";
7401
paulson
parents: 5628
diff changeset
    91
by Auto_tac;
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    92
qed "evnodd_insert";
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    93
3423
3684a4420a67 Much polishing of proofs
paulson
parents: 3414
diff changeset
    94
Addsimps [finite_evnodd, evnodd_Un, evnodd_Diff, evnodd_empty, evnodd_insert];
3684a4420a67 Much polishing of proofs
paulson
parents: 3414
diff changeset
    95
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    96
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    97
(*** Dominoes ***)
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    98
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5069
diff changeset
    99
Goal "[| d:domino; b<2 |] ==> EX i j. evnodd d b = {(i,j)}";
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
   100
by (eresolve_tac [domino.elim] 1);
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
   101
by (res_inst_tac [("k1", "i+j")] (mod2_cases RS disjE) 2);
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
   102
by (res_inst_tac [("k1", "i+j")] (mod2_cases RS disjE) 1);
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
   103
by (REPEAT_FIRST assume_tac);
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
   104
(*Four similar cases: case (i+j) mod 2 = b, 2#-b, ...*)
7499
23e090051cb8 isatool expandshort;
wenzelm
parents: 7401
diff changeset
   105
by (auto_tac (claset(), simpset() addsimps [less_Suc_eq, mod_Suc]));
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
   106
qed "domino_singleton";
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
   107
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5069
diff changeset
   108
Goal "d:domino ==> finite d";
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3919
diff changeset
   109
by (blast_tac (claset() addSEs [domino.elim]) 1);
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
   110
qed "domino_finite";
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
   111
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
   112
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
   113
(*** Tilings of dominoes ***)
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
   114
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5069
diff changeset
   115
Goal "t:tiling domino ==> finite t";
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
   116
by (eresolve_tac [tiling.induct] 1);
3414
804c8a178a7f Modified a few defs and proofs because of the changes to theory Finite.thy.
nipkow
parents: 3357
diff changeset
   117
by (rtac Finites.emptyI 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3919
diff changeset
   118
by (blast_tac (claset() addSIs [finite_UnI] addIs [domino_finite]) 1);
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
   119
qed "tiling_domino_finite";
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
   120
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5069
diff changeset
   121
Goal "t: tiling domino ==> card(evnodd t 0) = card(evnodd t 1)";
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
   122
by (eresolve_tac [tiling.induct] 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3919
diff changeset
   123
by (simp_tac (simpset() addsimps [evnodd_def]) 1);
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
   124
by (res_inst_tac [("b1","0")] (domino_singleton RS exE) 1);
7401
paulson
parents: 5628
diff changeset
   125
by Auto_tac;
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
   126
by (res_inst_tac [("b1","1")] (domino_singleton RS exE) 1);
7401
paulson
parents: 5628
diff changeset
   127
by Auto_tac;
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5069
diff changeset
   128
by (subgoal_tac "ALL p b. p : evnodd a b --> p ~: evnodd t b" 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3919
diff changeset
   129
by (asm_simp_tac (simpset() addsimps [tiling_domino_finite]) 1);
4387
31d5a5a191e8 Tidied final proof
paulson
parents: 4369
diff changeset
   130
by (blast_tac (claset() addSDs [evnodd_subset RS subsetD] 
31d5a5a191e8 Tidied final proof
paulson
parents: 4369
diff changeset
   131
                        addEs  [equalityE]) 1);
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
   132
qed "tiling_domino_0_1";
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
   133
4387
31d5a5a191e8 Tidied final proof
paulson
parents: 4369
diff changeset
   134
(*Final argument is surprisingly complex.  Note the use of small simpsets
31d5a5a191e8 Tidied final proof
paulson
parents: 4369
diff changeset
   135
  to avoid moving Sucs, etc.*)
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5069
diff changeset
   136
Goal "[| t = below(Suc m + Suc m) Times below(Suc n + Suc n);   \
5419
paulson
parents: 5184
diff changeset
   137
\        t' = t - {(0,0)} - {(Suc(m+m), Suc(n+n))}              \
paulson
parents: 5184
diff changeset
   138
\     |] ==> t' ~: tiling domino";
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
   139
by (rtac notI 1);
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
   140
by (subgoal_tac "card(evnodd t' 0) < card(evnodd t' 1)" 1);
4387
31d5a5a191e8 Tidied final proof
paulson
parents: 4369
diff changeset
   141
by (asm_full_simp_tac (HOL_ss addsimps [less_not_refl, tiling_domino_0_1]) 1);
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
   142
by (subgoal_tac "t : tiling domino" 1);
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
   143
by (asm_simp_tac (HOL_ss addsimps [dominoes_tile_matrix]) 2);
4387
31d5a5a191e8 Tidied final proof
paulson
parents: 4369
diff changeset
   144
by (asm_full_simp_tac (simpset() 
31d5a5a191e8 Tidied final proof
paulson
parents: 4369
diff changeset
   145
		       addsimps [mod_less, tiling_domino_0_1 RS sym]) 1);
31d5a5a191e8 Tidied final proof
paulson
parents: 4369
diff changeset
   146
(*Cardinality is smaller because of the two elements fewer*)
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
   147
by (rtac less_trans 1);
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
   148
by (REPEAT
5628
15b7f12ad919 Multisets at last!
nipkow
parents: 5490
diff changeset
   149
    (rtac card_Diff1_less 1 
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3919
diff changeset
   150
     THEN asm_simp_tac (simpset() addsimps [tiling_domino_finite]) 1 
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3919
diff changeset
   151
     THEN asm_simp_tac (simpset() addsimps [mod_less, evnodd_iff]) 1));
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
   152
qed "mutil_not_tiling";