src/HOL/Matrix/Matrix.thy
author blanchet
Mon, 20 Dec 2010 14:17:49 +0100
changeset 41317 fc48faccd77b
parent 39302 d7728f65b353
child 41413 64cd30d6b0b8
permissions -rw-r--r--
disable feature that was enabled by mistake
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14593
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
     1
(*  Title:      HOL/Matrix/Matrix.thy
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
     2
    Author:     Steven Obua
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
     3
*)
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
     4
17915
e38947f9ba5e isatool fixheaders;
wenzelm
parents: 16733
diff changeset
     5
theory Matrix
35032
7efe662e41b4 separate library theory for type classes combining lattices with various algebraic structures
haftmann
parents: 35028
diff changeset
     6
imports Main Lattice_Algebras
17915
e38947f9ba5e isatool fixheaders;
wenzelm
parents: 16733
diff changeset
     7
begin
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
     8
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
     9
types 'a infmatrix = "nat \<Rightarrow> nat \<Rightarrow> 'a"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    10
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    11
definition nonzero_positions :: "(nat \<Rightarrow> nat \<Rightarrow> 'a::zero) \<Rightarrow> nat \<times> nat \<Rightarrow> bool" where
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    12
  "nonzero_positions A = {pos. A (fst pos) (snd pos) ~= 0}"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    13
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    14
typedef 'a matrix = "{(f::(nat \<Rightarrow> nat \<Rightarrow> 'a::zero)). finite (nonzero_positions f)}"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    15
proof -
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    16
  have "(\<lambda>j i. 0) \<in> {(f::(nat \<Rightarrow> nat \<Rightarrow> 'a::zero)). finite (nonzero_positions f)}"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    17
    by (simp add: nonzero_positions_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    18
  then show ?thesis by auto
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    19
qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    20
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    21
declare Rep_matrix_inverse[simp]
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    22
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    23
lemma finite_nonzero_positions : "finite (nonzero_positions (Rep_matrix A))"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    24
apply (rule Abs_matrix_induct)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    25
by (simp add: Abs_matrix_inverse matrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    26
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
    27
definition nrows :: "('a::zero) matrix \<Rightarrow> nat" where
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    28
  "nrows A == if nonzero_positions(Rep_matrix A) = {} then 0 else Suc(Max ((image fst) (nonzero_positions (Rep_matrix A))))"
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
    29
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
    30
definition ncols :: "('a::zero) matrix \<Rightarrow> nat" where
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    31
  "ncols A == if nonzero_positions(Rep_matrix A) = {} then 0 else Suc(Max ((image snd) (nonzero_positions (Rep_matrix A))))"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    32
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    33
lemma nrows:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    34
  assumes hyp: "nrows A \<le> m"
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
    35
  shows "(Rep_matrix A m n) = 0"
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    36
proof cases
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    37
  assume "nonzero_positions(Rep_matrix A) = {}"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    38
  then show "(Rep_matrix A m n) = 0" by (simp add: nonzero_positions_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    39
next
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    40
  assume a: "nonzero_positions(Rep_matrix A) \<noteq> {}"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    41
  let ?S = "fst`(nonzero_positions(Rep_matrix A))"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    42
  have c: "finite (?S)" by (simp add: finite_nonzero_positions)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    43
  from hyp have d: "Max (?S) < m" by (simp add: a nrows_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    44
  have "m \<notin> ?S"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    45
    proof -
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    46
      have "m \<in> ?S \<Longrightarrow> m <= Max(?S)" by (simp add: Max_ge [OF c])
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    47
      moreover from d have "~(m <= Max ?S)" by (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    48
      ultimately show "m \<notin> ?S" by (auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    49
    qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    50
  thus "Rep_matrix A m n = 0" by (simp add: nonzero_positions_def image_Collect)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    51
qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    52
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
    53
definition transpose_infmatrix :: "'a infmatrix \<Rightarrow> 'a infmatrix" where
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    54
  "transpose_infmatrix A j i == A i j"
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
    55
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
    56
definition transpose_matrix :: "('a::zero) matrix \<Rightarrow> 'a matrix" where
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    57
  "transpose_matrix == Abs_matrix o transpose_infmatrix o Rep_matrix"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    58
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    59
declare transpose_infmatrix_def[simp]
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    60
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    61
lemma transpose_infmatrix_twice[simp]: "transpose_infmatrix (transpose_infmatrix A) = A"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    62
by ((rule ext)+, simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    63
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    64
lemma transpose_infmatrix: "transpose_infmatrix (% j i. P j i) = (% j i. P i j)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    65
  apply (rule ext)+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    66
  by (simp add: transpose_infmatrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    67
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    68
lemma transpose_infmatrix_closed[simp]: "Rep_matrix (Abs_matrix (transpose_infmatrix (Rep_matrix x))) = transpose_infmatrix (Rep_matrix x)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    69
apply (rule Abs_matrix_inverse)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    70
apply (simp add: matrix_def nonzero_positions_def image_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    71
proof -
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    72
  let ?A = "{pos. Rep_matrix x (snd pos) (fst pos) \<noteq> 0}"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    73
  let ?swap = "% pos. (snd pos, fst pos)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    74
  let ?B = "{pos. Rep_matrix x (fst pos) (snd pos) \<noteq> 0}"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    75
  have swap_image: "?swap`?A = ?B"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    76
    apply (simp add: image_def)
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 38526
diff changeset
    77
    apply (rule set_eqI)
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    78
    apply (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    79
    proof
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    80
      fix y
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    81
      assume hyp: "\<exists>a b. Rep_matrix x b a \<noteq> 0 \<and> y = (b, a)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    82
      thus "Rep_matrix x (fst y) (snd y) \<noteq> 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    83
        proof -
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    84
          from hyp obtain a b where "(Rep_matrix x b a \<noteq> 0 & y = (b,a))" by blast
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    85
          then show "Rep_matrix x (fst y) (snd y) \<noteq> 0" by (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    86
        qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    87
    next
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    88
      fix y
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    89
      assume hyp: "Rep_matrix x (fst y) (snd y) \<noteq> 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    90
      show "\<exists> a b. (Rep_matrix x b a \<noteq> 0 & y = (b,a))"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32491
diff changeset
    91
        by (rule exI[of _ "snd y"], rule exI[of _ "fst y"]) (simp add: hyp)
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    92
    qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    93
  then have "finite (?swap`?A)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    94
    proof -
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    95
      have "finite (nonzero_positions (Rep_matrix x))" by (simp add: finite_nonzero_positions)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    96
      then have "finite ?B" by (simp add: nonzero_positions_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    97
      with swap_image show "finite (?swap`?A)" by (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    98
    qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
    99
  moreover
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   100
  have "inj_on ?swap ?A" by (simp add: inj_on_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   101
  ultimately show "finite ?A"by (rule finite_imageD[of ?swap ?A])
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   102
qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   103
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   104
lemma infmatrixforward: "(x::'a infmatrix) = y \<Longrightarrow> \<forall> a b. x a b = y a b" by auto
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   105
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   106
lemma transpose_infmatrix_inject: "(transpose_infmatrix A = transpose_infmatrix B) = (A = B)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   107
apply (auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   108
apply (rule ext)+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   109
apply (simp add: transpose_infmatrix)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   110
apply (drule infmatrixforward)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   111
apply (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   112
done
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   113
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   114
lemma transpose_matrix_inject: "(transpose_matrix A = transpose_matrix B) = (A = B)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   115
apply (simp add: transpose_matrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   116
apply (subst Rep_matrix_inject[THEN sym])+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   117
apply (simp only: transpose_infmatrix_closed transpose_infmatrix_inject)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   118
done
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   119
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   120
lemma transpose_matrix[simp]: "Rep_matrix(transpose_matrix A) j i = Rep_matrix A i j"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   121
by (simp add: transpose_matrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   122
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   123
lemma transpose_transpose_id[simp]: "transpose_matrix (transpose_matrix A) = A"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   124
by (simp add: transpose_matrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   125
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   126
lemma nrows_transpose[simp]: "nrows (transpose_matrix A) = ncols A"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   127
by (simp add: nrows_def ncols_def nonzero_positions_def transpose_matrix_def image_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   128
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   129
lemma ncols_transpose[simp]: "ncols (transpose_matrix A) = nrows A"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   130
by (simp add: nrows_def ncols_def nonzero_positions_def transpose_matrix_def image_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   131
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   132
lemma ncols: "ncols A <= n \<Longrightarrow> Rep_matrix A m n = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   133
proof -
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   134
  assume "ncols A <= n"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   135
  then have "nrows (transpose_matrix A) <= n" by (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   136
  then have "Rep_matrix (transpose_matrix A) n m = 0" by (rule nrows)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   137
  thus "Rep_matrix A m n = 0" by (simp add: transpose_matrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   138
qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   139
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   140
lemma ncols_le: "(ncols A <= n) = (! j i. n <= i \<longrightarrow> (Rep_matrix A j i) = 0)" (is "_ = ?st")
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   141
apply (auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   142
apply (simp add: ncols)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   143
proof (simp add: ncols_def, auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   144
  let ?P = "nonzero_positions (Rep_matrix A)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   145
  let ?p = "snd`?P"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   146
  have a:"finite ?p" by (simp add: finite_nonzero_positions)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   147
  let ?m = "Max ?p"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   148
  assume "~(Suc (?m) <= n)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   149
  then have b:"n <= ?m" by (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   150
  fix a b
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   151
  assume "(a,b) \<in> ?P"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   152
  then have "?p \<noteq> {}" by (auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   153
  with a have "?m \<in>  ?p" by (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   154
  moreover have "!x. (x \<in> ?p \<longrightarrow> (? y. (Rep_matrix A y x) \<noteq> 0))" by (simp add: nonzero_positions_def image_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   155
  ultimately have "? y. (Rep_matrix A y ?m) \<noteq> 0" by (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   156
  moreover assume ?st
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   157
  ultimately show "False" using b by (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   158
qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   159
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   160
lemma less_ncols: "(n < ncols A) = (? j i. n <= i & (Rep_matrix A j i) \<noteq> 0)"
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   161
proof -
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   162
  have a: "!! (a::nat) b. (a < b) = (~(b <= a))" by arith
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   163
  show ?thesis by (simp add: a ncols_le)
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   164
qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   165
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   166
lemma le_ncols: "(n <= ncols A) = (\<forall> m. (\<forall> j i. m <= i \<longrightarrow> (Rep_matrix A j i) = 0) \<longrightarrow> n <= m)"
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   167
apply (auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   168
apply (subgoal_tac "ncols A <= m")
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   169
apply (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   170
apply (simp add: ncols_le)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   171
apply (drule_tac x="ncols A" in spec)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   172
by (simp add: ncols)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   173
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   174
lemma nrows_le: "(nrows A <= n) = (! j i. n <= j \<longrightarrow> (Rep_matrix A j i) = 0)" (is ?s)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   175
proof -
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   176
  have "(nrows A <= n) = (ncols (transpose_matrix A) <= n)" by (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   177
  also have "\<dots> = (! j i. n <= i \<longrightarrow> (Rep_matrix (transpose_matrix A) j i = 0))" by (rule ncols_le)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   178
  also have "\<dots> = (! j i. n <= i \<longrightarrow> (Rep_matrix A i j) = 0)" by (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   179
  finally show "(nrows A <= n) = (! j i. n <= j \<longrightarrow> (Rep_matrix A j i) = 0)" by (auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   180
qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   181
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   182
lemma less_nrows: "(m < nrows A) = (? j i. m <= j & (Rep_matrix A j i) \<noteq> 0)"
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   183
proof -
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   184
  have a: "!! (a::nat) b. (a < b) = (~(b <= a))" by arith
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   185
  show ?thesis by (simp add: a nrows_le)
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   186
qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   187
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   188
lemma le_nrows: "(n <= nrows A) = (\<forall> m. (\<forall> j i. m <= j \<longrightarrow> (Rep_matrix A j i) = 0) \<longrightarrow> n <= m)"
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   189
apply (auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   190
apply (subgoal_tac "nrows A <= m")
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   191
apply (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   192
apply (simp add: nrows_le)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   193
apply (drule_tac x="nrows A" in spec)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   194
by (simp add: nrows)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   195
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   196
lemma nrows_notzero: "Rep_matrix A m n \<noteq> 0 \<Longrightarrow> m < nrows A"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   197
apply (case_tac "nrows A <= m")
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   198
apply (simp_all add: nrows)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   199
done
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   200
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   201
lemma ncols_notzero: "Rep_matrix A m n \<noteq> 0 \<Longrightarrow> n < ncols A"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   202
apply (case_tac "ncols A <= n")
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   203
apply (simp_all add: ncols)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   204
done
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   205
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   206
lemma finite_natarray1: "finite {x. x < (n::nat)}"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   207
apply (induct n)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   208
apply (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   209
proof -
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   210
  fix n
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 38526
diff changeset
   211
  have "{x. x < Suc n} = insert n {x. x < n}"  by (rule set_eqI, simp, arith)
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   212
  moreover assume "finite {x. x < n}"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   213
  ultimately show "finite {x. x < Suc n}" by (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   214
qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   215
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   216
lemma finite_natarray2: "finite {pos. (fst pos) < (m::nat) & (snd pos) < (n::nat)}"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   217
  apply (induct m)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   218
  apply (simp+)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   219
  proof -
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   220
    fix m::nat
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   221
    let ?s0 = "{pos. fst pos < m & snd pos < n}"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   222
    let ?s1 = "{pos. fst pos < (Suc m) & snd pos < n}"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   223
    let ?sd = "{pos. fst pos = m & snd pos < n}"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   224
    assume f0: "finite ?s0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   225
    have f1: "finite ?sd"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   226
    proof -
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   227
      let ?f = "% x. (m, x)"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 38526
diff changeset
   228
      have "{pos. fst pos = m & snd pos < n} = ?f ` {x. x < n}" by (rule set_eqI, simp add: image_def, auto)
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   229
      moreover have "finite {x. x < n}" by (simp add: finite_natarray1)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   230
      ultimately show "finite {pos. fst pos = m & snd pos < n}" by (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   231
    qed
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 38526
diff changeset
   232
    have su: "?s0 \<union> ?sd = ?s1" by (rule set_eqI, simp, arith)
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   233
    from f0 f1 have "finite (?s0 \<union> ?sd)" by (rule finite_UnI)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   234
    with su show "finite ?s1" by (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   235
qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   236
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   237
lemma RepAbs_matrix:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   238
  assumes aem: "? m. ! j i. m <= j \<longrightarrow> x j i = 0" (is ?em) and aen:"? n. ! j i. (n <= i \<longrightarrow> x j i = 0)" (is ?en)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   239
  shows "(Rep_matrix (Abs_matrix x)) = x"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   240
apply (rule Abs_matrix_inverse)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   241
apply (simp add: matrix_def nonzero_positions_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   242
proof -
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   243
  from aem obtain m where a: "! j i. m <= j \<longrightarrow> x j i = 0" by (blast)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   244
  from aen obtain n where b: "! j i. n <= i \<longrightarrow> x j i = 0" by (blast)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   245
  let ?u = "{pos. x (fst pos) (snd pos) \<noteq> 0}"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   246
  let ?v = "{pos. fst pos < m & snd pos < n}"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   247
  have c: "!! (m::nat) a. ~(m <= a) \<Longrightarrow> a < m" by (arith)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   248
  from a b have "(?u \<inter> (-?v)) = {}"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   249
    apply (simp)
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 38526
diff changeset
   250
    apply (rule set_eqI)
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   251
    apply (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   252
    apply auto
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   253
    by (rule c, auto)+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   254
  then have d: "?u \<subseteq> ?v" by blast
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   255
  moreover have "finite ?v" by (simp add: finite_natarray2)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   256
  ultimately show "finite ?u" by (rule finite_subset)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   257
qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   258
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
   259
definition apply_infmatrix :: "('a \<Rightarrow> 'b) \<Rightarrow> 'a infmatrix \<Rightarrow> 'b infmatrix" where
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   260
  "apply_infmatrix f == % A. (% j i. f (A j i))"
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
   261
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
   262
definition apply_matrix :: "('a \<Rightarrow> 'b) \<Rightarrow> ('a::zero) matrix \<Rightarrow> ('b::zero) matrix" where
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   263
  "apply_matrix f == % A. Abs_matrix (apply_infmatrix f (Rep_matrix A))"
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
   264
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
   265
definition combine_infmatrix :: "('a \<Rightarrow> 'b \<Rightarrow> 'c) \<Rightarrow> 'a infmatrix \<Rightarrow> 'b infmatrix \<Rightarrow> 'c infmatrix" where
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   266
  "combine_infmatrix f == % A B. (% j i. f (A j i) (B j i))"
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
   267
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
   268
definition combine_matrix :: "('a \<Rightarrow> 'b \<Rightarrow> 'c) \<Rightarrow> ('a::zero) matrix \<Rightarrow> ('b::zero) matrix \<Rightarrow> ('c::zero) matrix" where
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   269
  "combine_matrix f == % A B. Abs_matrix (combine_infmatrix f (Rep_matrix A) (Rep_matrix B))"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   270
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   271
lemma expand_apply_infmatrix[simp]: "apply_infmatrix f A j i = f (A j i)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   272
by (simp add: apply_infmatrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   273
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   274
lemma expand_combine_infmatrix[simp]: "combine_infmatrix f A B j i = f (A j i) (B j i)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   275
by (simp add: combine_infmatrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   276
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
   277
definition commutative :: "('a \<Rightarrow> 'a \<Rightarrow> 'b) \<Rightarrow> bool" where
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   278
"commutative f == ! x y. f x y = f y x"
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
   279
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
   280
definition associative :: "('a \<Rightarrow> 'a \<Rightarrow> 'a) \<Rightarrow> bool" where
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   281
"associative f == ! x y z. f (f x y) z = f x (f y z)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   282
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   283
text{*
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   284
To reason about associativity and commutativity of operations on matrices,
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   285
let's take a step back and look at the general situtation: Assume that we have
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   286
sets $A$ and $B$ with $B \subset A$ and an abstraction $u: A \rightarrow B$. This abstraction has to fulfill $u(b) = b$ for all $b \in B$, but is arbitrary otherwise.
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   287
Each function $f: A \times A \rightarrow A$ now induces a function $f': B \times B \rightarrow B$ by $f' = u \circ f$.
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   288
It is obvious that commutativity of $f$ implies commutativity of $f'$: $f' x y = u (f x y) = u (f y x) = f' y x.$
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   289
*}
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   290
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   291
lemma combine_infmatrix_commute:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   292
  "commutative f \<Longrightarrow> commutative (combine_infmatrix f)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   293
by (simp add: commutative_def combine_infmatrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   294
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   295
lemma combine_matrix_commute:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   296
"commutative f \<Longrightarrow> commutative (combine_matrix f)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   297
by (simp add: combine_matrix_def commutative_def combine_infmatrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   298
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   299
text{*
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   300
On the contrary, given an associative function $f$ we cannot expect $f'$ to be associative. A counterexample is given by $A=\ganz$, $B=\{-1, 0, 1\}$,
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   301
as $f$ we take addition on $\ganz$, which is clearly associative. The abstraction is given by  $u(a) = 0$ for $a \notin B$. Then we have
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   302
\[ f' (f' 1 1) -1 = u(f (u (f 1 1)) -1) = u(f (u 2) -1) = u (f 0 -1) = -1, \]
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   303
but on the other hand we have
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   304
\[ f' 1 (f' 1 -1) = u (f 1 (u (f 1 -1))) = u (f 1 0) = 1.\]
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   305
A way out of this problem is to assume that $f(A\times A)\subset A$ holds, and this is what we are going to do:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   306
*}
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   307
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   308
lemma nonzero_positions_combine_infmatrix[simp]: "f 0 0 = 0 \<Longrightarrow> nonzero_positions (combine_infmatrix f A B) \<subseteq> (nonzero_positions A) \<union> (nonzero_positions B)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   309
by (rule subsetI, simp add: nonzero_positions_def combine_infmatrix_def, auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   310
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   311
lemma finite_nonzero_positions_Rep[simp]: "finite (nonzero_positions (Rep_matrix A))"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   312
by (insert Rep_matrix [of A], simp add: matrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   313
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   314
lemma combine_infmatrix_closed [simp]:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   315
  "f 0 0 = 0 \<Longrightarrow> Rep_matrix (Abs_matrix (combine_infmatrix f (Rep_matrix A) (Rep_matrix B))) = combine_infmatrix f (Rep_matrix A) (Rep_matrix B)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   316
apply (rule Abs_matrix_inverse)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   317
apply (simp add: matrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   318
apply (rule finite_subset[of _ "(nonzero_positions (Rep_matrix A)) \<union> (nonzero_positions (Rep_matrix B))"])
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   319
by (simp_all)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   320
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   321
text {* We need the next two lemmas only later, but it is analog to the above one, so we prove them now: *}
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   322
lemma nonzero_positions_apply_infmatrix[simp]: "f 0 = 0 \<Longrightarrow> nonzero_positions (apply_infmatrix f A) \<subseteq> nonzero_positions A"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   323
by (rule subsetI, simp add: nonzero_positions_def apply_infmatrix_def, auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   324
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   325
lemma apply_infmatrix_closed [simp]:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   326
  "f 0 = 0 \<Longrightarrow> Rep_matrix (Abs_matrix (apply_infmatrix f (Rep_matrix A))) = apply_infmatrix f (Rep_matrix A)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   327
apply (rule Abs_matrix_inverse)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   328
apply (simp add: matrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   329
apply (rule finite_subset[of _ "nonzero_positions (Rep_matrix A)"])
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   330
by (simp_all)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   331
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   332
lemma combine_infmatrix_assoc[simp]: "f 0 0 = 0 \<Longrightarrow> associative f \<Longrightarrow> associative (combine_infmatrix f)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   333
by (simp add: associative_def combine_infmatrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   334
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   335
lemma comb: "f = g \<Longrightarrow> x = y \<Longrightarrow> f x = g y"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   336
by (auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   337
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   338
lemma combine_matrix_assoc: "f 0 0 = 0 \<Longrightarrow> associative f \<Longrightarrow> associative (combine_matrix f)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   339
apply (simp(no_asm) add: associative_def combine_matrix_def, auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   340
apply (rule comb [of Abs_matrix Abs_matrix])
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   341
by (auto, insert combine_infmatrix_assoc[of f], simp add: associative_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   342
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   343
lemma Rep_apply_matrix[simp]: "f 0 = 0 \<Longrightarrow> Rep_matrix (apply_matrix f A) j i = f (Rep_matrix A j i)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   344
by (simp add: apply_matrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   345
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   346
lemma Rep_combine_matrix[simp]: "f 0 0 = 0 \<Longrightarrow> Rep_matrix (combine_matrix f A B) j i = f (Rep_matrix A j i) (Rep_matrix B j i)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   347
  by(simp add: combine_matrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   348
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   349
lemma combine_nrows_max: "f 0 0 = 0  \<Longrightarrow> nrows (combine_matrix f A B) <= max (nrows A) (nrows B)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   350
by (simp add: nrows_le)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   351
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   352
lemma combine_ncols_max: "f 0 0 = 0 \<Longrightarrow> ncols (combine_matrix f A B) <= max (ncols A) (ncols B)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   353
by (simp add: ncols_le)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   354
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   355
lemma combine_nrows: "f 0 0 = 0 \<Longrightarrow> nrows A <= q \<Longrightarrow> nrows B <= q \<Longrightarrow> nrows(combine_matrix f A B) <= q"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   356
  by (simp add: nrows_le)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   357
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   358
lemma combine_ncols: "f 0 0 = 0 \<Longrightarrow> ncols A <= q \<Longrightarrow> ncols B <= q \<Longrightarrow> ncols(combine_matrix f A B) <= q"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   359
  by (simp add: ncols_le)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   360
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
   361
definition zero_r_neutral :: "('a \<Rightarrow> 'b::zero \<Rightarrow> 'a) \<Rightarrow> bool" where
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   362
  "zero_r_neutral f == ! a. f a 0 = a"
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
   363
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
   364
definition zero_l_neutral :: "('a::zero \<Rightarrow> 'b \<Rightarrow> 'b) \<Rightarrow> bool" where
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   365
  "zero_l_neutral f == ! a. f 0 a = a"
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
   366
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
   367
definition zero_closed :: "(('a::zero) \<Rightarrow> ('b::zero) \<Rightarrow> ('c::zero)) \<Rightarrow> bool" where
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   368
  "zero_closed f == (!x. f x 0 = 0) & (!y. f 0 y = 0)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   369
38273
d31a34569542 modernized some specifications;
wenzelm
parents: 37765
diff changeset
   370
primrec foldseq :: "('a \<Rightarrow> 'a \<Rightarrow> 'a) \<Rightarrow> (nat \<Rightarrow> 'a) \<Rightarrow> nat \<Rightarrow> 'a"
d31a34569542 modernized some specifications;
wenzelm
parents: 37765
diff changeset
   371
where
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   372
  "foldseq f s 0 = s 0"
38273
d31a34569542 modernized some specifications;
wenzelm
parents: 37765
diff changeset
   373
| "foldseq f s (Suc n) = f (s 0) (foldseq f (% k. s(Suc k)) n)"
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   374
38273
d31a34569542 modernized some specifications;
wenzelm
parents: 37765
diff changeset
   375
primrec foldseq_transposed ::  "('a \<Rightarrow> 'a \<Rightarrow> 'a) \<Rightarrow> (nat \<Rightarrow> 'a) \<Rightarrow> nat \<Rightarrow> 'a"
d31a34569542 modernized some specifications;
wenzelm
parents: 37765
diff changeset
   376
where
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   377
  "foldseq_transposed f s 0 = s 0"
38273
d31a34569542 modernized some specifications;
wenzelm
parents: 37765
diff changeset
   378
| "foldseq_transposed f s (Suc n) = f (foldseq_transposed f s n) (s (Suc n))"
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   379
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   380
lemma foldseq_assoc : "associative f \<Longrightarrow> foldseq f = foldseq_transposed f"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   381
proof -
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   382
  assume a:"associative f"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   383
  then have sublemma: "!! n. ! N s. N <= n \<longrightarrow> foldseq f s N = foldseq_transposed f s N"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   384
  proof -
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   385
    fix n
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   386
    show "!N s. N <= n \<longrightarrow> foldseq f s N = foldseq_transposed f s N"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   387
    proof (induct n)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   388
      show "!N s. N <= 0 \<longrightarrow> foldseq f s N = foldseq_transposed f s N" by simp
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   389
    next
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   390
      fix n
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   391
      assume b:"! N s. N <= n \<longrightarrow> foldseq f s N = foldseq_transposed f s N"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   392
      have c:"!!N s. N <= n \<Longrightarrow> foldseq f s N = foldseq_transposed f s N" by (simp add: b)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   393
      show "! N t. N <= Suc n \<longrightarrow> foldseq f t N = foldseq_transposed f t N"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   394
      proof (auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   395
        fix N t
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   396
        assume Nsuc: "N <= Suc n"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   397
        show "foldseq f t N = foldseq_transposed f t N"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   398
        proof cases
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   399
          assume "N <= n"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   400
          then show "foldseq f t N = foldseq_transposed f t N" by (simp add: b)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   401
        next
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   402
          assume "~(N <= n)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   403
          with Nsuc have Nsuceq: "N = Suc n" by simp
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   404
          have neqz: "n \<noteq> 0 \<Longrightarrow> ? m. n = Suc m & Suc m <= n" by arith
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   405
          have assocf: "!! x y z. f x (f y z) = f (f x y) z" by (insert a, simp add: associative_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   406
          show "foldseq f t N = foldseq_transposed f t N"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   407
            apply (simp add: Nsuceq)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   408
            apply (subst c)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   409
            apply (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   410
            apply (case_tac "n = 0")
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   411
            apply (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   412
            apply (drule neqz)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   413
            apply (erule exE)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   414
            apply (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   415
            apply (subst assocf)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   416
            proof -
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   417
              fix m
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   418
              assume "n = Suc m & Suc m <= n"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   419
              then have mless: "Suc m <= n" by arith
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   420
              then have step1: "foldseq_transposed f (% k. t (Suc k)) m = foldseq f (% k. t (Suc k)) m" (is "?T1 = ?T2")
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   421
                apply (subst c)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   422
                by simp+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   423
              have step2: "f (t 0) ?T2 = foldseq f t (Suc m)" (is "_ = ?T3") by simp
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   424
              have step3: "?T3 = foldseq_transposed f t (Suc m)" (is "_ = ?T4")
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   425
                apply (subst c)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   426
                by (simp add: mless)+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   427
              have step4: "?T4 = f (foldseq_transposed f t m) (t (Suc m))" (is "_=?T5") by simp
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   428
              from step1 step2 step3 step4 show sowhat: "f (f (t 0) ?T1) (t (Suc (Suc m))) = f ?T5 (t (Suc (Suc m)))" by simp
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   429
            qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   430
          qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   431
        qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   432
      qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   433
    qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   434
    show "foldseq f = foldseq_transposed f" by ((rule ext)+, insert sublemma, auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   435
  qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   436
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   437
lemma foldseq_distr: "\<lbrakk>associative f; commutative f\<rbrakk> \<Longrightarrow> foldseq f (% k. f (u k) (v k)) n = f (foldseq f u n) (foldseq f v n)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   438
proof -
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   439
  assume assoc: "associative f"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   440
  assume comm: "commutative f"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   441
  from assoc have a:"!! x y z. f (f x y) z = f x (f y z)" by (simp add: associative_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   442
  from comm have b: "!! x y. f x y = f y x" by (simp add: commutative_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   443
  from assoc comm have c: "!! x y z. f x (f y z) = f y (f x z)" by (simp add: commutative_def associative_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   444
  have "!! n. (! u v. foldseq f (%k. f (u k) (v k)) n = f (foldseq f u n) (foldseq f v n))"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   445
    apply (induct_tac n)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   446
    apply (simp+, auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   447
    by (simp add: a b c)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   448
  then show "foldseq f (% k. f (u k) (v k)) n = f (foldseq f u n) (foldseq f v n)" by simp
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   449
qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   450
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   451
theorem "\<lbrakk>associative f; associative g; \<forall>a b c d. g (f a b) (f c d) = f (g a c) (g b d); ? x y. (f x) \<noteq> (f y); ? x y. (g x) \<noteq> (g y); f x x = x; g x x = x\<rbrakk> \<Longrightarrow> f=g | (! y. f y x = y) | (! y. g y x = y)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   452
oops
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   453
(* Model found
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   454
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   455
Trying to find a model that refutes: \<lbrakk>associative f; associative g;
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   456
 \<forall>a b c d. g (f a b) (f c d) = f (g a c) (g b d); \<exists>x y. f x \<noteq> f y;
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   457
 \<exists>x y. g x \<noteq> g y; f x x = x; g x x = x\<rbrakk>
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   458
\<Longrightarrow> f = g \<or> (\<forall>y. f y x = y) \<or> (\<forall>y. g y x = y)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   459
Searching for a model of size 1, translating term... invoking SAT solver... no model found.
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   460
Searching for a model of size 2, translating term... invoking SAT solver... no model found.
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   461
Searching for a model of size 3, translating term... invoking SAT solver...
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   462
Model found:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   463
Size of types: 'a: 3
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   464
x: a1
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   465
g: (a0\<mapsto>(a0\<mapsto>a1, a1\<mapsto>a0, a2\<mapsto>a1), a1\<mapsto>(a0\<mapsto>a0, a1\<mapsto>a1, a2\<mapsto>a0), a2\<mapsto>(a0\<mapsto>a1, a1\<mapsto>a0, a2\<mapsto>a1))
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   466
f: (a0\<mapsto>(a0\<mapsto>a0, a1\<mapsto>a0, a2\<mapsto>a0), a1\<mapsto>(a0\<mapsto>a1, a1\<mapsto>a1, a2\<mapsto>a1), a2\<mapsto>(a0\<mapsto>a0, a1\<mapsto>a0, a2\<mapsto>a0))
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   467
*)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   468
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   469
lemma foldseq_zero:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   470
assumes fz: "f 0 0 = 0" and sz: "! i. i <= n \<longrightarrow> s i = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   471
shows "foldseq f s n = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   472
proof -
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   473
  have "!! n. ! s. (! i. i <= n \<longrightarrow> s i = 0) \<longrightarrow> foldseq f s n = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   474
    apply (induct_tac n)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   475
    apply (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   476
    by (simp add: fz)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   477
  then show "foldseq f s n = 0" by (simp add: sz)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   478
qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   479
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   480
lemma foldseq_significant_positions:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   481
  assumes p: "! i. i <= N \<longrightarrow> S i = T i"
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   482
  shows "foldseq f S N = foldseq f T N"
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   483
proof -
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   484
  have "!! m . ! s t. (! i. i<=m \<longrightarrow> s i = t i) \<longrightarrow> foldseq f s m = foldseq f t m"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   485
    apply (induct_tac m)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   486
    apply (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   487
    apply (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   488
    apply (auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   489
    proof -
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   490
      fix n
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   491
      fix s::"nat\<Rightarrow>'a"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   492
      fix t::"nat\<Rightarrow>'a"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   493
      assume a: "\<forall>s t. (\<forall>i\<le>n. s i = t i) \<longrightarrow> foldseq f s n = foldseq f t n"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   494
      assume b: "\<forall>i\<le>Suc n. s i = t i"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   495
      have c:"!! a b. a = b \<Longrightarrow> f (t 0) a = f (t 0) b" by blast
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   496
      have d:"!! s t. (\<forall>i\<le>n. s i = t i) \<Longrightarrow> foldseq f s n = foldseq f t n" by (simp add: a)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   497
      show "f (t 0) (foldseq f (\<lambda>k. s (Suc k)) n) = f (t 0) (foldseq f (\<lambda>k. t (Suc k)) n)" by (rule c, simp add: d b)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   498
    qed
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   499
  with p show ?thesis by simp
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   500
qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   501
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   502
lemma foldseq_tail:
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   503
  assumes "M <= N"
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   504
  shows "foldseq f S N = foldseq f (% k. (if k < M then (S k) else (foldseq f (% k. S(k+M)) (N-M)))) M"
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   505
proof -
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   506
  have suc: "!! a b. \<lbrakk>a <= Suc b; a \<noteq> Suc b\<rbrakk> \<Longrightarrow> a <= b" by arith
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   507
  have a:"!! a b c . a = b \<Longrightarrow> f c a = f c b" by blast
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   508
  have "!! n. ! m s. m <= n \<longrightarrow> foldseq f s n = foldseq f (% k. (if k < m then (s k) else (foldseq f (% k. s(k+m)) (n-m)))) m"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   509
    apply (induct_tac n)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   510
    apply (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   511
    apply (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   512
    apply (auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   513
    apply (case_tac "m = Suc na")
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   514
    apply (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   515
    apply (rule a)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   516
    apply (rule foldseq_significant_positions)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   517
    apply (auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   518
    apply (drule suc, simp+)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   519
    proof -
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   520
      fix na m s
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   521
      assume suba:"\<forall>m\<le>na. \<forall>s. foldseq f s na = foldseq f (\<lambda>k. if k < m then s k else foldseq f (\<lambda>k. s (k + m)) (na - m))m"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   522
      assume subb:"m <= na"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   523
      from suba have subc:"!! m s. m <= na \<Longrightarrow>foldseq f s na = foldseq f (\<lambda>k. if k < m then s k else foldseq f (\<lambda>k. s (k + m)) (na - m))m" by simp
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   524
      have subd: "foldseq f (\<lambda>k. if k < m then s (Suc k) else foldseq f (\<lambda>k. s (Suc (k + m))) (na - m)) m =
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   525
        foldseq f (% k. s(Suc k)) na"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   526
        by (rule subc[of m "% k. s(Suc k)", THEN sym], simp add: subb)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   527
      from subb have sube: "m \<noteq> 0 \<Longrightarrow> ? mm. m = Suc mm & mm <= na" by arith
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   528
      show "f (s 0) (foldseq f (\<lambda>k. if k < m then s (Suc k) else foldseq f (\<lambda>k. s (Suc (k + m))) (na - m)) m) =
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   529
        foldseq f (\<lambda>k. if k < m then s k else foldseq f (\<lambda>k. s (k + m)) (Suc na - m)) m"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   530
        apply (simp add: subd)
38526
a9ce311eb6b9 tuned proof
haftmann
parents: 38273
diff changeset
   531
        apply (cases "m = 0")
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   532
        apply (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   533
        apply (drule sube)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   534
        apply (auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   535
        apply (rule a)
38526
a9ce311eb6b9 tuned proof
haftmann
parents: 38273
diff changeset
   536
        by (simp add: subc cong del: if_cong)
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   537
    qed
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   538
  then show ?thesis using assms by simp
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   539
qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   540
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   541
lemma foldseq_zerotail:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   542
  assumes
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   543
  fz: "f 0 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   544
  and sz: "! i.  n <= i \<longrightarrow> s i = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   545
  and nm: "n <= m"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   546
  shows
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   547
  "foldseq f s n = foldseq f s m"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   548
proof -
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   549
  show "foldseq f s n = foldseq f s m"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   550
    apply (simp add: foldseq_tail[OF nm, of f s])
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   551
    apply (rule foldseq_significant_positions)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   552
    apply (auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   553
    apply (subst foldseq_zero)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   554
    by (simp add: fz sz)+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   555
qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   556
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   557
lemma foldseq_zerotail2:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   558
  assumes "! x. f x 0 = x"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   559
  and "! i. n < i \<longrightarrow> s i = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   560
  and nm: "n <= m"
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   561
  shows "foldseq f s n = foldseq f s m"
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   562
proof -
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   563
  have "f 0 0 = 0" by (simp add: assms)
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   564
  have b:"!! m n. n <= m \<Longrightarrow> m \<noteq> n \<Longrightarrow> ? k. m-n = Suc k" by arith
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   565
  have c: "0 <= m" by simp
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   566
  have d: "!! k. k \<noteq> 0 \<Longrightarrow> ? l. k = Suc l" by arith
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   567
  show ?thesis
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   568
    apply (subst foldseq_tail[OF nm])
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   569
    apply (rule foldseq_significant_positions)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   570
    apply (auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   571
    apply (case_tac "m=n")
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   572
    apply (simp+)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   573
    apply (drule b[OF nm])
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   574
    apply (auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   575
    apply (case_tac "k=0")
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   576
    apply (simp add: assms)
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   577
    apply (drule d)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   578
    apply (auto)
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   579
    apply (simp add: assms foldseq_zero)
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   580
    done
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   581
qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   582
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   583
lemma foldseq_zerostart:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   584
  "! x. f 0 (f 0 x) = f 0 x \<Longrightarrow>  ! i. i <= n \<longrightarrow> s i = 0 \<Longrightarrow> foldseq f s (Suc n) = f 0 (s (Suc n))"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   585
proof -
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   586
  assume f00x: "! x. f 0 (f 0 x) = f 0 x"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   587
  have "! s. (! i. i<=n \<longrightarrow> s i = 0) \<longrightarrow> foldseq f s (Suc n) = f 0 (s (Suc n))"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   588
    apply (induct n)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   589
    apply (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   590
    apply (rule allI, rule impI)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   591
    proof -
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   592
      fix n
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   593
      fix s
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   594
      have a:"foldseq f s (Suc (Suc n)) = f (s 0) (foldseq f (% k. s(Suc k)) (Suc n))" by simp
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   595
      assume b: "! s. ((\<forall>i\<le>n. s i = 0) \<longrightarrow> foldseq f s (Suc n) = f 0 (s (Suc n)))"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   596
      from b have c:"!! s. (\<forall>i\<le>n. s i = 0) \<Longrightarrow> foldseq f s (Suc n) = f 0 (s (Suc n))" by simp
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   597
      assume d: "! i. i <= Suc n \<longrightarrow> s i = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   598
      show "foldseq f s (Suc (Suc n)) = f 0 (s (Suc (Suc n)))"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   599
        apply (subst a)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   600
        apply (subst c)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   601
        by (simp add: d f00x)+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   602
    qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   603
  then show "! i. i <= n \<longrightarrow> s i = 0 \<Longrightarrow> foldseq f s (Suc n) = f 0 (s (Suc n))" by simp
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   604
qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   605
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   606
lemma foldseq_zerostart2:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   607
  "! x. f 0 x = x \<Longrightarrow>  ! i. i < n \<longrightarrow> s i = 0 \<Longrightarrow> foldseq f s n = s n"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   608
proof -
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   609
  assume a:"! i. i<n \<longrightarrow> s i = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   610
  assume x:"! x. f 0 x = x"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   611
  from x have f00x: "! x. f 0 (f 0 x) = f 0 x" by blast
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   612
  have b: "!! i l. i < Suc l = (i <= l)" by arith
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   613
  have d: "!! k. k \<noteq> 0 \<Longrightarrow> ? l. k = Suc l" by arith
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   614
  show "foldseq f s n = s n"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   615
  apply (case_tac "n=0")
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   616
  apply (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   617
  apply (insert a)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   618
  apply (drule d)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   619
  apply (auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   620
  apply (simp add: b)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   621
  apply (insert f00x)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   622
  apply (drule foldseq_zerostart)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   623
  by (simp add: x)+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   624
qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   625
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   626
lemma foldseq_almostzero:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   627
  assumes f0x:"! x. f 0 x = x" and fx0: "! x. f x 0 = x" and s0:"! i. i \<noteq> j \<longrightarrow> s i = 0"
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   628
  shows "foldseq f s n = (if (j <= n) then (s j) else 0)"
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   629
proof -
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   630
  from s0 have a: "! i. i < j \<longrightarrow> s i = 0" by simp
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   631
  from s0 have b: "! i. j < i \<longrightarrow> s i = 0" by simp
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   632
  show ?thesis
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   633
    apply auto
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   634
    apply (subst foldseq_zerotail2[of f, OF fx0, of j, OF b, of n, THEN sym])
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   635
    apply simp
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   636
    apply (subst foldseq_zerostart2)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   637
    apply (simp add: f0x a)+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   638
    apply (subst foldseq_zero)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   639
    by (simp add: s0 f0x)+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   640
qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   641
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   642
lemma foldseq_distr_unary:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   643
  assumes "!! a b. g (f a b) = f (g a) (g b)"
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   644
  shows "g(foldseq f s n) = foldseq f (% x. g(s x)) n"
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   645
proof -
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   646
  have "! s. g(foldseq f s n) = foldseq f (% x. g(s x)) n"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   647
    apply (induct_tac n)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   648
    apply (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   649
    apply (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   650
    apply (auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   651
    apply (drule_tac x="% k. s (Suc k)" in spec)
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   652
    by (simp add: assms)
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   653
  then show ?thesis by simp
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   654
qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   655
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
   656
definition mult_matrix_n :: "nat \<Rightarrow> (('a::zero) \<Rightarrow> ('b::zero) \<Rightarrow> ('c::zero)) \<Rightarrow> ('c \<Rightarrow> 'c \<Rightarrow> 'c) \<Rightarrow> 'a matrix \<Rightarrow> 'b matrix \<Rightarrow> 'c matrix" where
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   657
  "mult_matrix_n n fmul fadd A B == Abs_matrix(% j i. foldseq fadd (% k. fmul (Rep_matrix A j k) (Rep_matrix B k i)) n)"
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
   658
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
   659
definition mult_matrix :: "(('a::zero) \<Rightarrow> ('b::zero) \<Rightarrow> ('c::zero)) \<Rightarrow> ('c \<Rightarrow> 'c \<Rightarrow> 'c) \<Rightarrow> 'a matrix \<Rightarrow> 'b matrix \<Rightarrow> 'c matrix" where
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   660
  "mult_matrix fmul fadd A B == mult_matrix_n (max (ncols A) (nrows B)) fmul fadd A B"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   661
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   662
lemma mult_matrix_n:
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   663
  assumes "ncols A \<le>  n" (is ?An) "nrows B \<le> n" (is ?Bn) "fadd 0 0 = 0" "fmul 0 0 = 0"
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   664
  shows c:"mult_matrix fmul fadd A B = mult_matrix_n n fmul fadd A B"
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   665
proof -
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   666
  show ?thesis using assms
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   667
    apply (simp add: mult_matrix_def mult_matrix_n_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   668
    apply (rule comb[of "Abs_matrix" "Abs_matrix"], simp, (rule ext)+)
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   669
    apply (rule foldseq_zerotail, simp_all add: nrows_le ncols_le assms)
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   670
    done
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   671
qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   672
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   673
lemma mult_matrix_nm:
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   674
  assumes "ncols A <= n" "nrows B <= n" "ncols A <= m" "nrows B <= m" "fadd 0 0 = 0" "fmul 0 0 = 0"
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   675
  shows "mult_matrix_n n fmul fadd A B = mult_matrix_n m fmul fadd A B"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   676
proof -
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   677
  from assms have "mult_matrix_n n fmul fadd A B = mult_matrix fmul fadd A B"
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   678
    by (simp add: mult_matrix_n)
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   679
  also from assms have "\<dots> = mult_matrix_n m fmul fadd A B"
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   680
    by (simp add: mult_matrix_n[THEN sym])
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   681
  finally show "mult_matrix_n n fmul fadd A B = mult_matrix_n m fmul fadd A B" by simp
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   682
qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   683
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
   684
definition r_distributive :: "('a \<Rightarrow> 'b \<Rightarrow> 'b) \<Rightarrow> ('b \<Rightarrow> 'b \<Rightarrow> 'b) \<Rightarrow> bool" where
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   685
  "r_distributive fmul fadd == ! a u v. fmul a (fadd u v) = fadd (fmul a u) (fmul a v)"
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
   686
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
   687
definition l_distributive :: "('a \<Rightarrow> 'b \<Rightarrow> 'a) \<Rightarrow> ('a \<Rightarrow> 'a \<Rightarrow> 'a) \<Rightarrow> bool" where
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   688
  "l_distributive fmul fadd == ! a u v. fmul (fadd u v) a = fadd (fmul u a) (fmul v a)"
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
   689
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
   690
definition distributive :: "('a \<Rightarrow> 'a \<Rightarrow> 'a) \<Rightarrow> ('a \<Rightarrow> 'a \<Rightarrow> 'a) \<Rightarrow> bool" where
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   691
  "distributive fmul fadd == l_distributive fmul fadd & r_distributive fmul fadd"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   692
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   693
lemma max1: "!! a x y. (a::nat) <= x \<Longrightarrow> a <= max x y" by (arith)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   694
lemma max2: "!! b x y. (b::nat) <= y \<Longrightarrow> b <= max x y" by (arith)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   695
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   696
lemma r_distributive_matrix:
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   697
 assumes
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   698
  "r_distributive fmul fadd"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   699
  "associative fadd"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   700
  "commutative fadd"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   701
  "fadd 0 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   702
  "! a. fmul a 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   703
  "! a. fmul 0 a = 0"
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   704
 shows "r_distributive (mult_matrix fmul fadd) (combine_matrix fadd)"
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   705
proof -
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   706
  from assms show ?thesis
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   707
    apply (simp add: r_distributive_def mult_matrix_def, auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   708
    proof -
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   709
      fix a::"'a matrix"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   710
      fix u::"'b matrix"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   711
      fix v::"'b matrix"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   712
      let ?mx = "max (ncols a) (max (nrows u) (nrows v))"
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   713
      from assms show "mult_matrix_n (max (ncols a) (nrows (combine_matrix fadd u v))) fmul fadd a (combine_matrix fadd u v) =
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   714
        combine_matrix fadd (mult_matrix_n (max (ncols a) (nrows u)) fmul fadd a u) (mult_matrix_n (max (ncols a) (nrows v)) fmul fadd a v)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   715
        apply (subst mult_matrix_nm[of _ _ _ ?mx fadd fmul])
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   716
        apply (simp add: max1 max2 combine_nrows combine_ncols)+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   717
        apply (subst mult_matrix_nm[of _ _ v ?mx fadd fmul])
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   718
        apply (simp add: max1 max2 combine_nrows combine_ncols)+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   719
        apply (subst mult_matrix_nm[of _ _ u ?mx fadd fmul])
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   720
        apply (simp add: max1 max2 combine_nrows combine_ncols)+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   721
        apply (simp add: mult_matrix_n_def r_distributive_def foldseq_distr[of fadd])
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   722
        apply (simp add: combine_matrix_def combine_infmatrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   723
        apply (rule comb[of "Abs_matrix" "Abs_matrix"], simp, (rule ext)+)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   724
        apply (simplesubst RepAbs_matrix)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   725
        apply (simp, auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   726
        apply (rule exI[of _ "nrows a"], simp add: nrows_le foldseq_zero)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   727
        apply (rule exI[of _ "ncols v"], simp add: ncols_le foldseq_zero)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   728
        apply (subst RepAbs_matrix)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   729
        apply (simp, auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   730
        apply (rule exI[of _ "nrows a"], simp add: nrows_le foldseq_zero)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   731
        apply (rule exI[of _ "ncols u"], simp add: ncols_le foldseq_zero)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   732
        done
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   733
    qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   734
qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   735
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   736
lemma l_distributive_matrix:
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   737
 assumes
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   738
  "l_distributive fmul fadd"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   739
  "associative fadd"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   740
  "commutative fadd"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   741
  "fadd 0 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   742
  "! a. fmul a 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   743
  "! a. fmul 0 a = 0"
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   744
 shows "l_distributive (mult_matrix fmul fadd) (combine_matrix fadd)"
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   745
proof -
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   746
  from assms show ?thesis
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   747
    apply (simp add: l_distributive_def mult_matrix_def, auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   748
    proof -
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   749
      fix a::"'b matrix"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   750
      fix u::"'a matrix"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   751
      fix v::"'a matrix"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   752
      let ?mx = "max (nrows a) (max (ncols u) (ncols v))"
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
   753
      from assms show "mult_matrix_n (max (ncols (combine_matrix fadd u v)) (nrows a)) fmul fadd (combine_matrix fadd u v) a =
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   754
               combine_matrix fadd (mult_matrix_n (max (ncols u) (nrows a)) fmul fadd u a) (mult_matrix_n (max (ncols v) (nrows a)) fmul fadd v a)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   755
        apply (subst mult_matrix_nm[of v _ _ ?mx fadd fmul])
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   756
        apply (simp add: max1 max2 combine_nrows combine_ncols)+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   757
        apply (subst mult_matrix_nm[of u _ _ ?mx fadd fmul])
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   758
        apply (simp add: max1 max2 combine_nrows combine_ncols)+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   759
        apply (subst mult_matrix_nm[of _ _ _ ?mx fadd fmul])
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   760
        apply (simp add: max1 max2 combine_nrows combine_ncols)+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   761
        apply (simp add: mult_matrix_n_def l_distributive_def foldseq_distr[of fadd])
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   762
        apply (simp add: combine_matrix_def combine_infmatrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   763
        apply (rule comb[of "Abs_matrix" "Abs_matrix"], simp, (rule ext)+)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   764
        apply (simplesubst RepAbs_matrix)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   765
        apply (simp, auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   766
        apply (rule exI[of _ "nrows v"], simp add: nrows_le foldseq_zero)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   767
        apply (rule exI[of _ "ncols a"], simp add: ncols_le foldseq_zero)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   768
        apply (subst RepAbs_matrix)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   769
        apply (simp, auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   770
        apply (rule exI[of _ "nrows u"], simp add: nrows_le foldseq_zero)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   771
        apply (rule exI[of _ "ncols a"], simp add: ncols_le foldseq_zero)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   772
        done
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   773
    qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   774
qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   775
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   776
instantiation matrix :: (zero) zero
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   777
begin
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   778
37765
26bdfb7b680b dropped superfluous [code del]s
haftmann
parents: 35818
diff changeset
   779
definition zero_matrix_def: "0 = Abs_matrix (\<lambda>j i. 0)"
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   780
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   781
instance ..
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   782
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   783
end
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   784
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   785
lemma Rep_zero_matrix_def[simp]: "Rep_matrix 0 j i = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   786
  apply (simp add: zero_matrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   787
  apply (subst RepAbs_matrix)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   788
  by (auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   789
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   790
lemma zero_matrix_def_nrows[simp]: "nrows 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   791
proof -
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   792
  have a:"!! (x::nat). x <= 0 \<Longrightarrow> x = 0" by (arith)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   793
  show "nrows 0 = 0" by (rule a, subst nrows_le, simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   794
qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   795
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   796
lemma zero_matrix_def_ncols[simp]: "ncols 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   797
proof -
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   798
  have a:"!! (x::nat). x <= 0 \<Longrightarrow> x = 0" by (arith)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   799
  show "ncols 0 = 0" by (rule a, subst ncols_le, simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   800
qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   801
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   802
lemma combine_matrix_zero_l_neutral: "zero_l_neutral f \<Longrightarrow> zero_l_neutral (combine_matrix f)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   803
  by (simp add: zero_l_neutral_def combine_matrix_def combine_infmatrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   804
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   805
lemma combine_matrix_zero_r_neutral: "zero_r_neutral f \<Longrightarrow> zero_r_neutral (combine_matrix f)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   806
  by (simp add: zero_r_neutral_def combine_matrix_def combine_infmatrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   807
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   808
lemma mult_matrix_zero_closed: "\<lbrakk>fadd 0 0 = 0; zero_closed fmul\<rbrakk> \<Longrightarrow> zero_closed (mult_matrix fmul fadd)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   809
  apply (simp add: zero_closed_def mult_matrix_def mult_matrix_n_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   810
  apply (auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   811
  by (subst foldseq_zero, (simp add: zero_matrix_def)+)+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   812
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   813
lemma mult_matrix_n_zero_right[simp]: "\<lbrakk>fadd 0 0 = 0; !a. fmul a 0 = 0\<rbrakk> \<Longrightarrow> mult_matrix_n n fmul fadd A 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   814
  apply (simp add: mult_matrix_n_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   815
  apply (subst foldseq_zero)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   816
  by (simp_all add: zero_matrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   817
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   818
lemma mult_matrix_n_zero_left[simp]: "\<lbrakk>fadd 0 0 = 0; !a. fmul 0 a = 0\<rbrakk> \<Longrightarrow> mult_matrix_n n fmul fadd 0 A = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   819
  apply (simp add: mult_matrix_n_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   820
  apply (subst foldseq_zero)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   821
  by (simp_all add: zero_matrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   822
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   823
lemma mult_matrix_zero_left[simp]: "\<lbrakk>fadd 0 0 = 0; !a. fmul 0 a = 0\<rbrakk> \<Longrightarrow> mult_matrix fmul fadd 0 A = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   824
by (simp add: mult_matrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   825
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   826
lemma mult_matrix_zero_right[simp]: "\<lbrakk>fadd 0 0 = 0; !a. fmul a 0 = 0\<rbrakk> \<Longrightarrow> mult_matrix fmul fadd A 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   827
by (simp add: mult_matrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   828
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   829
lemma apply_matrix_zero[simp]: "f 0 = 0 \<Longrightarrow> apply_matrix f 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   830
  apply (simp add: apply_matrix_def apply_infmatrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   831
  by (simp add: zero_matrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   832
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   833
lemma combine_matrix_zero: "f 0 0 = 0 \<Longrightarrow> combine_matrix f 0 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   834
  apply (simp add: combine_matrix_def combine_infmatrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   835
  by (simp add: zero_matrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   836
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   837
lemma transpose_matrix_zero[simp]: "transpose_matrix 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   838
apply (simp add: transpose_matrix_def transpose_infmatrix_def zero_matrix_def RepAbs_matrix)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   839
apply (subst Rep_matrix_inject[symmetric], (rule ext)+)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   840
apply (simp add: RepAbs_matrix)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   841
done
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   842
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   843
lemma apply_zero_matrix_def[simp]: "apply_matrix (% x. 0) A = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   844
  apply (simp add: apply_matrix_def apply_infmatrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   845
  by (simp add: zero_matrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   846
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
   847
definition singleton_matrix :: "nat \<Rightarrow> nat \<Rightarrow> ('a::zero) \<Rightarrow> 'a matrix" where
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   848
  "singleton_matrix j i a == Abs_matrix(% m n. if j = m & i = n then a else 0)"
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
   849
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
   850
definition move_matrix :: "('a::zero) matrix \<Rightarrow> int \<Rightarrow> int \<Rightarrow> 'a matrix" where
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   851
  "move_matrix A y x == Abs_matrix(% j i. if (neg ((int j)-y)) | (neg ((int i)-x)) then 0 else Rep_matrix A (nat ((int j)-y)) (nat ((int i)-x)))"
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
   852
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
   853
definition take_rows :: "('a::zero) matrix \<Rightarrow> nat \<Rightarrow> 'a matrix" where
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   854
  "take_rows A r == Abs_matrix(% j i. if (j < r) then (Rep_matrix A j i) else 0)"
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
   855
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
   856
definition take_columns :: "('a::zero) matrix \<Rightarrow> nat \<Rightarrow> 'a matrix" where
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   857
  "take_columns A c == Abs_matrix(% j i. if (i < c) then (Rep_matrix A j i) else 0)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   858
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
   859
definition column_of_matrix :: "('a::zero) matrix \<Rightarrow> nat \<Rightarrow> 'a matrix" where
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   860
  "column_of_matrix A n == take_columns (move_matrix A 0 (- int n)) 1"
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
   861
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
   862
definition row_of_matrix :: "('a::zero) matrix \<Rightarrow> nat \<Rightarrow> 'a matrix" where
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   863
  "row_of_matrix A m == take_rows (move_matrix A (- int m) 0) 1"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   864
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   865
lemma Rep_singleton_matrix[simp]: "Rep_matrix (singleton_matrix j i e) m n = (if j = m & i = n then e else 0)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   866
apply (simp add: singleton_matrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   867
apply (auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   868
apply (subst RepAbs_matrix)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   869
apply (rule exI[of _ "Suc m"], simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   870
apply (rule exI[of _ "Suc n"], simp+)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   871
by (subst RepAbs_matrix, rule exI[of _ "Suc j"], simp, rule exI[of _ "Suc i"], simp+)+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   872
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   873
lemma apply_singleton_matrix[simp]: "f 0 = 0 \<Longrightarrow> apply_matrix f (singleton_matrix j i x) = (singleton_matrix j i (f x))"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   874
apply (subst Rep_matrix_inject[symmetric])
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   875
apply (rule ext)+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   876
apply (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   877
done
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   878
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   879
lemma singleton_matrix_zero[simp]: "singleton_matrix j i 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   880
  by (simp add: singleton_matrix_def zero_matrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   881
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   882
lemma nrows_singleton[simp]: "nrows(singleton_matrix j i e) = (if e = 0 then 0 else Suc j)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   883
proof-
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   884
have th: "\<not> (\<forall>m. m \<le> j)" "\<exists>n. \<not> n \<le> i" by arith+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   885
from th show ?thesis 
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   886
apply (auto)
33657
a4179bf442d1 renamed lemmas "anti_sym" -> "antisym"
nipkow
parents: 32960
diff changeset
   887
apply (rule le_antisym)
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   888
apply (subst nrows_le)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   889
apply (simp add: singleton_matrix_def, auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   890
apply (subst RepAbs_matrix)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   891
apply auto
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   892
apply (simp add: Suc_le_eq)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   893
apply (rule not_leE)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   894
apply (subst nrows_le)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   895
by simp
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   896
qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   897
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   898
lemma ncols_singleton[simp]: "ncols(singleton_matrix j i e) = (if e = 0 then 0 else Suc i)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   899
proof-
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   900
have th: "\<not> (\<forall>m. m \<le> j)" "\<exists>n. \<not> n \<le> i" by arith+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   901
from th show ?thesis 
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   902
apply (auto)
33657
a4179bf442d1 renamed lemmas "anti_sym" -> "antisym"
nipkow
parents: 32960
diff changeset
   903
apply (rule le_antisym)
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   904
apply (subst ncols_le)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   905
apply (simp add: singleton_matrix_def, auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   906
apply (subst RepAbs_matrix)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   907
apply auto
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   908
apply (simp add: Suc_le_eq)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   909
apply (rule not_leE)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   910
apply (subst ncols_le)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   911
by simp
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   912
qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   913
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   914
lemma combine_singleton: "f 0 0 = 0 \<Longrightarrow> combine_matrix f (singleton_matrix j i a) (singleton_matrix j i b) = singleton_matrix j i (f a b)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   915
apply (simp add: singleton_matrix_def combine_matrix_def combine_infmatrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   916
apply (subst RepAbs_matrix)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   917
apply (rule exI[of _ "Suc j"], simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   918
apply (rule exI[of _ "Suc i"], simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   919
apply (rule comb[of "Abs_matrix" "Abs_matrix"], simp, (rule ext)+)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   920
apply (subst RepAbs_matrix)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   921
apply (rule exI[of _ "Suc j"], simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   922
apply (rule exI[of _ "Suc i"], simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   923
by simp
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   924
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   925
lemma transpose_singleton[simp]: "transpose_matrix (singleton_matrix j i a) = singleton_matrix i j a"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   926
apply (subst Rep_matrix_inject[symmetric], (rule ext)+)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   927
apply (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   928
done
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   929
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   930
lemma Rep_move_matrix[simp]:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   931
  "Rep_matrix (move_matrix A y x) j i =
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   932
  (if (neg ((int j)-y)) | (neg ((int i)-x)) then 0 else Rep_matrix A (nat((int j)-y)) (nat((int i)-x)))"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   933
apply (simp add: move_matrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   934
apply (auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   935
by (subst RepAbs_matrix,
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   936
  rule exI[of _ "(nrows A)+(nat (abs y))"], auto, rule nrows, arith,
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   937
  rule exI[of _ "(ncols A)+(nat (abs x))"], auto, rule ncols, arith)+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   938
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   939
lemma move_matrix_0_0[simp]: "move_matrix A 0 0 = A"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   940
by (simp add: move_matrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   941
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   942
lemma move_matrix_ortho: "move_matrix A j i = move_matrix (move_matrix A j 0) 0 i"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   943
apply (subst Rep_matrix_inject[symmetric])
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   944
apply (rule ext)+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   945
apply (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   946
done
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   947
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   948
lemma transpose_move_matrix[simp]:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   949
  "transpose_matrix (move_matrix A x y) = move_matrix (transpose_matrix A) y x"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   950
apply (subst Rep_matrix_inject[symmetric], (rule ext)+)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   951
apply (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   952
done
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   953
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   954
lemma move_matrix_singleton[simp]: "move_matrix (singleton_matrix u v x) j i = 
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   955
  (if (j + int u < 0) | (i + int v < 0) then 0 else (singleton_matrix (nat (j + int u)) (nat (i + int v)) x))"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   956
  apply (subst Rep_matrix_inject[symmetric])
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   957
  apply (rule ext)+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   958
  apply (case_tac "j + int u < 0")
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   959
  apply (simp, arith)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   960
  apply (case_tac "i + int v < 0")
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   961
  apply (simp add: neg_def, arith)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   962
  apply (simp add: neg_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   963
  apply arith
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   964
  done
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   965
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   966
lemma Rep_take_columns[simp]:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   967
  "Rep_matrix (take_columns A c) j i =
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   968
  (if i < c then (Rep_matrix A j i) else 0)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   969
apply (simp add: take_columns_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   970
apply (simplesubst RepAbs_matrix)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   971
apply (rule exI[of _ "nrows A"], auto, simp add: nrows_le)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   972
apply (rule exI[of _ "ncols A"], auto, simp add: ncols_le)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   973
done
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   974
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   975
lemma Rep_take_rows[simp]:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   976
  "Rep_matrix (take_rows A r) j i =
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   977
  (if j < r then (Rep_matrix A j i) else 0)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   978
apply (simp add: take_rows_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   979
apply (simplesubst RepAbs_matrix)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   980
apply (rule exI[of _ "nrows A"], auto, simp add: nrows_le)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   981
apply (rule exI[of _ "ncols A"], auto, simp add: ncols_le)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   982
done
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   983
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   984
lemma Rep_column_of_matrix[simp]:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   985
  "Rep_matrix (column_of_matrix A c) j i = (if i = 0 then (Rep_matrix A j c) else 0)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   986
  by (simp add: column_of_matrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   987
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   988
lemma Rep_row_of_matrix[simp]:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   989
  "Rep_matrix (row_of_matrix A r) j i = (if j = 0 then (Rep_matrix A r i) else 0)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   990
  by (simp add: row_of_matrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   991
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   992
lemma column_of_matrix: "ncols A <= n \<Longrightarrow> column_of_matrix A n = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   993
apply (subst Rep_matrix_inject[THEN sym])
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   994
apply (rule ext)+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   995
by (simp add: ncols)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   996
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   997
lemma row_of_matrix: "nrows A <= n \<Longrightarrow> row_of_matrix A n = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   998
apply (subst Rep_matrix_inject[THEN sym])
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
   999
apply (rule ext)+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1000
by (simp add: nrows)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1001
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1002
lemma mult_matrix_singleton_right[simp]:
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1003
  assumes
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1004
  "! x. fmul x 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1005
  "! x. fmul 0 x = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1006
  "! x. fadd 0 x = x"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1007
  "! x. fadd x 0 = x"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1008
  shows "(mult_matrix fmul fadd A (singleton_matrix j i e)) = apply_matrix (% x. fmul x e) (move_matrix (column_of_matrix A j) 0 (int i))"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1009
  apply (simp add: mult_matrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1010
  apply (subst mult_matrix_nm[of _ _ _ "max (ncols A) (Suc j)"])
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1011
  apply (auto)
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1012
  apply (simp add: assms)+
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1013
  apply (simp add: mult_matrix_n_def apply_matrix_def apply_infmatrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1014
  apply (rule comb[of "Abs_matrix" "Abs_matrix"], auto, (rule ext)+)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1015
  apply (subst foldseq_almostzero[of _ j])
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1016
  apply (simp add: assms)+
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1017
  apply (auto)
35818
680caf709510 dropped odd interpretation of comm_monoid_mult into comm_monoid_add
haftmann
parents: 35612
diff changeset
  1018
  apply (metis add_0 le_antisym le_diff_eq not_neg_nat zero_le_imp_of_nat zle_int)
29700
22faf21db3df added some simp rules
nipkow
parents: 29667
diff changeset
  1019
  done
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1020
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1021
lemma mult_matrix_ext:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1022
  assumes
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1023
  eprem:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1024
  "? e. (! a b. a \<noteq> b \<longrightarrow> fmul a e \<noteq> fmul b e)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1025
  and fprems:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1026
  "! a. fmul 0 a = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1027
  "! a. fmul a 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1028
  "! a. fadd a 0 = a"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1029
  "! a. fadd 0 a = a"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1030
  and contraprems:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1031
  "mult_matrix fmul fadd A = mult_matrix fmul fadd B"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1032
  shows
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1033
  "A = B"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1034
proof(rule contrapos_np[of "False"], simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1035
  assume a: "A \<noteq> B"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1036
  have b: "!! f g. (! x y. f x y = g x y) \<Longrightarrow> f = g" by ((rule ext)+, auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1037
  have "? j i. (Rep_matrix A j i) \<noteq> (Rep_matrix B j i)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1038
    apply (rule contrapos_np[of "False"], simp+)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1039
    apply (insert b[of "Rep_matrix A" "Rep_matrix B"], simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1040
    by (simp add: Rep_matrix_inject a)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1041
  then obtain J I where c:"(Rep_matrix A J I) \<noteq> (Rep_matrix B J I)" by blast
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1042
  from eprem obtain e where eprops:"(! a b. a \<noteq> b \<longrightarrow> fmul a e \<noteq> fmul b e)" by blast
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1043
  let ?S = "singleton_matrix I 0 e"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1044
  let ?comp = "mult_matrix fmul fadd"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1045
  have d: "!!x f g. f = g \<Longrightarrow> f x = g x" by blast
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1046
  have e: "(% x. fmul x e) 0 = 0" by (simp add: assms)
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1047
  have "~(?comp A ?S = ?comp B ?S)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1048
    apply (rule notI)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1049
    apply (simp add: fprems eprops)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1050
    apply (simp add: Rep_matrix_inject[THEN sym])
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1051
    apply (drule d[of _ _ "J"], drule d[of _ _ "0"])
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1052
    by (simp add: e c eprops)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1053
  with contraprems show "False" by simp
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1054
qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1055
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
  1056
definition foldmatrix :: "('a \<Rightarrow> 'a \<Rightarrow> 'a) \<Rightarrow> ('a \<Rightarrow> 'a \<Rightarrow> 'a) \<Rightarrow> ('a infmatrix) \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> 'a" where
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1057
  "foldmatrix f g A m n == foldseq_transposed g (% j. foldseq f (A j) n) m"
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
  1058
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
  1059
definition foldmatrix_transposed :: "('a \<Rightarrow> 'a \<Rightarrow> 'a) \<Rightarrow> ('a \<Rightarrow> 'a \<Rightarrow> 'a) \<Rightarrow> ('a infmatrix) \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> 'a" where
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1060
  "foldmatrix_transposed f g A m n == foldseq g (% j. foldseq_transposed f (A j) n) m"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1061
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1062
lemma foldmatrix_transpose:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1063
  assumes
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1064
  "! a b c d. g(f a b) (f c d) = f (g a c) (g b d)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1065
  shows
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1066
  "foldmatrix f g A m n = foldmatrix_transposed g f (transpose_infmatrix A) n m"
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1067
proof -
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1068
  have forall:"!! P x. (! x. P x) \<Longrightarrow> P x" by auto
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1069
  have tworows:"! A. foldmatrix f g A 1 n = foldmatrix_transposed g f (transpose_infmatrix A) n 1"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1070
    apply (induct n)
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1071
    apply (simp add: foldmatrix_def foldmatrix_transposed_def assms)+
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1072
    apply (auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1073
    by (drule_tac x="(% j i. A j (Suc i))" in forall, simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1074
  show "foldmatrix f g A m n = foldmatrix_transposed g f (transpose_infmatrix A) n m"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1075
    apply (simp add: foldmatrix_def foldmatrix_transposed_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1076
    apply (induct m, simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1077
    apply (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1078
    apply (insert tworows)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1079
    apply (drule_tac x="% j i. (if j = 0 then (foldseq_transposed g (\<lambda>u. A u i) m) else (A (Suc m) i))" in spec)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1080
    by (simp add: foldmatrix_def foldmatrix_transposed_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1081
qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1082
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1083
lemma foldseq_foldseq:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1084
assumes
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1085
  "associative f"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1086
  "associative g"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1087
  "! a b c d. g(f a b) (f c d) = f (g a c) (g b d)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1088
shows
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1089
  "foldseq g (% j. foldseq f (A j) n) m = foldseq f (% j. foldseq g ((transpose_infmatrix A) j) m) n"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1090
  apply (insert foldmatrix_transpose[of g f A m n])
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1091
  by (simp add: foldmatrix_def foldmatrix_transposed_def foldseq_assoc[THEN sym] assms)
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1092
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1093
lemma mult_n_nrows:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1094
assumes
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1095
"! a. fmul 0 a = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1096
"! a. fmul a 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1097
"fadd 0 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1098
shows "nrows (mult_matrix_n n fmul fadd A B) \<le> nrows A"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1099
apply (subst nrows_le)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1100
apply (simp add: mult_matrix_n_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1101
apply (subst RepAbs_matrix)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1102
apply (rule_tac x="nrows A" in exI)
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1103
apply (simp add: nrows assms foldseq_zero)
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1104
apply (rule_tac x="ncols B" in exI)
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1105
apply (simp add: ncols assms foldseq_zero)
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1106
apply (simp add: nrows assms foldseq_zero)
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1107
done
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1108
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1109
lemma mult_n_ncols:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1110
assumes
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1111
"! a. fmul 0 a = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1112
"! a. fmul a 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1113
"fadd 0 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1114
shows "ncols (mult_matrix_n n fmul fadd A B) \<le> ncols B"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1115
apply (subst ncols_le)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1116
apply (simp add: mult_matrix_n_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1117
apply (subst RepAbs_matrix)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1118
apply (rule_tac x="nrows A" in exI)
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1119
apply (simp add: nrows assms foldseq_zero)
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1120
apply (rule_tac x="ncols B" in exI)
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1121
apply (simp add: ncols assms foldseq_zero)
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1122
apply (simp add: ncols assms foldseq_zero)
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1123
done
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1124
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1125
lemma mult_nrows:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1126
assumes
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1127
"! a. fmul 0 a = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1128
"! a. fmul a 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1129
"fadd 0 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1130
shows "nrows (mult_matrix fmul fadd A B) \<le> nrows A"
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1131
by (simp add: mult_matrix_def mult_n_nrows assms)
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1132
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1133
lemma mult_ncols:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1134
assumes
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1135
"! a. fmul 0 a = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1136
"! a. fmul a 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1137
"fadd 0 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1138
shows "ncols (mult_matrix fmul fadd A B) \<le> ncols B"
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1139
by (simp add: mult_matrix_def mult_n_ncols assms)
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1140
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1141
lemma nrows_move_matrix_le: "nrows (move_matrix A j i) <= nat((int (nrows A)) + j)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1142
  apply (auto simp add: nrows_le)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1143
  apply (rule nrows)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1144
  apply (arith)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1145
  done
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1146
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1147
lemma ncols_move_matrix_le: "ncols (move_matrix A j i) <= nat((int (ncols A)) + i)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1148
  apply (auto simp add: ncols_le)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1149
  apply (rule ncols)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1150
  apply (arith)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1151
  done
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1152
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1153
lemma mult_matrix_assoc:
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1154
  assumes
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1155
  "! a. fmul1 0 a = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1156
  "! a. fmul1 a 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1157
  "! a. fmul2 0 a = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1158
  "! a. fmul2 a 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1159
  "fadd1 0 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1160
  "fadd2 0 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1161
  "! a b c d. fadd2 (fadd1 a b) (fadd1 c d) = fadd1 (fadd2 a c) (fadd2 b d)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1162
  "associative fadd1"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1163
  "associative fadd2"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1164
  "! a b c. fmul2 (fmul1 a b) c = fmul1 a (fmul2 b c)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1165
  "! a b c. fmul2 (fadd1 a b) c = fadd1 (fmul2 a c) (fmul2 b c)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1166
  "! a b c. fmul1 c (fadd2 a b) = fadd2 (fmul1 c a) (fmul1 c b)"
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1167
  shows "mult_matrix fmul2 fadd2 (mult_matrix fmul1 fadd1 A B) C = mult_matrix fmul1 fadd1 A (mult_matrix fmul2 fadd2 B C)"
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1168
proof -
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1169
  have comb_left:  "!! A B x y. A = B \<Longrightarrow> (Rep_matrix (Abs_matrix A)) x y = (Rep_matrix(Abs_matrix B)) x y" by blast
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1170
  have fmul2fadd1fold: "!! x s n. fmul2 (foldseq fadd1 s n)  x = foldseq fadd1 (% k. fmul2 (s k) x) n"
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1171
    by (rule_tac g1 = "% y. fmul2 y x" in ssubst [OF foldseq_distr_unary], insert assms, simp_all)
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1172
  have fmul1fadd2fold: "!! x s n. fmul1 x (foldseq fadd2 s n) = foldseq fadd2 (% k. fmul1 x (s k)) n"
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1173
    using assms by (rule_tac g1 = "% y. fmul1 x y" in ssubst [OF foldseq_distr_unary], simp_all)
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1174
  let ?N = "max (ncols A) (max (ncols B) (max (nrows B) (nrows C)))"
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1175
  show ?thesis
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1176
    apply (simp add: Rep_matrix_inject[THEN sym])
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1177
    apply (rule ext)+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1178
    apply (simp add: mult_matrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1179
    apply (simplesubst mult_matrix_nm[of _ "max (ncols (mult_matrix_n (max (ncols A) (nrows B)) fmul1 fadd1 A B)) (nrows C)" _ "max (ncols B) (nrows C)"])
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1180
    apply (simp add: max1 max2 mult_n_ncols mult_n_nrows assms)+
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1181
    apply (simplesubst mult_matrix_nm[of _ "max (ncols A) (nrows (mult_matrix_n (max (ncols B) (nrows C)) fmul2 fadd2 B C))" _ "max (ncols A) (nrows B)"])
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1182
    apply (simp add: max1 max2 mult_n_ncols mult_n_nrows assms)+
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1183
    apply (simplesubst mult_matrix_nm[of _ _ _ "?N"])
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1184
    apply (simp add: max1 max2 mult_n_ncols mult_n_nrows assms)+
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1185
    apply (simplesubst mult_matrix_nm[of _ _ _ "?N"])
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1186
    apply (simp add: max1 max2 mult_n_ncols mult_n_nrows assms)+
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1187
    apply (simplesubst mult_matrix_nm[of _ _ _ "?N"])
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1188
    apply (simp add: max1 max2 mult_n_ncols mult_n_nrows assms)+
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1189
    apply (simplesubst mult_matrix_nm[of _ _ _ "?N"])
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1190
    apply (simp add: max1 max2 mult_n_ncols mult_n_nrows assms)+
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1191
    apply (simp add: mult_matrix_n_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1192
    apply (rule comb_left)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1193
    apply ((rule ext)+, simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1194
    apply (simplesubst RepAbs_matrix)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1195
    apply (rule exI[of _ "nrows B"])
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1196
    apply (simp add: nrows assms foldseq_zero)
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1197
    apply (rule exI[of _ "ncols C"])
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1198
    apply (simp add: assms ncols foldseq_zero)
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1199
    apply (subst RepAbs_matrix)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1200
    apply (rule exI[of _ "nrows A"])
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1201
    apply (simp add: nrows assms foldseq_zero)
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1202
    apply (rule exI[of _ "ncols B"])
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1203
    apply (simp add: assms ncols foldseq_zero)
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1204
    apply (simp add: fmul2fadd1fold fmul1fadd2fold assms)
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1205
    apply (subst foldseq_foldseq)
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1206
    apply (simp add: assms)+
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1207
    apply (simp add: transpose_infmatrix)
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1208
    done
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1209
qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1210
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1211
lemma
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1212
  assumes
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1213
  "! a. fmul1 0 a = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1214
  "! a. fmul1 a 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1215
  "! a. fmul2 0 a = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1216
  "! a. fmul2 a 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1217
  "fadd1 0 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1218
  "fadd2 0 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1219
  "! a b c d. fadd2 (fadd1 a b) (fadd1 c d) = fadd1 (fadd2 a c) (fadd2 b d)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1220
  "associative fadd1"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1221
  "associative fadd2"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1222
  "! a b c. fmul2 (fmul1 a b) c = fmul1 a (fmul2 b c)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1223
  "! a b c. fmul2 (fadd1 a b) c = fadd1 (fmul2 a c) (fmul2 b c)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1224
  "! a b c. fmul1 c (fadd2 a b) = fadd2 (fmul1 c a) (fmul1 c b)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1225
  shows
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1226
  "(mult_matrix fmul1 fadd1 A) o (mult_matrix fmul2 fadd2 B) = mult_matrix fmul2 fadd2 (mult_matrix fmul1 fadd1 A B)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1227
apply (rule ext)+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1228
apply (simp add: comp_def )
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1229
apply (simp add: mult_matrix_assoc assms)
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1230
done
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1231
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1232
lemma mult_matrix_assoc_simple:
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1233
  assumes
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1234
  "! a. fmul 0 a = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1235
  "! a. fmul a 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1236
  "fadd 0 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1237
  "associative fadd"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1238
  "commutative fadd"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1239
  "associative fmul"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1240
  "distributive fmul fadd"
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1241
  shows "mult_matrix fmul fadd (mult_matrix fmul fadd A B) C = mult_matrix fmul fadd A (mult_matrix fmul fadd B C)"
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1242
proof -
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1243
  have "!! a b c d. fadd (fadd a b) (fadd c d) = fadd (fadd a c) (fadd b d)"
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1244
    using assms by (simp add: associative_def commutative_def)
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1245
  then show ?thesis
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1246
    apply (subst mult_matrix_assoc)
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1247
    using assms
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1248
    apply simp_all
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1249
    apply (simp_all add: associative_def distributive_def l_distributive_def r_distributive_def)
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1250
    done
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1251
qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1252
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1253
lemma transpose_apply_matrix: "f 0 = 0 \<Longrightarrow> transpose_matrix (apply_matrix f A) = apply_matrix f (transpose_matrix A)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1254
apply (simp add: Rep_matrix_inject[THEN sym])
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1255
apply (rule ext)+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1256
by simp
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1257
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1258
lemma transpose_combine_matrix: "f 0 0 = 0 \<Longrightarrow> transpose_matrix (combine_matrix f A B) = combine_matrix f (transpose_matrix A) (transpose_matrix B)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1259
apply (simp add: Rep_matrix_inject[THEN sym])
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1260
apply (rule ext)+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1261
by simp
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1262
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1263
lemma Rep_mult_matrix:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1264
  assumes
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1265
  "! a. fmul 0 a = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1266
  "! a. fmul a 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1267
  "fadd 0 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1268
  shows
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1269
  "Rep_matrix(mult_matrix fmul fadd A B) j i =
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1270
  foldseq fadd (% k. fmul (Rep_matrix A j k) (Rep_matrix B k i)) (max (ncols A) (nrows B))"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1271
apply (simp add: mult_matrix_def mult_matrix_n_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1272
apply (subst RepAbs_matrix)
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1273
apply (rule exI[of _ "nrows A"], insert assms, simp add: nrows foldseq_zero)
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1274
apply (rule exI[of _ "ncols B"], insert assms, simp add: ncols foldseq_zero)
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1275
apply simp
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1276
done
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1277
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1278
lemma transpose_mult_matrix:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1279
  assumes
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1280
  "! a. fmul 0 a = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1281
  "! a. fmul a 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1282
  "fadd 0 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1283
  "! x y. fmul y x = fmul x y"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1284
  shows
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1285
  "transpose_matrix (mult_matrix fmul fadd A B) = mult_matrix fmul fadd (transpose_matrix B) (transpose_matrix A)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1286
  apply (simp add: Rep_matrix_inject[THEN sym])
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1287
  apply (rule ext)+
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1288
  using assms
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1289
  apply (simp add: Rep_mult_matrix max_ac)
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1290
  done
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1291
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1292
lemma column_transpose_matrix: "column_of_matrix (transpose_matrix A) n = transpose_matrix (row_of_matrix A n)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1293
apply (simp add:  Rep_matrix_inject[THEN sym])
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1294
apply (rule ext)+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1295
by simp
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1296
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1297
lemma take_columns_transpose_matrix: "take_columns (transpose_matrix A) n = transpose_matrix (take_rows A n)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1298
apply (simp add: Rep_matrix_inject[THEN sym])
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1299
apply (rule ext)+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1300
by simp
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1301
27580
haftmann
parents: 27484
diff changeset
  1302
instantiation matrix :: ("{zero, ord}") ord
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1303
begin
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1304
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1305
definition
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1306
  le_matrix_def: "A \<le> B \<longleftrightarrow> (\<forall>j i. Rep_matrix A j i \<le> Rep_matrix B j i)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1307
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1308
definition
28637
7aabaf1ba263 reactivated HOL-Matrix;
wenzelm
parents: 28562
diff changeset
  1309
  less_def: "A < (B\<Colon>'a matrix) \<longleftrightarrow> A \<le> B \<and> \<not> B \<le> A"
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1310
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1311
instance ..
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1312
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1313
end
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1314
27580
haftmann
parents: 27484
diff changeset
  1315
instance matrix :: ("{zero, order}") order
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1316
apply intro_classes
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1317
apply (simp_all add: le_matrix_def less_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1318
apply (auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1319
apply (drule_tac x=j in spec, drule_tac x=j in spec)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1320
apply (drule_tac x=i in spec, drule_tac x=i in spec)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1321
apply (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1322
apply (simp add: Rep_matrix_inject[THEN sym])
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1323
apply (rule ext)+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1324
apply (drule_tac x=xa in spec, drule_tac x=xa in spec)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1325
apply (drule_tac x=xb in spec, drule_tac x=xb in spec)
28637
7aabaf1ba263 reactivated HOL-Matrix;
wenzelm
parents: 28562
diff changeset
  1326
apply simp
7aabaf1ba263 reactivated HOL-Matrix;
wenzelm
parents: 28562
diff changeset
  1327
done
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1328
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1329
lemma le_apply_matrix:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1330
  assumes
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1331
  "f 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1332
  "! x y. x <= y \<longrightarrow> f x <= f y"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1333
  "(a::('a::{ord, zero}) matrix) <= b"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1334
  shows
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1335
  "apply_matrix f a <= apply_matrix f b"
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1336
  using assms by (simp add: le_matrix_def)
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1337
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1338
lemma le_combine_matrix:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1339
  assumes
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1340
  "f 0 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1341
  "! a b c d. a <= b & c <= d \<longrightarrow> f a c <= f b d"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1342
  "A <= B"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1343
  "C <= D"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1344
  shows
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1345
  "combine_matrix f A C <= combine_matrix f B D"
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1346
  using assms by (simp add: le_matrix_def)
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1347
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1348
lemma le_left_combine_matrix:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1349
  assumes
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1350
  "f 0 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1351
  "! a b c. a <= b \<longrightarrow> f c a <= f c b"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1352
  "A <= B"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1353
  shows
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1354
  "combine_matrix f C A <= combine_matrix f C B"
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1355
  using assms by (simp add: le_matrix_def)
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1356
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1357
lemma le_right_combine_matrix:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1358
  assumes
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1359
  "f 0 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1360
  "! a b c. a <= b \<longrightarrow> f a c <= f b c"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1361
  "A <= B"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1362
  shows
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1363
  "combine_matrix f A C <= combine_matrix f B C"
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1364
  using assms by (simp add: le_matrix_def)
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1365
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1366
lemma le_transpose_matrix: "(A <= B) = (transpose_matrix A <= transpose_matrix B)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1367
  by (simp add: le_matrix_def, auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1368
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1369
lemma le_foldseq:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1370
  assumes
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1371
  "! a b c d . a <= b & c <= d \<longrightarrow> f a c <= f b d"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1372
  "! i. i <= n \<longrightarrow> s i <= t i"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1373
  shows
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1374
  "foldseq f s n <= foldseq f t n"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1375
proof -
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1376
  have "! s t. (! i. i<=n \<longrightarrow> s i <= t i) \<longrightarrow> foldseq f s n <= foldseq f t n"
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1377
    by (induct n) (simp_all add: assms)
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1378
  then show "foldseq f s n <= foldseq f t n" using assms by simp
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1379
qed
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1380
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1381
lemma le_left_mult:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1382
  assumes
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1383
  "! a b c d. a <= b & c <= d \<longrightarrow> fadd a c <= fadd b d"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1384
  "! c a b.   0 <= c & a <= b \<longrightarrow> fmul c a <= fmul c b"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1385
  "! a. fmul 0 a = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1386
  "! a. fmul a 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1387
  "fadd 0 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1388
  "0 <= C"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1389
  "A <= B"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1390
  shows
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1391
  "mult_matrix fmul fadd C A <= mult_matrix fmul fadd C B"
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1392
  using assms
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1393
  apply (simp add: le_matrix_def Rep_mult_matrix)
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1394
  apply (auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1395
  apply (simplesubst foldseq_zerotail[of _ _ _ "max (ncols C) (max (nrows A) (nrows B))"], simp_all add: nrows ncols max1 max2)+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1396
  apply (rule le_foldseq)
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1397
  apply (auto)
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1398
  done
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1399
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1400
lemma le_right_mult:
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1401
  assumes
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1402
  "! a b c d. a <= b & c <= d \<longrightarrow> fadd a c <= fadd b d"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1403
  "! c a b. 0 <= c & a <= b \<longrightarrow> fmul a c <= fmul b c"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1404
  "! a. fmul 0 a = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1405
  "! a. fmul a 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1406
  "fadd 0 0 = 0"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1407
  "0 <= C"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1408
  "A <= B"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1409
  shows
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1410
  "mult_matrix fmul fadd A C <= mult_matrix fmul fadd B C"
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1411
  using assms
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1412
  apply (simp add: le_matrix_def Rep_mult_matrix)
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1413
  apply (auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1414
  apply (simplesubst foldseq_zerotail[of _ _ _ "max (nrows C) (max (ncols A) (ncols B))"], simp_all add: nrows ncols max1 max2)+
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1415
  apply (rule le_foldseq)
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1416
  apply (auto)
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1417
  done
27484
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1418
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1419
lemma spec2: "! j i. P j i \<Longrightarrow> P j i" by blast
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1420
lemma neg_imp: "(\<not> Q \<longrightarrow> \<not> P) \<Longrightarrow> P \<longrightarrow> Q" by blast
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1421
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1422
lemma singleton_matrix_le[simp]: "(singleton_matrix j i a <= singleton_matrix j i b) = (a <= (b::_::order))"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1423
  by (auto simp add: le_matrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1424
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1425
lemma singleton_le_zero[simp]: "(singleton_matrix j i x <= 0) = (x <= (0::'a::{order,zero}))"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1426
  apply (auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1427
  apply (simp add: le_matrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1428
  apply (drule_tac j=j and i=i in spec2)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1429
  apply (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1430
  apply (simp add: le_matrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1431
  done
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1432
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1433
lemma singleton_ge_zero[simp]: "(0 <= singleton_matrix j i x) = ((0::'a::{order,zero}) <= x)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1434
  apply (auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1435
  apply (simp add: le_matrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1436
  apply (drule_tac j=j and i=i in spec2)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1437
  apply (simp)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1438
  apply (simp add: le_matrix_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1439
  done
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1440
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1441
lemma move_matrix_le_zero[simp]: "0 <= j \<Longrightarrow> 0 <= i \<Longrightarrow> (move_matrix A j i <= 0) = (A <= (0::('a::{order,zero}) matrix))"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1442
  apply (auto simp add: le_matrix_def neg_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1443
  apply (drule_tac j="ja+(nat j)" and i="ia+(nat i)" in spec2)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1444
  apply (auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1445
  done
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1446
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1447
lemma move_matrix_zero_le[simp]: "0 <= j \<Longrightarrow> 0 <= i \<Longrightarrow> (0 <= move_matrix A j i) = ((0::('a::{order,zero}) matrix) <= A)"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1448
  apply (auto simp add: le_matrix_def neg_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1449
  apply (drule_tac j="ja+(nat j)" and i="ia+(nat i)" in spec2)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1450
  apply (auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1451
  done
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1452
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1453
lemma move_matrix_le_move_matrix_iff[simp]: "0 <= j \<Longrightarrow> 0 <= i \<Longrightarrow> (move_matrix A j i <= move_matrix B j i) = (A <= (B::('a::{order,zero}) matrix))"
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1454
  apply (auto simp add: le_matrix_def neg_def)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1455
  apply (drule_tac j="ja+(nat j)" and i="ia+(nat i)" in spec2)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1456
  apply (auto)
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1457
  done  
dbb9981c3d18 added marginal setup for code generation
haftmann
parents: 25764
diff changeset
  1458
27580
haftmann
parents: 27484
diff changeset
  1459
instantiation matrix :: ("{lattice, zero}") lattice
25764
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1460
begin
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1461
37765
26bdfb7b680b dropped superfluous [code del]s
haftmann
parents: 35818
diff changeset
  1462
definition "inf = combine_matrix inf"
25764
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1463
37765
26bdfb7b680b dropped superfluous [code del]s
haftmann
parents: 35818
diff changeset
  1464
definition "sup = combine_matrix sup"
25764
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1465
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1466
instance
22452
8a86fd2a1bf0 adjusted to new lattice theory developement in Lattices.thy / FixedPoint.thy
haftmann
parents: 22422
diff changeset
  1467
  by default (auto simp add: inf_le1 inf_le2 le_infI le_matrix_def inf_matrix_def sup_matrix_def)
8a86fd2a1bf0 adjusted to new lattice theory developement in Lattices.thy / FixedPoint.thy
haftmann
parents: 22422
diff changeset
  1468
25764
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1469
end
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1470
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1471
instantiation matrix :: ("{plus, zero}") plus
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1472
begin
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1473
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1474
definition
37765
26bdfb7b680b dropped superfluous [code del]s
haftmann
parents: 35818
diff changeset
  1475
  plus_matrix_def: "A + B = combine_matrix (op +) A B"
25764
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1476
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1477
instance ..
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1478
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1479
end
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1480
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1481
instantiation matrix :: ("{uminus, zero}") uminus
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1482
begin
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1483
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1484
definition
37765
26bdfb7b680b dropped superfluous [code del]s
haftmann
parents: 35818
diff changeset
  1485
  minus_matrix_def: "- A = apply_matrix uminus A"
25764
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1486
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1487
instance ..
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1488
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1489
end
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1490
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1491
instantiation matrix :: ("{minus, zero}") minus
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1492
begin
14593
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1493
25764
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1494
definition
37765
26bdfb7b680b dropped superfluous [code del]s
haftmann
parents: 35818
diff changeset
  1495
  diff_matrix_def: "A - B = combine_matrix (op -) A B"
25764
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1496
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1497
instance ..
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1498
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1499
end
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1500
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1501
instantiation matrix :: ("{plus, times, zero}") times
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1502
begin
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1503
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1504
definition
37765
26bdfb7b680b dropped superfluous [code del]s
haftmann
parents: 35818
diff changeset
  1505
  times_matrix_def: "A * B = mult_matrix (op *) (op +) A B"
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1506
25764
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1507
instance ..
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1508
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1509
end
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1510
27653
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1511
instantiation matrix :: ("{lattice, uminus, zero}") abs
25764
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1512
begin
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1513
25764
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1514
definition
37765
26bdfb7b680b dropped superfluous [code del]s
haftmann
parents: 35818
diff changeset
  1515
  abs_matrix_def: "abs (A \<Colon> 'a matrix) = sup A (- A)"
25764
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1516
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1517
instance ..
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1518
878c37886eed removed some legacy instantiations
haftmann
parents: 25502
diff changeset
  1519
end
23879
4776af8be741 split class abs from class minus
haftmann
parents: 23477
diff changeset
  1520
27653
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1521
instance matrix :: (monoid_add) monoid_add
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1522
proof
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1523
  fix A B C :: "'a matrix"
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1524
  show "A + B + C = A + (B + C)"    
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1525
    apply (simp add: plus_matrix_def)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1526
    apply (rule combine_matrix_assoc[simplified associative_def, THEN spec, THEN spec, THEN spec])
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1527
    apply (simp_all add: add_assoc)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1528
    done
27653
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1529
  show "0 + A = A"
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1530
    apply (simp add: plus_matrix_def)
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1531
    apply (rule combine_matrix_zero_l_neutral[simplified zero_l_neutral_def, THEN spec])
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1532
    apply (simp)
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1533
    done
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1534
  show "A + 0 = A"
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1535
    apply (simp add: plus_matrix_def)
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1536
    apply (rule combine_matrix_zero_r_neutral [simplified zero_r_neutral_def, THEN spec])
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1537
    apply (simp)
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1538
    done
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1539
qed
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1540
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1541
instance matrix :: (comm_monoid_add) comm_monoid_add
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1542
proof
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1543
  fix A B :: "'a matrix"
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1544
  show "A + B = B + A"
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1545
    apply (simp add: plus_matrix_def)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1546
    apply (rule combine_matrix_commute[simplified commutative_def, THEN spec, THEN spec])
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1547
    apply (simp_all add: add_commute)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1548
    done
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1549
  show "0 + A = A"
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1550
    apply (simp add: plus_matrix_def)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1551
    apply (rule combine_matrix_zero_l_neutral[simplified zero_l_neutral_def, THEN spec])
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1552
    apply (simp)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1553
    done
27653
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1554
qed
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1555
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1556
instance matrix :: (group_add) group_add
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1557
proof
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1558
  fix A B :: "'a matrix"
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1559
  show "- A + A = 0" 
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1560
    by (simp add: plus_matrix_def minus_matrix_def Rep_matrix_inject[symmetric] ext)
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1561
  show "A - B = A + - B"
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1562
    by (simp add: plus_matrix_def diff_matrix_def minus_matrix_def Rep_matrix_inject [symmetric] ext diff_minus)
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1563
qed
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1564
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1565
instance matrix :: (ab_group_add) ab_group_add
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1566
proof
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1567
  fix A B :: "'a matrix"
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1568
  show "- A + A = 0" 
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1569
    by (simp add: plus_matrix_def minus_matrix_def Rep_matrix_inject[symmetric] ext)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1570
  show "A - B = A + - B" 
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1571
    by (simp add: plus_matrix_def diff_matrix_def minus_matrix_def Rep_matrix_inject[symmetric] ext)
27653
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1572
qed
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1573
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34872
diff changeset
  1574
instance matrix :: (ordered_ab_group_add) ordered_ab_group_add
27653
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1575
proof
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1576
  fix A B C :: "'a matrix"
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1577
  assume "A <= B"
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1578
  then show "C + A <= C + B"
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1579
    apply (simp add: plus_matrix_def)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1580
    apply (rule le_left_combine_matrix)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1581
    apply (simp_all)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1582
    done
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1583
qed
27653
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1584
  
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34872
diff changeset
  1585
instance matrix :: (lattice_ab_group_add) semilattice_inf_ab_group_add ..
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34872
diff changeset
  1586
instance matrix :: (lattice_ab_group_add) semilattice_sup_ab_group_add ..
14593
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1587
34872
6ca970cfa873 Matrices form a semiring with 0
hoelzl
parents: 33657
diff changeset
  1588
instance matrix :: (semiring_0) semiring_0
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1589
proof
27653
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1590
  fix A B C :: "'a matrix"
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1591
  show "A * B * C = A * (B * C)"
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1592
    apply (simp add: times_matrix_def)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1593
    apply (rule mult_matrix_assoc)
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 28637
diff changeset
  1594
    apply (simp_all add: associative_def algebra_simps)
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1595
    done
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1596
  show "(A + B) * C = A * C + B * C"
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1597
    apply (simp add: times_matrix_def plus_matrix_def)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1598
    apply (rule l_distributive_matrix[simplified l_distributive_def, THEN spec, THEN spec, THEN spec])
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 28637
diff changeset
  1599
    apply (simp_all add: associative_def commutative_def algebra_simps)
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1600
    done
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1601
  show "A * (B + C) = A * B + A * C"
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1602
    apply (simp add: times_matrix_def plus_matrix_def)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1603
    apply (rule r_distributive_matrix[simplified r_distributive_def, THEN spec, THEN spec, THEN spec])
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 28637
diff changeset
  1604
    apply (simp_all add: associative_def commutative_def algebra_simps)
27653
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1605
    done
34872
6ca970cfa873 Matrices form a semiring with 0
hoelzl
parents: 33657
diff changeset
  1606
  show "0 * A = 0" by (simp add: times_matrix_def)
6ca970cfa873 Matrices form a semiring with 0
hoelzl
parents: 33657
diff changeset
  1607
  show "A * 0 = 0" by (simp add: times_matrix_def)
6ca970cfa873 Matrices form a semiring with 0
hoelzl
parents: 33657
diff changeset
  1608
qed
6ca970cfa873 Matrices form a semiring with 0
hoelzl
parents: 33657
diff changeset
  1609
6ca970cfa873 Matrices form a semiring with 0
hoelzl
parents: 33657
diff changeset
  1610
instance matrix :: (ring) ring ..
27653
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1611
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34872
diff changeset
  1612
instance matrix :: (ordered_ring) ordered_ring
27653
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1613
proof
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1614
  fix A B C :: "'a matrix"
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1615
  assume a: "A \<le> B"
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1616
  assume b: "0 \<le> C"
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1617
  from a b show "C * A \<le> C * B"
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1618
    apply (simp add: times_matrix_def)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1619
    apply (rule le_left_mult)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1620
    apply (simp_all add: add_mono mult_left_mono)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1621
    done
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1622
  from a b show "A * C \<le> B * C"
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1623
    apply (simp add: times_matrix_def)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1624
    apply (rule le_right_mult)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1625
    apply (simp_all add: add_mono mult_right_mono)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1626
    done
27653
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1627
qed
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1628
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34872
diff changeset
  1629
instance matrix :: (lattice_ring) lattice_ring
27653
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1630
proof
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34872
diff changeset
  1631
  fix A B C :: "('a :: lattice_ring) matrix"
27653
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1632
  show "abs A = sup A (-A)" 
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1633
    by (simp add: abs_matrix_def)
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1634
qed
14593
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1635
25303
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 23879
diff changeset
  1636
lemma Rep_matrix_add[simp]:
27653
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1637
  "Rep_matrix ((a::('a::monoid_add)matrix)+b) j i  = (Rep_matrix a j i) + (Rep_matrix b j i)"
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1638
  by (simp add: plus_matrix_def)
14593
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1639
34872
6ca970cfa873 Matrices form a semiring with 0
hoelzl
parents: 33657
diff changeset
  1640
lemma Rep_matrix_mult: "Rep_matrix ((a::('a::semiring_0) matrix) * b) j i = 
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1641
  foldseq (op +) (% k.  (Rep_matrix a j k) * (Rep_matrix b k i)) (max (ncols a) (nrows b))"
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1642
apply (simp add: times_matrix_def)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1643
apply (simp add: Rep_mult_matrix)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1644
done
14593
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1645
27653
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1646
lemma apply_matrix_add: "! x y. f (x+y) = (f x) + (f y) \<Longrightarrow> f 0 = (0::'a)
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1647
  \<Longrightarrow> apply_matrix f ((a::('a::monoid_add) matrix) + b) = (apply_matrix f a) + (apply_matrix f b)"
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1648
apply (subst Rep_matrix_inject[symmetric])
14593
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1649
apply (rule ext)+
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1650
apply (simp)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1651
done
14593
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1652
27653
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1653
lemma singleton_matrix_add: "singleton_matrix j i ((a::_::monoid_add)+b) = (singleton_matrix j i a) + (singleton_matrix j i b)"
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1654
apply (subst Rep_matrix_inject[symmetric])
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1655
apply (rule ext)+
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1656
apply (simp)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1657
done
14593
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1658
34872
6ca970cfa873 Matrices form a semiring with 0
hoelzl
parents: 33657
diff changeset
  1659
lemma nrows_mult: "nrows ((A::('a::semiring_0) matrix) * B) <= nrows A"
14593
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1660
by (simp add: times_matrix_def mult_nrows)
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1661
34872
6ca970cfa873 Matrices form a semiring with 0
hoelzl
parents: 33657
diff changeset
  1662
lemma ncols_mult: "ncols ((A::('a::semiring_0) matrix) * B) <= ncols B"
14593
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1663
by (simp add: times_matrix_def mult_ncols)
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1664
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 21312
diff changeset
  1665
definition
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 21312
diff changeset
  1666
  one_matrix :: "nat \<Rightarrow> ('a::{zero,one}) matrix" where
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 21312
diff changeset
  1667
  "one_matrix n = Abs_matrix (% j i. if j = i & j < n then 1 else 0)"
14593
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1668
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1669
lemma Rep_one_matrix[simp]: "Rep_matrix (one_matrix n) j i = (if (j = i & j < n) then 1 else 0)"
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1670
apply (simp add: one_matrix_def)
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents: 15178
diff changeset
  1671
apply (simplesubst RepAbs_matrix)
14593
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1672
apply (rule exI[of _ n], simp add: split_if)+
16733
236dfafbeb63 linear arithmetic now takes "&" in assumptions apart.
nipkow
parents: 15481
diff changeset
  1673
by (simp add: split_if)
14593
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1674
20633
e98f59806244 renamed axclass_xxxx axclasses;
wenzelm
parents: 17915
diff changeset
  1675
lemma nrows_one_matrix[simp]: "nrows ((one_matrix n) :: ('a::zero_neq_one)matrix) = n" (is "?r = _")
14593
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1676
proof -
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1677
  have "?r <= n" by (simp add: nrows_le)
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1678
  moreover have "n <= ?r" by (simp add:le_nrows, arith)
14593
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1679
  ultimately show "?r = n" by simp
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1680
qed
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1681
20633
e98f59806244 renamed axclass_xxxx axclasses;
wenzelm
parents: 17915
diff changeset
  1682
lemma ncols_one_matrix[simp]: "ncols ((one_matrix n) :: ('a::zero_neq_one)matrix) = n" (is "?r = _")
14593
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1683
proof -
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1684
  have "?r <= n" by (simp add: ncols_le)
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1685
  moreover have "n <= ?r" by (simp add: le_ncols, arith)
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1686
  ultimately show "?r = n" by simp
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1687
qed
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1688
34872
6ca970cfa873 Matrices form a semiring with 0
hoelzl
parents: 33657
diff changeset
  1689
lemma one_matrix_mult_right[simp]: "ncols A <= n \<Longrightarrow> (A::('a::{semiring_1}) matrix) * (one_matrix n) = A"
14593
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1690
apply (subst Rep_matrix_inject[THEN sym])
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1691
apply (rule ext)+
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1692
apply (simp add: times_matrix_def Rep_mult_matrix)
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1693
apply (rule_tac j1="xa" in ssubst[OF foldseq_almostzero])
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1694
apply (simp_all)
32440
153965be0f4b tuned proofs
nipkow
parents: 29700
diff changeset
  1695
by (simp add: ncols)
14593
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1696
34872
6ca970cfa873 Matrices form a semiring with 0
hoelzl
parents: 33657
diff changeset
  1697
lemma one_matrix_mult_left[simp]: "nrows A <= n \<Longrightarrow> (one_matrix n) * A = (A::('a::semiring_1) matrix)"
14593
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1698
apply (subst Rep_matrix_inject[THEN sym])
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1699
apply (rule ext)+
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1700
apply (simp add: times_matrix_def Rep_mult_matrix)
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1701
apply (rule_tac j1="x" in ssubst[OF foldseq_almostzero])
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1702
apply (simp_all)
32440
153965be0f4b tuned proofs
nipkow
parents: 29700
diff changeset
  1703
by (simp add: nrows)
14593
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1704
27653
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1705
lemma transpose_matrix_mult: "transpose_matrix ((A::('a::comm_ring) matrix)*B) = (transpose_matrix B) * (transpose_matrix A)"
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1706
apply (simp add: times_matrix_def)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1707
apply (subst transpose_mult_matrix)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1708
apply (simp_all add: mult_commute)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1709
done
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1710
27653
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1711
lemma transpose_matrix_add: "transpose_matrix ((A::('a::monoid_add) matrix)+B) = transpose_matrix A + transpose_matrix B"
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1712
by (simp add: plus_matrix_def transpose_combine_matrix)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1713
27653
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1714
lemma transpose_matrix_diff: "transpose_matrix ((A::('a::group_add) matrix)-B) = transpose_matrix A - transpose_matrix B"
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1715
by (simp add: diff_matrix_def transpose_combine_matrix)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1716
27653
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1717
lemma transpose_matrix_minus: "transpose_matrix (-(A::('a::group_add) matrix)) = - transpose_matrix (A::'a matrix)"
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1718
by (simp add: minus_matrix_def transpose_apply_matrix)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1719
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
  1720
definition right_inverse_matrix :: "('a::{ring_1}) matrix \<Rightarrow> 'a matrix \<Rightarrow> bool" where
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1721
  "right_inverse_matrix A X == (A * X = one_matrix (max (nrows A) (ncols X))) \<and> nrows X \<le> ncols A" 
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
  1722
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
  1723
definition left_inverse_matrix :: "('a::{ring_1}) matrix \<Rightarrow> 'a matrix \<Rightarrow> bool" where
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1724
  "left_inverse_matrix A X == (X * A = one_matrix (max(nrows X) (ncols A))) \<and> ncols X \<le> nrows A" 
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
  1725
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
  1726
definition inverse_matrix :: "('a::{ring_1}) matrix \<Rightarrow> 'a matrix \<Rightarrow> bool" where
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1727
  "inverse_matrix A X == (right_inverse_matrix A X) \<and> (left_inverse_matrix A X)"
14593
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1728
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1729
lemma right_inverse_matrix_dim: "right_inverse_matrix A X \<Longrightarrow> nrows A = ncols X"
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1730
apply (insert ncols_mult[of A X], insert nrows_mult[of A X])
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1731
by (simp add: right_inverse_matrix_def)
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1732
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1733
lemma left_inverse_matrix_dim: "left_inverse_matrix A Y \<Longrightarrow> ncols A = nrows Y"
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1734
apply (insert ncols_mult[of Y A], insert nrows_mult[of Y A]) 
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1735
by (simp add: left_inverse_matrix_def)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1736
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1737
lemma left_right_inverse_matrix_unique: 
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1738
  assumes "left_inverse_matrix A Y" "right_inverse_matrix A X"
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1739
  shows "X = Y"
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1740
proof -
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1741
  have "Y = Y * one_matrix (nrows A)" 
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1742
    apply (subst one_matrix_mult_right)
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1743
    using assms
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1744
    apply (simp_all add: left_inverse_matrix_def)
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1745
    done
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1746
  also have "\<dots> = Y * (A * X)" 
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1747
    apply (insert assms)
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1748
    apply (frule right_inverse_matrix_dim)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1749
    by (simp add: right_inverse_matrix_def)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1750
  also have "\<dots> = (Y * A) * X" by (simp add: mult_assoc)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1751
  also have "\<dots> = X" 
35612
0a9fb49a086d eliminated old-style prems;
wenzelm
parents: 35416
diff changeset
  1752
    apply (insert assms)
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1753
    apply (frule left_inverse_matrix_dim)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1754
    apply (simp_all add:  left_inverse_matrix_def right_inverse_matrix_def one_matrix_mult_left)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1755
    done
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1756
  ultimately show "X = Y" by (simp)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1757
qed
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1758
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1759
lemma inverse_matrix_inject: "\<lbrakk> inverse_matrix A X; inverse_matrix A Y \<rbrakk> \<Longrightarrow> X = Y"
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1760
  by (auto simp add: inverse_matrix_def left_right_inverse_matrix_unique)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1761
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1762
lemma one_matrix_inverse: "inverse_matrix (one_matrix n) (one_matrix n)"
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1763
  by (simp add: inverse_matrix_def left_inverse_matrix_def right_inverse_matrix_def)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1764
34872
6ca970cfa873 Matrices form a semiring with 0
hoelzl
parents: 33657
diff changeset
  1765
lemma zero_imp_mult_zero: "(a::'a::semiring_0) = 0 | b = 0 \<Longrightarrow> a * b = 0"
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1766
by auto
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1767
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1768
lemma Rep_matrix_zero_imp_mult_zero:
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34872
diff changeset
  1769
  "! j i k. (Rep_matrix A j k = 0) | (Rep_matrix B k i) = 0  \<Longrightarrow> A * B = (0::('a::lattice_ring) matrix)"
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1770
apply (subst Rep_matrix_inject[symmetric])
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1771
apply (rule ext)+
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1772
apply (auto simp add: Rep_matrix_mult foldseq_zero zero_imp_mult_zero)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1773
done
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1774
27653
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1775
lemma add_nrows: "nrows (A::('a::monoid_add) matrix) <= u \<Longrightarrow> nrows B <= u \<Longrightarrow> nrows (A + B) <= u"
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1776
apply (simp add: plus_matrix_def)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1777
apply (rule combine_nrows)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1778
apply (simp_all)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1779
done
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1780
34872
6ca970cfa873 Matrices form a semiring with 0
hoelzl
parents: 33657
diff changeset
  1781
lemma move_matrix_row_mult: "move_matrix ((A::('a::semiring_0) matrix) * B) j 0 = (move_matrix A j 0) * B"
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1782
apply (subst Rep_matrix_inject[symmetric])
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1783
apply (rule ext)+
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1784
apply (auto simp add: Rep_matrix_mult foldseq_zero)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1785
apply (rule_tac foldseq_zerotail[symmetric])
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1786
apply (auto simp add: nrows zero_imp_mult_zero max2)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1787
apply (rule order_trans)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1788
apply (rule ncols_move_matrix_le)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1789
apply (simp add: max1)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1790
done
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1791
34872
6ca970cfa873 Matrices form a semiring with 0
hoelzl
parents: 33657
diff changeset
  1792
lemma move_matrix_col_mult: "move_matrix ((A::('a::semiring_0) matrix) * B) 0 i = A * (move_matrix B 0 i)"
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1793
apply (subst Rep_matrix_inject[symmetric])
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1794
apply (rule ext)+
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1795
apply (auto simp add: Rep_matrix_mult foldseq_zero)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1796
apply (rule_tac foldseq_zerotail[symmetric])
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1797
apply (auto simp add: ncols zero_imp_mult_zero max1)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1798
apply (rule order_trans)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1799
apply (rule nrows_move_matrix_le)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1800
apply (simp add: max2)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1801
done
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1802
27653
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1803
lemma move_matrix_add: "((move_matrix (A + B) j i)::(('a::monoid_add) matrix)) = (move_matrix A j i) + (move_matrix B j i)" 
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1804
apply (subst Rep_matrix_inject[symmetric])
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1805
apply (rule ext)+
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1806
apply (simp)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1807
done
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1808
34872
6ca970cfa873 Matrices form a semiring with 0
hoelzl
parents: 33657
diff changeset
  1809
lemma move_matrix_mult: "move_matrix ((A::('a::semiring_0) matrix)*B) j i = (move_matrix A j 0) * (move_matrix B 0 i)"
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1810
by (simp add: move_matrix_ortho[of "A*B"] move_matrix_col_mult move_matrix_row_mult)
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1811
35416
d8d7d1b785af replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents: 35032
diff changeset
  1812
definition scalar_mult :: "('a::ring) \<Rightarrow> 'a matrix \<Rightarrow> 'a matrix" where
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1813
  "scalar_mult a m == apply_matrix (op * a) m"
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1814
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1815
lemma scalar_mult_zero[simp]: "scalar_mult y 0 = 0" 
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 22452
diff changeset
  1816
by (simp add: scalar_mult_def)
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1817
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1818
lemma scalar_mult_add: "scalar_mult y (a+b) = (scalar_mult y a) + (scalar_mult y b)"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 28637
diff changeset
  1819
by (simp add: scalar_mult_def apply_matrix_add algebra_simps)
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1820
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1821
lemma Rep_scalar_mult[simp]: "Rep_matrix (scalar_mult y a) j i = y * (Rep_matrix a j i)" 
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 22452
diff changeset
  1822
by (simp add: scalar_mult_def)
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1823
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1824
lemma scalar_mult_singleton[simp]: "scalar_mult y (singleton_matrix j i x) = singleton_matrix j i (y * x)"
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 22452
diff changeset
  1825
apply (subst Rep_matrix_inject[symmetric])
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 22452
diff changeset
  1826
apply (rule ext)+
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 22452
diff changeset
  1827
apply (auto)
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 22452
diff changeset
  1828
done
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1829
27653
180e28bab764 more class instantiations
haftmann
parents: 27580
diff changeset
  1830
lemma Rep_minus[simp]: "Rep_matrix (-(A::_::group_add)) x y = - (Rep_matrix A x y)"
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 22452
diff changeset
  1831
by (simp add: minus_matrix_def)
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1832
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34872
diff changeset
  1833
lemma Rep_abs[simp]: "Rep_matrix (abs (A::_::lattice_ab_group_add)) x y = abs (Rep_matrix A x y)"
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 22452
diff changeset
  1834
by (simp add: abs_lattice sup_matrix_def)
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14738
diff changeset
  1835
14593
90c88e7ef62d first version of matrices for HOL/Isabelle
obua
parents:
diff changeset
  1836
end