src/HOL/Algebra/Divisibility.thy
author paulson <lp15@cam.ac.uk>
Sun, 08 Jul 2018 16:07:26 +0100
changeset 68604 57721285d4ef
parent 68551 b680e74eb6f2
child 68664 bd0df72c16d5
permissions -rw-r--r--
elimination of some "smt"
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
41959
b460124855b8 tuned headers;
wenzelm
parents: 41413
diff changeset
     1
(*  Title:      HOL/Algebra/Divisibility.thy
b460124855b8 tuned headers;
wenzelm
parents: 41413
diff changeset
     2
    Author:     Clemens Ballarin
b460124855b8 tuned headers;
wenzelm
parents: 41413
diff changeset
     3
    Author:     Stephan Hohe
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
     4
*)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
     5
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
     6
section \<open>Divisibility in monoids and rings\<close>
41959
b460124855b8 tuned headers;
wenzelm
parents: 41413
diff changeset
     7
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
     8
theory Divisibility
66579
2db3fe23fdaf Revert 5a42eddc11c1.
ballarin
parents: 66501
diff changeset
     9
  imports "HOL-Library.Permutation" Coset Group
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    10
begin
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    11
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
    12
section \<open>Factorial Monoids\<close>
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
    13
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
    14
subsection \<open>Monoids with Cancellation Law\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    15
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    16
locale monoid_cancel = monoid +
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
    17
  assumes l_cancel: "\<lbrakk>c \<otimes> a = c \<otimes> b; a \<in> carrier G; b \<in> carrier G; c \<in> carrier G\<rbrakk> \<Longrightarrow> a = b"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
    18
    and r_cancel: "\<lbrakk>a \<otimes> c = b \<otimes> c; a \<in> carrier G; b \<in> carrier G; c \<in> carrier G\<rbrakk> \<Longrightarrow> a = b"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    19
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    20
lemma (in monoid) monoid_cancelI:
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
    21
  assumes l_cancel: "\<And>a b c. \<lbrakk>c \<otimes> a = c \<otimes> b; a \<in> carrier G; b \<in> carrier G; c \<in> carrier G\<rbrakk> \<Longrightarrow> a = b"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
    22
    and r_cancel: "\<And>a b c. \<lbrakk>a \<otimes> c = b \<otimes> c; a \<in> carrier G; b \<in> carrier G; c \<in> carrier G\<rbrakk> \<Longrightarrow> a = b"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    23
  shows "monoid_cancel G"
61169
4de9ff3ea29a tuned proofs -- less legacy;
wenzelm
parents: 60515
diff changeset
    24
    by standard fact+
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    25
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
    26
lemma (in monoid_cancel) is_monoid_cancel: "monoid_cancel G" ..
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    27
29237
e90d9d51106b More porting to new locales.
ballarin
parents: 28823
diff changeset
    28
sublocale group \<subseteq> monoid_cancel
61169
4de9ff3ea29a tuned proofs -- less legacy;
wenzelm
parents: 60515
diff changeset
    29
  by standard simp_all
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    30
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    31
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    32
locale comm_monoid_cancel = monoid_cancel + comm_monoid
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    33
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    34
lemma comm_monoid_cancelI:
28599
12d914277b8d Removed 'includes'.
ballarin
parents: 27717
diff changeset
    35
  fixes G (structure)
12d914277b8d Removed 'includes'.
ballarin
parents: 27717
diff changeset
    36
  assumes "comm_monoid G"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
    37
  assumes cancel: "\<And>a b c. \<lbrakk>a \<otimes> c = b \<otimes> c; a \<in> carrier G; b \<in> carrier G; c \<in> carrier G\<rbrakk> \<Longrightarrow> a = b"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    38
  shows "comm_monoid_cancel G"
28599
12d914277b8d Removed 'includes'.
ballarin
parents: 27717
diff changeset
    39
proof -
29237
e90d9d51106b More porting to new locales.
ballarin
parents: 28823
diff changeset
    40
  interpret comm_monoid G by fact
28599
12d914277b8d Removed 'includes'.
ballarin
parents: 27717
diff changeset
    41
  show "comm_monoid_cancel G"
36278
6b330b1fa0c0 Tidied up using s/l
paulson
parents: 35849
diff changeset
    42
    by unfold_locales (metis assms(2) m_ac(2))+
28599
12d914277b8d Removed 'includes'.
ballarin
parents: 27717
diff changeset
    43
qed
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    44
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
    45
lemma (in comm_monoid_cancel) is_comm_monoid_cancel: "comm_monoid_cancel G"
28823
dcbef866c9e2 tuned unfold_locales invocation
haftmann
parents: 28600
diff changeset
    46
  by intro_locales
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    47
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
    48
sublocale comm_group \<subseteq> comm_monoid_cancel ..
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    49
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    50
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
    51
subsection \<open>Products of Units in Monoids\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    52
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    53
lemma (in monoid) prod_unit_l:
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
    54
  assumes abunit[simp]: "a \<otimes> b \<in> Units G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
    55
    and aunit[simp]: "a \<in> Units G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    56
    and carr[simp]: "a \<in> carrier G"  "b \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    57
  shows "b \<in> Units G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    58
proof -
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    59
  have c: "inv (a \<otimes> b) \<otimes> a \<in> carrier G" by simp
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    60
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
    61
  have "(inv (a \<otimes> b) \<otimes> a) \<otimes> b = inv (a \<otimes> b) \<otimes> (a \<otimes> b)"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
    62
    by (simp add: m_assoc)
57865
dcfb33c26f50 tuned proofs -- fewer warnings;
wenzelm
parents: 57492
diff changeset
    63
  also have "\<dots> = \<one>" by simp
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    64
  finally have li: "(inv (a \<otimes> b) \<otimes> a) \<otimes> b = \<one>" .
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    65
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    66
  have "\<one> = inv a \<otimes> a" by (simp add: Units_l_inv[symmetric])
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    67
  also have "\<dots> = inv a \<otimes> \<one> \<otimes> a" by simp
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    68
  also have "\<dots> = inv a \<otimes> ((a \<otimes> b) \<otimes> inv (a \<otimes> b)) \<otimes> a"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
    69
    by (simp add: Units_r_inv[OF abunit, symmetric] del: Units_r_inv)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    70
  also have "\<dots> = ((inv a \<otimes> a) \<otimes> b) \<otimes> inv (a \<otimes> b) \<otimes> a"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    71
    by (simp add: m_assoc del: Units_l_inv)
57865
dcfb33c26f50 tuned proofs -- fewer warnings;
wenzelm
parents: 57492
diff changeset
    72
  also have "\<dots> = b \<otimes> inv (a \<otimes> b) \<otimes> a" by simp
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    73
  also have "\<dots> = b \<otimes> (inv (a \<otimes> b) \<otimes> a)" by (simp add: m_assoc)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    74
  finally have ri: "b \<otimes> (inv (a \<otimes> b) \<otimes> a) = \<one> " by simp
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    75
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
    76
  from c li ri show "b \<in> Units G" by (auto simp: Units_def)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    77
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    78
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    79
lemma (in monoid) prod_unit_r:
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
    80
  assumes abunit[simp]: "a \<otimes> b \<in> Units G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
    81
    and bunit[simp]: "b \<in> Units G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    82
    and carr[simp]: "a \<in> carrier G"  "b \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    83
  shows "a \<in> Units G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    84
proof -
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    85
  have c: "b \<otimes> inv (a \<otimes> b) \<in> carrier G" by simp
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    86
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    87
  have "a \<otimes> (b \<otimes> inv (a \<otimes> b)) = (a \<otimes> b) \<otimes> inv (a \<otimes> b)"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    88
    by (simp add: m_assoc del: Units_r_inv)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    89
  also have "\<dots> = \<one>" by simp
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    90
  finally have li: "a \<otimes> (b \<otimes> inv (a \<otimes> b)) = \<one>" .
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    91
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    92
  have "\<one> = b \<otimes> inv b" by (simp add: Units_r_inv[symmetric])
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    93
  also have "\<dots> = b \<otimes> \<one> \<otimes> inv b" by simp
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
    94
  also have "\<dots> = b \<otimes> (inv (a \<otimes> b) \<otimes> (a \<otimes> b)) \<otimes> inv b"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
    95
    by (simp add: Units_l_inv[OF abunit, symmetric] del: Units_l_inv)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    96
  also have "\<dots> = (b \<otimes> inv (a \<otimes> b) \<otimes> a) \<otimes> (b \<otimes> inv b)"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    97
    by (simp add: m_assoc del: Units_l_inv)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    98
  also have "\<dots> = b \<otimes> inv (a \<otimes> b) \<otimes> a" by simp
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
    99
  finally have ri: "(b \<otimes> inv (a \<otimes> b)) \<otimes> a = \<one> " by simp
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   100
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   101
  from c li ri show "a \<in> Units G" by (auto simp: Units_def)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   102
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   103
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   104
lemma (in comm_monoid) unit_factor:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   105
  assumes abunit: "a \<otimes> b \<in> Units G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   106
    and [simp]: "a \<in> carrier G"  "b \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   107
  shows "a \<in> Units G"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   108
  using abunit[simplified Units_def]
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   109
proof clarsimp
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   110
  fix i
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   111
  assume [simp]: "i \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   112
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   113
  have carr': "b \<otimes> i \<in> carrier G" by simp
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   114
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   115
  have "(b \<otimes> i) \<otimes> a = (i \<otimes> b) \<otimes> a" by (simp add: m_comm)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   116
  also have "\<dots> = i \<otimes> (b \<otimes> a)" by (simp add: m_assoc)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   117
  also have "\<dots> = i \<otimes> (a \<otimes> b)" by (simp add: m_comm)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   118
  also assume "i \<otimes> (a \<otimes> b) = \<one>"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   119
  finally have li': "(b \<otimes> i) \<otimes> a = \<one>" .
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   120
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   121
  have "a \<otimes> (b \<otimes> i) = a \<otimes> b \<otimes> i" by (simp add: m_assoc)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   122
  also assume "a \<otimes> b \<otimes> i = \<one>"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   123
  finally have ri': "a \<otimes> (b \<otimes> i) = \<one>" .
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   124
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   125
  from carr' li' ri'
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   126
  show "a \<in> Units G" by (simp add: Units_def, fast)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   127
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   128
35849
b5522b51cb1e standard headers;
wenzelm
parents: 35848
diff changeset
   129
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
   130
subsection \<open>Divisibility and Association\<close>
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
   131
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
   132
subsubsection \<open>Function definitions\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   133
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   134
definition factor :: "[_, 'a, 'a] \<Rightarrow> bool" (infix "divides\<index>" 65)
35848
5443079512ea slightly more uniform definitions -- eliminated old-style meta-equality;
wenzelm
parents: 35847
diff changeset
   135
  where "a divides\<^bsub>G\<^esub> b \<longleftrightarrow> (\<exists>c\<in>carrier G. b = a \<otimes>\<^bsub>G\<^esub> c)"
35847
19f1f7066917 eliminated old constdefs;
wenzelm
parents: 35416
diff changeset
   136
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   137
definition associated :: "[_, 'a, 'a] \<Rightarrow> bool" (infix "\<sim>\<index>" 55)
35848
5443079512ea slightly more uniform definitions -- eliminated old-style meta-equality;
wenzelm
parents: 35847
diff changeset
   138
  where "a \<sim>\<^bsub>G\<^esub> b \<longleftrightarrow> a divides\<^bsub>G\<^esub> b \<and> b divides\<^bsub>G\<^esub> a"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   139
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67343
diff changeset
   140
abbreviation "division_rel G \<equiv> \<lparr>carrier = carrier G, eq = (\<sim>\<^bsub>G\<^esub>), le = (divides\<^bsub>G\<^esub>)\<rparr>"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   141
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   142
definition properfactor :: "[_, 'a, 'a] \<Rightarrow> bool"
35848
5443079512ea slightly more uniform definitions -- eliminated old-style meta-equality;
wenzelm
parents: 35847
diff changeset
   143
  where "properfactor G a b \<longleftrightarrow> a divides\<^bsub>G\<^esub> b \<and> \<not>(b divides\<^bsub>G\<^esub> a)"
35847
19f1f7066917 eliminated old constdefs;
wenzelm
parents: 35416
diff changeset
   144
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   145
definition irreducible :: "[_, 'a] \<Rightarrow> bool"
35848
5443079512ea slightly more uniform definitions -- eliminated old-style meta-equality;
wenzelm
parents: 35847
diff changeset
   146
  where "irreducible G a \<longleftrightarrow> a \<notin> Units G \<and> (\<forall>b\<in>carrier G. properfactor G b a \<longrightarrow> b \<in> Units G)"
35847
19f1f7066917 eliminated old constdefs;
wenzelm
parents: 35416
diff changeset
   147
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   148
definition prime :: "[_, 'a] \<Rightarrow> bool"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   149
  where "prime G p \<longleftrightarrow>
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   150
    p \<notin> Units G \<and>
35847
19f1f7066917 eliminated old constdefs;
wenzelm
parents: 35416
diff changeset
   151
    (\<forall>a\<in>carrier G. \<forall>b\<in>carrier G. p divides\<^bsub>G\<^esub> (a \<otimes>\<^bsub>G\<^esub> b) \<longrightarrow> p divides\<^bsub>G\<^esub> a \<or> p divides\<^bsub>G\<^esub> b)"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   152
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   153
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
   154
subsubsection \<open>Divisibility\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   155
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   156
lemma dividesI:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   157
  fixes G (structure)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   158
  assumes carr: "c \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   159
    and p: "b = a \<otimes> c"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   160
  shows "a divides b"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   161
  unfolding factor_def using assms by fast
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   162
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   163
lemma dividesI' [intro]:
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   164
  fixes G (structure)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   165
  assumes p: "b = a \<otimes> c"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   166
    and carr: "c \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   167
  shows "a divides b"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   168
  using assms by (fast intro: dividesI)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   169
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   170
lemma dividesD:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   171
  fixes G (structure)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   172
  assumes "a divides b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   173
  shows "\<exists>c\<in>carrier G. b = a \<otimes> c"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   174
  using assms unfolding factor_def by fast
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   175
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   176
lemma dividesE [elim]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   177
  fixes G (structure)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   178
  assumes d: "a divides b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   179
    and elim: "\<And>c. \<lbrakk>b = a \<otimes> c; c \<in> carrier G\<rbrakk> \<Longrightarrow> P"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   180
  shows "P"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   181
proof -
63846
23134a486dc6 tuned proofs;
wenzelm
parents: 63832
diff changeset
   182
  from dividesD[OF d] obtain c where "c \<in> carrier G" and "b = a \<otimes> c" by auto
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   183
  then show P by (elim elim)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   184
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   185
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   186
lemma (in monoid) divides_refl[simp, intro!]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   187
  assumes carr: "a \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   188
  shows "a divides a"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   189
  by (intro dividesI[of "\<one>"]) (simp_all add: carr)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   190
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   191
lemma (in monoid) divides_trans [trans]:
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   192
  assumes dvds: "a divides b" "b divides c"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   193
    and acarr: "a \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   194
  shows "a divides c"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   195
  using dvds[THEN dividesD] by (blast intro: dividesI m_assoc acarr)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   196
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   197
lemma (in monoid) divides_mult_lI [intro]:
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   198
  assumes  "a divides b" "a \<in> carrier G" "c \<in> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   199
  shows "(c \<otimes> a) divides (c \<otimes> b)"
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   200
  by (metis assms factor_def m_assoc)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   201
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   202
lemma (in monoid_cancel) divides_mult_l [simp]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   203
  assumes carr: "a \<in> carrier G"  "b \<in> carrier G"  "c \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   204
  shows "(c \<otimes> a) divides (c \<otimes> b) = a divides b"
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   205
proof
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   206
  show "c \<otimes> a divides c \<otimes> b \<Longrightarrow> a divides b"
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   207
    using carr monoid.m_assoc monoid_axioms monoid_cancel.l_cancel monoid_cancel_axioms by fastforce
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   208
  show "a divides b \<Longrightarrow> c \<otimes> a divides c \<otimes> b"
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   209
  using carr(1) carr(3) by blast
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   210
qed
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   211
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   212
lemma (in comm_monoid) divides_mult_rI [intro]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   213
  assumes ab: "a divides b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   214
    and carr: "a \<in> carrier G"  "b \<in> carrier G"  "c \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   215
  shows "(a \<otimes> c) divides (b \<otimes> c)"
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   216
  using carr ab by (metis divides_mult_lI m_comm)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   217
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   218
lemma (in comm_monoid_cancel) divides_mult_r [simp]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   219
  assumes carr: "a \<in> carrier G"  "b \<in> carrier G"  "c \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   220
  shows "(a \<otimes> c) divides (b \<otimes> c) = a divides b"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   221
  using carr by (simp add: m_comm[of a c] m_comm[of b c])
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   222
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   223
lemma (in monoid) divides_prod_r:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   224
  assumes ab: "a divides b"
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   225
    and carr: "a \<in> carrier G" "c \<in> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   226
  shows "a divides (b \<otimes> c)"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   227
  using ab carr by (fast intro: m_assoc)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   228
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   229
lemma (in comm_monoid) divides_prod_l:
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   230
  assumes "a \<in> carrier G" "b \<in> carrier G" "c \<in> carrier G" "a divides b"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   231
  shows "a divides (c \<otimes> b)"
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   232
  using assms  by (simp add: divides_prod_r m_comm)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   233
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   234
lemma (in monoid) unit_divides:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   235
  assumes uunit: "u \<in> Units G"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   236
    and acarr: "a \<in> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   237
  shows "u divides a"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   238
proof (intro dividesI[of "(inv u) \<otimes> a"], fast intro: uunit acarr)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   239
  from uunit acarr have xcarr: "inv u \<otimes> a \<in> carrier G" by fast
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   240
  from uunit acarr have "u \<otimes> (inv u \<otimes> a) = (u \<otimes> inv u) \<otimes> a"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   241
    by (fast intro: m_assoc[symmetric])
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   242
  also have "\<dots> = \<one> \<otimes> a" by (simp add: Units_r_inv[OF uunit])
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   243
  also from acarr have "\<dots> = a" by simp
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   244
  finally show "a = u \<otimes> (inv u \<otimes> a)" ..
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   245
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   246
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   247
lemma (in comm_monoid) divides_unit:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   248
  assumes udvd: "a divides u"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   249
    and  carr: "a \<in> carrier G"  "u \<in> Units G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   250
  shows "a \<in> Units G"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   251
  using udvd carr by (blast intro: unit_factor)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   252
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   253
lemma (in comm_monoid) Unit_eq_dividesone:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   254
  assumes ucarr: "u \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   255
  shows "u \<in> Units G = u divides \<one>"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   256
  using ucarr by (fast dest: divides_unit intro: unit_divides)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   257
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   258
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
   259
subsubsection \<open>Association\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   260
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   261
lemma associatedI:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   262
  fixes G (structure)
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   263
  assumes "a divides b" "b divides a"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   264
  shows "a \<sim> b"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   265
  using assms by (simp add: associated_def)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   266
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   267
lemma (in monoid) associatedI2:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   268
  assumes uunit[simp]: "u \<in> Units G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   269
    and a: "a = b \<otimes> u"
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   270
    and bcarr: "b \<in> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   271
  shows "a \<sim> b"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   272
  using uunit bcarr
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   273
  unfolding a
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   274
  apply (intro associatedI)
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   275
  apply (metis Units_closed divides_mult_lI one_closed r_one unit_divides)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   276
  by blast
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   277
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   278
lemma (in monoid) associatedI2':
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   279
  assumes "a = b \<otimes> u"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   280
    and "u \<in> Units G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   281
    and "b \<in> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   282
  shows "a \<sim> b"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   283
  using assms by (intro associatedI2)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   284
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   285
lemma associatedD:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   286
  fixes G (structure)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   287
  assumes "a \<sim> b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   288
  shows "a divides b"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   289
  using assms by (simp add: associated_def)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   290
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   291
lemma (in monoid_cancel) associatedD2:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   292
  assumes assoc: "a \<sim> b"
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   293
    and carr: "a \<in> carrier G" "b \<in> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   294
  shows "\<exists>u\<in>Units G. a = b \<otimes> u"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   295
  using assoc
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   296
  unfolding associated_def
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   297
proof clarify
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   298
  assume "b divides a"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   299
  then obtain u where ucarr: "u \<in> carrier G" and a: "a = b \<otimes> u"
63846
23134a486dc6 tuned proofs;
wenzelm
parents: 63832
diff changeset
   300
    by (rule dividesE)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   301
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   302
  assume "a divides b"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   303
  then obtain u' where u'carr: "u' \<in> carrier G" and b: "b = a \<otimes> u'"
63846
23134a486dc6 tuned proofs;
wenzelm
parents: 63832
diff changeset
   304
    by (rule dividesE)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   305
  note carr = carr ucarr u'carr
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   306
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   307
  from carr have "a \<otimes> \<one> = a" by simp
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   308
  also have "\<dots> = b \<otimes> u" by (simp add: a)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   309
  also have "\<dots> = a \<otimes> u' \<otimes> u" by (simp add: b)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   310
  also from carr have "\<dots> = a \<otimes> (u' \<otimes> u)" by (simp add: m_assoc)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   311
  finally have "a \<otimes> \<one> = a \<otimes> (u' \<otimes> u)" .
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   312
  with carr have u1: "\<one> = u' \<otimes> u" by (fast dest: l_cancel)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   313
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   314
  from carr have "b \<otimes> \<one> = b" by simp
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   315
  also have "\<dots> = a \<otimes> u'" by (simp add: b)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   316
  also have "\<dots> = b \<otimes> u \<otimes> u'" by (simp add: a)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   317
  also from carr have "\<dots> = b \<otimes> (u \<otimes> u')" by (simp add: m_assoc)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   318
  finally have "b \<otimes> \<one> = b \<otimes> (u \<otimes> u')" .
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   319
  with carr have u2: "\<one> = u \<otimes> u'" by (fast dest: l_cancel)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   320
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   321
  from u'carr u1[symmetric] u2[symmetric] have "\<exists>u'\<in>carrier G. u' \<otimes> u = \<one> \<and> u \<otimes> u' = \<one>"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   322
    by fast
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   323
  then have "u \<in> Units G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   324
    by (simp add: Units_def ucarr)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   325
  with ucarr a show "\<exists>u\<in>Units G. a = b \<otimes> u" by fast
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   326
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   327
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   328
lemma associatedE:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   329
  fixes G (structure)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   330
  assumes assoc: "a \<sim> b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   331
    and e: "\<lbrakk>a divides b; b divides a\<rbrakk> \<Longrightarrow> P"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   332
  shows "P"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   333
proof -
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   334
  from assoc have "a divides b" "b divides a"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   335
    by (simp_all add: associated_def)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   336
  then show P by (elim e)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   337
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   338
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   339
lemma (in monoid_cancel) associatedE2:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   340
  assumes assoc: "a \<sim> b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   341
    and e: "\<And>u. \<lbrakk>a = b \<otimes> u; u \<in> Units G\<rbrakk> \<Longrightarrow> P"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   342
    and carr: "a \<in> carrier G"  "b \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   343
  shows "P"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   344
proof -
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   345
  from assoc and carr have "\<exists>u\<in>Units G. a = b \<otimes> u"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   346
    by (rule associatedD2)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   347
  then obtain u where "u \<in> Units G"  "a = b \<otimes> u"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   348
    by auto
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   349
  then show P by (elim e)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   350
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   351
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   352
lemma (in monoid) associated_refl [simp, intro!]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   353
  assumes "a \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   354
  shows "a \<sim> a"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   355
  using assms by (fast intro: associatedI)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   356
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   357
lemma (in monoid) associated_sym [sym]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   358
  assumes "a \<sim> b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   359
  shows "b \<sim> a"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   360
  using assms by (iprover intro: associatedI elim: associatedE)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   361
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   362
lemma (in monoid) associated_trans [trans]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   363
  assumes "a \<sim> b"  "b \<sim> c"
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   364
    and "a \<in> carrier G" "c \<in> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   365
  shows "a \<sim> c"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   366
  using assms by (iprover intro: associatedI divides_trans elim: associatedE)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   367
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   368
lemma (in monoid) division_equiv [intro, simp]: "equivalence (division_rel G)"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   369
  apply unfold_locales
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   370
    apply simp_all
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   371
   apply (metis associated_def)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   372
  apply (iprover intro: associated_trans)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   373
  done
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   374
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   375
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
   376
subsubsection \<open>Division and associativity\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   377
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   378
lemmas divides_antisym = associatedI
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   379
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   380
lemma (in monoid) divides_cong_l [trans]:
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   381
  assumes "x \<sim> x'" "x' divides y" "x \<in> carrier G" 
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   382
  shows "x divides y"
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   383
  by (meson assms associatedD divides_trans)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   384
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   385
lemma (in monoid) divides_cong_r [trans]:
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   386
  assumes "x divides y" "y \<sim> y'" "x \<in> carrier G" 
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   387
  shows "x divides y'"
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   388
  by (meson assms associatedD divides_trans)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   389
27713
95b36bfe7fc4 New locales for orders and lattices where the equivalence relation is not restricted to equality.
ballarin
parents: 27701
diff changeset
   390
lemma (in monoid) division_weak_partial_order [simp, intro!]:
95b36bfe7fc4 New locales for orders and lattices where the equivalence relation is not restricted to equality.
ballarin
parents: 27701
diff changeset
   391
  "weak_partial_order (division_rel G)"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   392
  apply unfold_locales
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   393
      apply (simp_all add: associated_sym divides_antisym)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   394
     apply (metis associated_trans)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   395
   apply (metis divides_trans)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   396
  by (meson associated_def divides_trans)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   397
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   398
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
   399
subsubsection \<open>Multiplication and associativity\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   400
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   401
lemma (in monoid_cancel) mult_cong_r:
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   402
  assumes "b \<sim> b'" "a \<in> carrier G"  "b \<in> carrier G"  "b' \<in> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   403
  shows "a \<otimes> b \<sim> a \<otimes> b'"
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   404
  by (meson assms associated_def divides_mult_lI)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   405
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   406
lemma (in comm_monoid_cancel) mult_cong_l:
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   407
  assumes "a \<sim> a'" "a \<in> carrier G"  "a' \<in> carrier G"  "b \<in> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   408
  shows "a \<otimes> b \<sim> a' \<otimes> b"
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   409
  using assms m_comm mult_cong_r by auto
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   410
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   411
lemma (in monoid_cancel) assoc_l_cancel:
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   412
  assumes "a \<in> carrier G"  "b \<in> carrier G"  "b' \<in> carrier G" "a \<otimes> b \<sim> a \<otimes> b'"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   413
  shows "b \<sim> b'"
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   414
  by (meson assms associated_def divides_mult_l)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   415
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   416
lemma (in comm_monoid_cancel) assoc_r_cancel:
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   417
  assumes "a \<otimes> b \<sim> a' \<otimes> b" "a \<in> carrier G"  "a' \<in> carrier G"  "b \<in> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   418
  shows "a \<sim> a'"
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   419
  using assms assoc_l_cancel m_comm by presburger
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   420
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   421
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
   422
subsubsection \<open>Units\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   423
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   424
lemma (in monoid_cancel) assoc_unit_l [trans]:
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   425
  assumes "a \<sim> b"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   426
    and "b \<in> Units G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   427
    and "a \<in> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   428
  shows "a \<in> Units G"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   429
  using assms by (fast elim: associatedE2)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   430
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   431
lemma (in monoid_cancel) assoc_unit_r [trans]:
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   432
  assumes aunit: "a \<in> Units G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   433
    and asc: "a \<sim> b"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   434
    and bcarr: "b \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   435
  shows "b \<in> Units G"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   436
  using aunit bcarr associated_sym[OF asc] by (blast intro: assoc_unit_l)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   437
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   438
lemma (in comm_monoid) Units_cong:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   439
  assumes aunit: "a \<in> Units G" and asc: "a \<sim> b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   440
    and bcarr: "b \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   441
  shows "b \<in> Units G"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   442
  using assms by (blast intro: divides_unit elim: associatedE)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   443
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   444
lemma (in monoid) Units_assoc:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   445
  assumes units: "a \<in> Units G"  "b \<in> Units G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   446
  shows "a \<sim> b"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   447
  using units by (fast intro: associatedI unit_divides)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   448
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   449
lemma (in monoid) Units_are_ones: "Units G {.=}\<^bsub>(division_rel G)\<^esub> {\<one>}"
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   450
proof -
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   451
  have "a .\<in>\<^bsub>division_rel G\<^esub> {\<one>}" if "a \<in> Units G" for a
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   452
  proof -
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   453
    have "a \<sim> \<one>"
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   454
      by (rule associatedI) (simp_all add: Units_closed that unit_divides)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   455
    then show ?thesis
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   456
      by (simp add: elem_def)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   457
  qed
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   458
  moreover have "\<one> .\<in>\<^bsub>division_rel G\<^esub> Units G"
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   459
    by (simp add: equivalence.mem_imp_elem)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   460
  ultimately show ?thesis
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   461
    by (auto simp: set_eq_def)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   462
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   463
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   464
lemma (in comm_monoid) Units_Lower: "Units G = Lower (division_rel G) (carrier G)"
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   465
  apply (auto simp add: Units_def Lower_def)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   466
   apply (metis Units_one_closed unit_divides unit_factor)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   467
  apply (metis Unit_eq_dividesone Units_r_inv_ex m_ac(2) one_closed)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   468
  done
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   469
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   470
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
   471
subsubsection \<open>Proper factors\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   472
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   473
lemma properfactorI:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   474
  fixes G (structure)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   475
  assumes "a divides b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   476
    and "\<not>(b divides a)"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   477
  shows "properfactor G a b"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   478
  using assms unfolding properfactor_def by simp
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   479
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   480
lemma properfactorI2:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   481
  fixes G (structure)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   482
  assumes advdb: "a divides b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   483
    and neq: "\<not>(a \<sim> b)"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   484
  shows "properfactor G a b"
63846
23134a486dc6 tuned proofs;
wenzelm
parents: 63832
diff changeset
   485
proof (rule properfactorI, rule advdb, rule notI)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   486
  assume "b divides a"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   487
  with advdb have "a \<sim> b" by (rule associatedI)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   488
  with neq show "False" by fast
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   489
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   490
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   491
lemma (in comm_monoid_cancel) properfactorI3:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   492
  assumes p: "p = a \<otimes> b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   493
    and nunit: "b \<notin> Units G"
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   494
    and carr: "a \<in> carrier G"  "b \<in> carrier G" 
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   495
  shows "properfactor G a p"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   496
  unfolding p
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   497
  using carr
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   498
  apply (intro properfactorI, fast)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   499
proof (clarsimp, elim dividesE)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   500
  fix c
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   501
  assume ccarr: "c \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   502
  note [simp] = carr ccarr
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   503
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   504
  have "a \<otimes> \<one> = a" by simp
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   505
  also assume "a = a \<otimes> b \<otimes> c"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   506
  also have "\<dots> = a \<otimes> (b \<otimes> c)" by (simp add: m_assoc)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   507
  finally have "a \<otimes> \<one> = a \<otimes> (b \<otimes> c)" .
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   508
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   509
  then have rinv: "\<one> = b \<otimes> c" by (intro l_cancel[of "a" "\<one>" "b \<otimes> c"], simp+)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   510
  also have "\<dots> = c \<otimes> b" by (simp add: m_comm)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   511
  finally have linv: "\<one> = c \<otimes> b" .
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   512
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   513
  from ccarr linv[symmetric] rinv[symmetric] have "b \<in> Units G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   514
    unfolding Units_def by fastforce
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   515
  with nunit show False ..
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   516
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   517
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   518
lemma properfactorE:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   519
  fixes G (structure)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   520
  assumes pf: "properfactor G a b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   521
    and r: "\<lbrakk>a divides b; \<not>(b divides a)\<rbrakk> \<Longrightarrow> P"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   522
  shows "P"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   523
  using pf unfolding properfactor_def by (fast intro: r)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   524
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   525
lemma properfactorE2:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   526
  fixes G (structure)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   527
  assumes pf: "properfactor G a b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   528
    and elim: "\<lbrakk>a divides b; \<not>(a \<sim> b)\<rbrakk> \<Longrightarrow> P"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   529
  shows "P"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   530
  using pf unfolding properfactor_def by (fast elim: elim associatedE)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   531
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   532
lemma (in monoid) properfactor_unitE:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   533
  assumes uunit: "u \<in> Units G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   534
    and pf: "properfactor G a u"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   535
    and acarr: "a \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   536
  shows "P"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   537
  using pf unit_divides[OF uunit acarr] by (fast elim: properfactorE)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   538
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   539
lemma (in monoid) properfactor_divides:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   540
  assumes pf: "properfactor G a b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   541
  shows "a divides b"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   542
  using pf by (elim properfactorE)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   543
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   544
lemma (in monoid) properfactor_trans1 [trans]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   545
  assumes dvds: "a divides b"  "properfactor G b c"
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   546
    and carr: "a \<in> carrier G"  "c \<in> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   547
  shows "properfactor G a c"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   548
  using dvds carr
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   549
  apply (elim properfactorE, intro properfactorI)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   550
   apply (iprover intro: divides_trans)+
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   551
  done
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   552
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   553
lemma (in monoid) properfactor_trans2 [trans]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   554
  assumes dvds: "properfactor G a b"  "b divides c"
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   555
    and carr: "a \<in> carrier G"  "b \<in> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   556
  shows "properfactor G a c"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   557
  using dvds carr
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   558
  apply (elim properfactorE, intro properfactorI)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   559
   apply (iprover intro: divides_trans)+
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   560
  done
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   561
27713
95b36bfe7fc4 New locales for orders and lattices where the equivalence relation is not restricted to equality.
ballarin
parents: 27701
diff changeset
   562
lemma properfactor_lless:
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   563
  fixes G (structure)
27713
95b36bfe7fc4 New locales for orders and lattices where the equivalence relation is not restricted to equality.
ballarin
parents: 27701
diff changeset
   564
  shows "properfactor G = lless (division_rel G)"
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   565
  by (force simp: lless_def properfactor_def associated_def)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   566
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   567
lemma (in monoid) properfactor_cong_l [trans]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   568
  assumes x'x: "x' \<sim> x"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   569
    and pf: "properfactor G x y"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   570
    and carr: "x \<in> carrier G"  "x' \<in> carrier G"  "y \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   571
  shows "properfactor G x' y"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   572
  using pf
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   573
  unfolding properfactor_lless
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   574
proof -
29237
e90d9d51106b More porting to new locales.
ballarin
parents: 28823
diff changeset
   575
  interpret weak_partial_order "division_rel G" ..
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   576
  from x'x have "x' .=\<^bsub>division_rel G\<^esub> x" by simp
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   577
  also assume "x \<sqsubset>\<^bsub>division_rel G\<^esub> y"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   578
  finally show "x' \<sqsubset>\<^bsub>division_rel G\<^esub> y" by (simp add: carr)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   579
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   580
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   581
lemma (in monoid) properfactor_cong_r [trans]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   582
  assumes pf: "properfactor G x y"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   583
    and yy': "y \<sim> y'"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   584
    and carr: "x \<in> carrier G"  "y \<in> carrier G"  "y' \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   585
  shows "properfactor G x y'"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   586
  using pf
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   587
  unfolding properfactor_lless
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   588
proof -
29237
e90d9d51106b More porting to new locales.
ballarin
parents: 28823
diff changeset
   589
  interpret weak_partial_order "division_rel G" ..
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   590
  assume "x \<sqsubset>\<^bsub>division_rel G\<^esub> y"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   591
  also from yy'
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   592
  have "y .=\<^bsub>division_rel G\<^esub> y'" by simp
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   593
  finally show "x \<sqsubset>\<^bsub>division_rel G\<^esub> y'" by (simp add: carr)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   594
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   595
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   596
lemma (in monoid_cancel) properfactor_mult_lI [intro]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   597
  assumes ab: "properfactor G a b"
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   598
    and carr: "a \<in> carrier G" "c \<in> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   599
  shows "properfactor G (c \<otimes> a) (c \<otimes> b)"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   600
  using ab carr by (fastforce elim: properfactorE intro: properfactorI)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   601
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   602
lemma (in monoid_cancel) properfactor_mult_l [simp]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   603
  assumes carr: "a \<in> carrier G"  "b \<in> carrier G"  "c \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   604
  shows "properfactor G (c \<otimes> a) (c \<otimes> b) = properfactor G a b"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   605
  using carr by (fastforce elim: properfactorE intro: properfactorI)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   606
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   607
lemma (in comm_monoid_cancel) properfactor_mult_rI [intro]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   608
  assumes ab: "properfactor G a b"
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   609
    and carr: "a \<in> carrier G" "c \<in> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   610
  shows "properfactor G (a \<otimes> c) (b \<otimes> c)"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   611
  using ab carr by (fastforce elim: properfactorE intro: properfactorI)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   612
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   613
lemma (in comm_monoid_cancel) properfactor_mult_r [simp]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   614
  assumes carr: "a \<in> carrier G"  "b \<in> carrier G"  "c \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   615
  shows "properfactor G (a \<otimes> c) (b \<otimes> c) = properfactor G a b"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   616
  using carr by (fastforce elim: properfactorE intro: properfactorI)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   617
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   618
lemma (in monoid) properfactor_prod_r:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   619
  assumes ab: "properfactor G a b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   620
    and carr[simp]: "a \<in> carrier G"  "b \<in> carrier G"  "c \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   621
  shows "properfactor G a (b \<otimes> c)"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   622
  by (intro properfactor_trans2[OF ab] divides_prod_r) simp_all
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   623
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   624
lemma (in comm_monoid) properfactor_prod_l:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   625
  assumes ab: "properfactor G a b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   626
    and carr[simp]: "a \<in> carrier G"  "b \<in> carrier G"  "c \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   627
  shows "properfactor G a (c \<otimes> b)"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   628
  by (intro properfactor_trans2[OF ab] divides_prod_l) simp_all
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   629
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   630
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
   631
subsection \<open>Irreducible Elements and Primes\<close>
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
   632
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
   633
subsubsection \<open>Irreducible elements\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   634
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   635
lemma irreducibleI:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   636
  fixes G (structure)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   637
  assumes "a \<notin> Units G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   638
    and "\<And>b. \<lbrakk>b \<in> carrier G; properfactor G b a\<rbrakk> \<Longrightarrow> b \<in> Units G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   639
  shows "irreducible G a"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   640
  using assms unfolding irreducible_def by blast
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   641
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   642
lemma irreducibleE:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   643
  fixes G (structure)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   644
  assumes irr: "irreducible G a"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   645
    and elim: "\<lbrakk>a \<notin> Units G; \<forall>b. b \<in> carrier G \<and> properfactor G b a \<longrightarrow> b \<in> Units G\<rbrakk> \<Longrightarrow> P"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   646
  shows "P"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   647
  using assms unfolding irreducible_def by blast
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   648
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   649
lemma irreducibleD:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   650
  fixes G (structure)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   651
  assumes irr: "irreducible G a"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   652
    and pf: "properfactor G b a"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   653
    and bcarr: "b \<in> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   654
  shows "b \<in> Units G"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   655
  using assms by (fast elim: irreducibleE)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   656
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   657
lemma (in monoid_cancel) irreducible_cong [trans]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   658
  assumes irred: "irreducible G a"
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   659
    and aa': "a \<sim> a'" "a \<in> carrier G"  "a' \<in> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   660
  shows "irreducible G a'"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   661
  using assms
68478
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
   662
  apply (auto simp: irreducible_def assoc_unit_l)
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   663
  apply (metis aa' associated_sym properfactor_cong_r)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   664
  done
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   665
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   666
lemma (in monoid) irreducible_prod_rI:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   667
  assumes airr: "irreducible G a"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   668
    and bunit: "b \<in> Units G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   669
    and carr[simp]: "a \<in> carrier G"  "b \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   670
  shows "irreducible G (a \<otimes> b)"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   671
  using airr carr bunit
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   672
  apply (elim irreducibleE, intro irreducibleI)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   673
  using prod_unit_r apply blast
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   674
  using associatedI2' properfactor_cong_r by auto
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   675
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   676
lemma (in comm_monoid) irreducible_prod_lI:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   677
  assumes birr: "irreducible G b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   678
    and aunit: "a \<in> Units G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   679
    and carr [simp]: "a \<in> carrier G"  "b \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   680
  shows "irreducible G (a \<otimes> b)"
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   681
  by (metis aunit birr carr irreducible_prod_rI m_comm)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   682
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   683
lemma (in comm_monoid_cancel) irreducible_prodE [elim]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   684
  assumes irr: "irreducible G (a \<otimes> b)"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   685
    and carr[simp]: "a \<in> carrier G"  "b \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   686
    and e1: "\<lbrakk>irreducible G a; b \<in> Units G\<rbrakk> \<Longrightarrow> P"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   687
    and e2: "\<lbrakk>a \<in> Units G; irreducible G b\<rbrakk> \<Longrightarrow> P"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   688
  shows P
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   689
  using irr
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   690
proof (elim irreducibleE)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   691
  assume abnunit: "a \<otimes> b \<notin> Units G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   692
    and isunit[rule_format]: "\<forall>ba. ba \<in> carrier G \<and> properfactor G ba (a \<otimes> b) \<longrightarrow> ba \<in> Units G"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   693
  show P
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   694
  proof (cases "a \<in> Units G")
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   695
    case aunit: True
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   696
    have "irreducible G b"
63846
23134a486dc6 tuned proofs;
wenzelm
parents: 63832
diff changeset
   697
    proof (rule irreducibleI, rule notI)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   698
      assume "b \<in> Units G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   699
      with aunit have "(a \<otimes> b) \<in> Units G" by fast
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   700
      with abnunit show "False" ..
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   701
    next
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   702
      fix c
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   703
      assume ccarr: "c \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   704
        and "properfactor G c b"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   705
      then have "properfactor G c (a \<otimes> b)" by (simp add: properfactor_prod_l[of c b a])
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   706
      with ccarr show "c \<in> Units G" by (fast intro: isunit)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   707
    qed
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   708
    with aunit show "P" by (rule e2)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   709
  next
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   710
    case anunit: False
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   711
    with carr have "properfactor G b (b \<otimes> a)" by (fast intro: properfactorI3)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   712
    then have bf: "properfactor G b (a \<otimes> b)" by (subst m_comm[of a b], simp+)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   713
    then have bunit: "b \<in> Units G" by (intro isunit, simp)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   714
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   715
    have "irreducible G a"
63846
23134a486dc6 tuned proofs;
wenzelm
parents: 63832
diff changeset
   716
    proof (rule irreducibleI, rule notI)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   717
      assume "a \<in> Units G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   718
      with bunit have "(a \<otimes> b) \<in> Units G" by fast
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   719
      with abnunit show "False" ..
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   720
    next
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   721
      fix c
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   722
      assume ccarr: "c \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   723
        and "properfactor G c a"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   724
      then have "properfactor G c (a \<otimes> b)"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   725
        by (simp add: properfactor_prod_r[of c a b])
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   726
      with ccarr show "c \<in> Units G" by (fast intro: isunit)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   727
    qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   728
    from this bunit show "P" by (rule e1)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   729
  qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   730
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   731
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   732
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
   733
subsubsection \<open>Prime elements\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   734
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   735
lemma primeI:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   736
  fixes G (structure)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   737
  assumes "p \<notin> Units G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   738
    and "\<And>a b. \<lbrakk>a \<in> carrier G; b \<in> carrier G; p divides (a \<otimes> b)\<rbrakk> \<Longrightarrow> p divides a \<or> p divides b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   739
  shows "prime G p"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   740
  using assms unfolding prime_def by blast
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   741
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   742
lemma primeE:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   743
  fixes G (structure)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   744
  assumes pprime: "prime G p"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   745
    and e: "\<lbrakk>p \<notin> Units G; \<forall>a\<in>carrier G. \<forall>b\<in>carrier G.
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   746
      p divides a \<otimes> b \<longrightarrow> p divides a \<or> p divides b\<rbrakk> \<Longrightarrow> P"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   747
  shows "P"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   748
  using pprime unfolding prime_def by (blast dest: e)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   749
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   750
lemma (in comm_monoid_cancel) prime_divides:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   751
  assumes carr: "a \<in> carrier G"  "b \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   752
    and pprime: "prime G p"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   753
    and pdvd: "p divides a \<otimes> b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   754
  shows "p divides a \<or> p divides b"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   755
  using assms by (blast elim: primeE)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   756
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   757
lemma (in monoid_cancel) prime_cong [trans]:
68478
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
   758
  assumes "prime G p"
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   759
    and pp': "p \<sim> p'" "p \<in> carrier G"  "p' \<in> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   760
  shows "prime G p'"
68478
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
   761
  using assms
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
   762
  apply (auto simp: prime_def assoc_unit_l)
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   763
  apply (metis pp' associated_sym divides_cong_l)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   764
  done
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   765
68551
b680e74eb6f2 More on Algebra by Paulo and Martin
paulson <lp15@cam.ac.uk>
parents: 68488
diff changeset
   766
(*by Paulo Emílio de Vilhena*)
b680e74eb6f2 More on Algebra by Paulo and Martin
paulson <lp15@cam.ac.uk>
parents: 68488
diff changeset
   767
lemma (in comm_monoid_cancel) prime_irreducible:
b680e74eb6f2 More on Algebra by Paulo and Martin
paulson <lp15@cam.ac.uk>
parents: 68488
diff changeset
   768
  assumes "prime G p"
b680e74eb6f2 More on Algebra by Paulo and Martin
paulson <lp15@cam.ac.uk>
parents: 68488
diff changeset
   769
  shows "irreducible G p"
b680e74eb6f2 More on Algebra by Paulo and Martin
paulson <lp15@cam.ac.uk>
parents: 68488
diff changeset
   770
proof (rule irreducibleI)
b680e74eb6f2 More on Algebra by Paulo and Martin
paulson <lp15@cam.ac.uk>
parents: 68488
diff changeset
   771
  show "p \<notin> Units G"
b680e74eb6f2 More on Algebra by Paulo and Martin
paulson <lp15@cam.ac.uk>
parents: 68488
diff changeset
   772
    using assms unfolding prime_def by simp
b680e74eb6f2 More on Algebra by Paulo and Martin
paulson <lp15@cam.ac.uk>
parents: 68488
diff changeset
   773
next
b680e74eb6f2 More on Algebra by Paulo and Martin
paulson <lp15@cam.ac.uk>
parents: 68488
diff changeset
   774
  fix b assume A: "b \<in> carrier G" "properfactor G b p"
b680e74eb6f2 More on Algebra by Paulo and Martin
paulson <lp15@cam.ac.uk>
parents: 68488
diff changeset
   775
  then obtain c where c: "c \<in> carrier G" "p = b \<otimes> c"
b680e74eb6f2 More on Algebra by Paulo and Martin
paulson <lp15@cam.ac.uk>
parents: 68488
diff changeset
   776
    unfolding properfactor_def factor_def by auto
b680e74eb6f2 More on Algebra by Paulo and Martin
paulson <lp15@cam.ac.uk>
parents: 68488
diff changeset
   777
  hence "p divides c"
b680e74eb6f2 More on Algebra by Paulo and Martin
paulson <lp15@cam.ac.uk>
parents: 68488
diff changeset
   778
    using A assms unfolding prime_def properfactor_def by auto
b680e74eb6f2 More on Algebra by Paulo and Martin
paulson <lp15@cam.ac.uk>
parents: 68488
diff changeset
   779
  then obtain b' where b': "b' \<in> carrier G" "c = p \<otimes> b'"
b680e74eb6f2 More on Algebra by Paulo and Martin
paulson <lp15@cam.ac.uk>
parents: 68488
diff changeset
   780
    unfolding factor_def by auto
b680e74eb6f2 More on Algebra by Paulo and Martin
paulson <lp15@cam.ac.uk>
parents: 68488
diff changeset
   781
  hence "\<one> = b \<otimes> b'"
b680e74eb6f2 More on Algebra by Paulo and Martin
paulson <lp15@cam.ac.uk>
parents: 68488
diff changeset
   782
    by (metis A(1) l_cancel m_closed m_lcomm one_closed r_one c)
b680e74eb6f2 More on Algebra by Paulo and Martin
paulson <lp15@cam.ac.uk>
parents: 68488
diff changeset
   783
  thus "b \<in> Units G"
b680e74eb6f2 More on Algebra by Paulo and Martin
paulson <lp15@cam.ac.uk>
parents: 68488
diff changeset
   784
    using A(1) Units_one_closed b'(1) unit_factor by presburger
b680e74eb6f2 More on Algebra by Paulo and Martin
paulson <lp15@cam.ac.uk>
parents: 68488
diff changeset
   785
qed
b680e74eb6f2 More on Algebra by Paulo and Martin
paulson <lp15@cam.ac.uk>
parents: 68488
diff changeset
   786
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   787
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
   788
subsection \<open>Factorization and Factorial Monoids\<close>
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
   789
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
   790
subsubsection \<open>Function definitions\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   791
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   792
definition factors :: "[_, 'a list, 'a] \<Rightarrow> bool"
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67343
diff changeset
   793
  where "factors G fs a \<longleftrightarrow> (\<forall>x \<in> (set fs). irreducible G x) \<and> foldr (\<otimes>\<^bsub>G\<^esub>) fs \<one>\<^bsub>G\<^esub> = a"
35847
19f1f7066917 eliminated old constdefs;
wenzelm
parents: 35416
diff changeset
   794
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   795
definition wfactors ::"[_, 'a list, 'a] \<Rightarrow> bool"
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67343
diff changeset
   796
  where "wfactors G fs a \<longleftrightarrow> (\<forall>x \<in> (set fs). irreducible G x) \<and> foldr (\<otimes>\<^bsub>G\<^esub>) fs \<one>\<^bsub>G\<^esub> \<sim>\<^bsub>G\<^esub> a"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   797
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   798
abbreviation list_assoc :: "('a,_) monoid_scheme \<Rightarrow> 'a list \<Rightarrow> 'a list \<Rightarrow> bool" (infix "[\<sim>]\<index>" 44)
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67343
diff changeset
   799
  where "list_assoc G \<equiv> list_all2 (\<sim>\<^bsub>G\<^esub>)"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   800
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   801
definition essentially_equal :: "[_, 'a list, 'a list] \<Rightarrow> bool"
35848
5443079512ea slightly more uniform definitions -- eliminated old-style meta-equality;
wenzelm
parents: 35847
diff changeset
   802
  where "essentially_equal G fs1 fs2 \<longleftrightarrow> (\<exists>fs1'. fs1 <~~> fs1' \<and> fs1' [\<sim>]\<^bsub>G\<^esub> fs2)"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   803
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   804
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   805
locale factorial_monoid = comm_monoid_cancel +
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   806
  assumes factors_exist: "\<lbrakk>a \<in> carrier G; a \<notin> Units G\<rbrakk> \<Longrightarrow> \<exists>fs. set fs \<subseteq> carrier G \<and> factors G fs a"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   807
    and factors_unique:
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   808
      "\<lbrakk>factors G fs a; factors G fs' a; a \<in> carrier G; a \<notin> Units G;
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   809
        set fs \<subseteq> carrier G; set fs' \<subseteq> carrier G\<rbrakk> \<Longrightarrow> essentially_equal G fs fs'"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   810
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   811
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
   812
subsubsection \<open>Comparing lists of elements\<close>
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
   813
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
   814
text \<open>Association on lists\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   815
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   816
lemma (in monoid) listassoc_refl [simp, intro]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   817
  assumes "set as \<subseteq> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   818
  shows "as [\<sim>] as"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   819
  using assms by (induct as) simp_all
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   820
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   821
lemma (in monoid) listassoc_sym [sym]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   822
  assumes "as [\<sim>] bs"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   823
    and "set as \<subseteq> carrier G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   824
    and "set bs \<subseteq> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   825
  shows "bs [\<sim>] as"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   826
  using assms
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   827
proof (induction as arbitrary: bs)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   828
  case Cons
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   829
  then show ?case
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   830
    by (induction bs) (use associated_sym in auto)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   831
qed auto
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   832
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   833
lemma (in monoid) listassoc_trans [trans]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   834
  assumes "as [\<sim>] bs" and "bs [\<sim>] cs"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   835
    and "set as \<subseteq> carrier G" and "set bs \<subseteq> carrier G" and "set cs \<subseteq> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   836
  shows "as [\<sim>] cs"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   837
  using assms
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   838
  apply (simp add: list_all2_conv_all_nth set_conv_nth, safe)
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   839
  by (metis (mono_tags, lifting) associated_trans nth_mem subsetCE)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   840
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   841
lemma (in monoid_cancel) irrlist_listassoc_cong:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   842
  assumes "\<forall>a\<in>set as. irreducible G a"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   843
    and "as [\<sim>] bs"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   844
    and "set as \<subseteq> carrier G" and "set bs \<subseteq> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   845
  shows "\<forall>a\<in>set bs. irreducible G a"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   846
  using assms
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   847
  apply (clarsimp simp add: list_all2_conv_all_nth set_conv_nth)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   848
  apply (blast intro: irreducible_cong)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   849
  done
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   850
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   851
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
   852
text \<open>Permutations\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   853
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   854
lemma perm_map [intro]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   855
  assumes p: "a <~~> b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   856
  shows "map f a <~~> map f b"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   857
  using p by induct auto
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   858
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   859
lemma perm_map_switch:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   860
  assumes m: "map f a = map f b" and p: "b <~~> c"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   861
  shows "\<exists>d. a <~~> d \<and> map f d = map f c"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   862
  using p m by (induct arbitrary: a) (simp, force, force, blast)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   863
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   864
lemma (in monoid) perm_assoc_switch:
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   865
  assumes a:"as [\<sim>] bs" and p: "bs <~~> cs"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   866
  shows "\<exists>bs'. as <~~> bs' \<and> bs' [\<sim>] cs"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   867
  using p a
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   868
proof (induction bs cs arbitrary: as)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   869
  case (swap y x l)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   870
  then show ?case
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   871
    by (metis (no_types, hide_lams) list_all2_Cons2 perm.swap)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   872
next
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   873
case (Cons xs ys z)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   874
  then show ?case
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   875
    by (metis list_all2_Cons2 perm.Cons)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   876
next
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   877
  case (trans xs ys zs)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   878
  then show ?case
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   879
    by (meson perm.trans)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   880
qed auto
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   881
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   882
lemma (in monoid) perm_assoc_switch_r:
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   883
  assumes p: "as <~~> bs" and a:"bs [\<sim>] cs"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   884
  shows "\<exists>bs'. as [\<sim>] bs' \<and> bs' <~~> cs"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   885
  using p a
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   886
proof (induction as bs arbitrary: cs)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   887
  case Nil
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   888
  then show ?case
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   889
    by auto
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   890
next
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   891
  case (swap y x l)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   892
  then show ?case
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   893
    by (metis (no_types, hide_lams) list_all2_Cons1 perm.swap)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   894
next
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   895
  case (Cons xs ys z)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   896
  then show ?case
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   897
    by (metis list_all2_Cons1 perm.Cons)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   898
next
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   899
  case (trans xs ys zs)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   900
  then show ?case
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   901
    by (blast intro:  elim: )
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   902
qed
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   903
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   904
declare perm_sym [sym]
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   905
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   906
lemma perm_setP:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   907
  assumes perm: "as <~~> bs"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   908
    and as: "P (set as)"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   909
  shows "P (set bs)"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   910
proof -
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   911
  from perm have "mset as = mset bs"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   912
    by (simp add: mset_eq_perm)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   913
  then have "set as = set bs"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   914
    by (rule mset_eq_setD)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   915
  with as show "P (set bs)"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   916
    by simp
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   917
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   918
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   919
lemmas (in monoid) perm_closed = perm_setP[of _ _ "\<lambda>as. as \<subseteq> carrier G"]
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   920
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   921
lemmas (in monoid) irrlist_perm_cong = perm_setP[of _ _ "\<lambda>as. \<forall>a\<in>as. irreducible G a"]
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   922
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   923
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
   924
text \<open>Essentially equal factorizations\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   925
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   926
lemma (in monoid) essentially_equalI:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   927
  assumes ex: "fs1 <~~> fs1'"  "fs1' [\<sim>] fs2"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   928
  shows "essentially_equal G fs1 fs2"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   929
  using ex unfolding essentially_equal_def by fast
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   930
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   931
lemma (in monoid) essentially_equalE:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   932
  assumes ee: "essentially_equal G fs1 fs2"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   933
    and e: "\<And>fs1'. \<lbrakk>fs1 <~~> fs1'; fs1' [\<sim>] fs2\<rbrakk> \<Longrightarrow> P"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   934
  shows "P"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   935
  using ee unfolding essentially_equal_def by (fast intro: e)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   936
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   937
lemma (in monoid) ee_refl [simp,intro]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   938
  assumes carr: "set as \<subseteq> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   939
  shows "essentially_equal G as as"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   940
  using carr by (fast intro: essentially_equalI)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   941
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   942
lemma (in monoid) ee_sym [sym]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   943
  assumes ee: "essentially_equal G as bs"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   944
    and carr: "set as \<subseteq> carrier G"  "set bs \<subseteq> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   945
  shows "essentially_equal G bs as"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   946
  using ee
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   947
proof (elim essentially_equalE)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   948
  fix fs
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   949
  assume "as <~~> fs"  "fs [\<sim>] bs"
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
   950
  from perm_assoc_switch_r [OF this] obtain fs' where a: "as [\<sim>] fs'" and p: "fs' <~~> bs"
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
   951
    by blast
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   952
  from p have "bs <~~> fs'" by (rule perm_sym)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   953
  with a[symmetric] carr show ?thesis
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   954
    by (iprover intro: essentially_equalI perm_closed)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   955
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   956
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   957
lemma (in monoid) ee_trans [trans]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   958
  assumes ab: "essentially_equal G as bs" and bc: "essentially_equal G bs cs"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   959
    and ascarr: "set as \<subseteq> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   960
    and bscarr: "set bs \<subseteq> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   961
    and cscarr: "set cs \<subseteq> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   962
  shows "essentially_equal G as cs"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   963
  using ab bc
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   964
proof (elim essentially_equalE)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   965
  fix abs bcs
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
   966
  assume "abs [\<sim>] bs" and pb: "bs <~~> bcs"
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
   967
  from perm_assoc_switch [OF this] obtain bs' where p: "abs <~~> bs'" and a: "bs' [\<sim>] bcs"
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
   968
    by blast
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   969
  assume "as <~~> abs"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   970
  with p have pp: "as <~~> bs'" by fast
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   971
  from pp ascarr have c1: "set bs' \<subseteq> carrier G" by (rule perm_closed)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   972
  from pb bscarr have c2: "set bcs \<subseteq> carrier G" by (rule perm_closed)
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   973
  assume "bcs [\<sim>] cs"
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   974
  then have "bs' [\<sim>] cs"
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   975
    using a c1 c2 cscarr listassoc_trans by blast
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   976
  with pp show ?thesis
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   977
    by (rule essentially_equalI)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   978
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   979
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   980
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
   981
subsubsection \<open>Properties of lists of elements\<close>
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
   982
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
   983
text \<open>Multiplication of factors in a list\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   984
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   985
lemma (in monoid) multlist_closed [simp, intro]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   986
  assumes ascarr: "set fs \<subseteq> carrier G"
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67343
diff changeset
   987
  shows "foldr (\<otimes>) fs \<one> \<in> carrier G"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   988
  using ascarr by (induct fs) simp_all
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
   989
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   990
lemma  (in comm_monoid) multlist_dividesI:
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   991
  assumes "f \<in> set fs" and "set fs \<subseteq> carrier G"
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67343
diff changeset
   992
  shows "f divides (foldr (\<otimes>) fs \<one>)"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
   993
  using assms
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   994
proof (induction fs)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   995
  case (Cons a fs)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   996
  then have f: "f \<in> carrier G"
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   997
    by blast
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   998
  show ?case
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
   999
  proof (cases "f = a")
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1000
    case True
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1001
    then show ?thesis
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1002
      using Cons.prems by auto
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1003
  next
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1004
    case False
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1005
    with Cons show ?thesis
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1006
      by clarsimp (metis f divides_prod_l multlist_closed)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1007
  qed
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1008
qed auto
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1009
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1010
lemma (in comm_monoid_cancel) multlist_listassoc_cong:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1011
  assumes "fs [\<sim>] fs'"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1012
    and "set fs \<subseteq> carrier G" and "set fs' \<subseteq> carrier G"
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67343
diff changeset
  1013
  shows "foldr (\<otimes>) fs \<one> \<sim> foldr (\<otimes>) fs' \<one>"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1014
  using assms
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1015
proof (induct fs arbitrary: fs')
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1016
  case (Cons a as fs')
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1017
  then show ?case
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1018
  proof (induction fs')
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1019
    case (Cons b bs)
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67343
diff changeset
  1020
    then have p: "a \<otimes> foldr (\<otimes>) as \<one> \<sim> b \<otimes> foldr (\<otimes>) as \<one>"
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1021
      by (simp add: mult_cong_l)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1022
    then have "foldr (\<otimes>) as \<one> \<sim> foldr (\<otimes>) bs \<one>"
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1023
      using Cons by auto
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1024
    with Cons have "b \<otimes> foldr (\<otimes>) as \<one> \<sim> b \<otimes> foldr (\<otimes>) bs \<one>"
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1025
      by (simp add: mult_cong_r)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1026
    then show ?case
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1027
      using Cons.prems(3) Cons.prems(4) monoid.associated_trans monoid_axioms p by force
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1028
  qed auto
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1029
qed auto
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1030
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1031
lemma (in comm_monoid) multlist_perm_cong:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1032
  assumes prm: "as <~~> bs"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1033
    and ascarr: "set as \<subseteq> carrier G"
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67343
diff changeset
  1034
  shows "foldr (\<otimes>) as \<one> = foldr (\<otimes>) bs \<one>"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1035
  using prm ascarr
68478
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1036
proof induction
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1037
  case (swap y x l) then show ?case
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1038
    by (simp add: m_lcomm)
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1039
next
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1040
  case (trans xs ys zs) then show ?case
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1041
    using perm_closed by auto
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1042
qed auto
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1043
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1044
lemma (in comm_monoid_cancel) multlist_ee_cong:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1045
  assumes "essentially_equal G fs fs'"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1046
    and "set fs \<subseteq> carrier G" and "set fs' \<subseteq> carrier G"
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67343
diff changeset
  1047
  shows "foldr (\<otimes>) fs \<one> \<sim> foldr (\<otimes>) fs' \<one>"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1048
  using assms
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1049
  apply (elim essentially_equalE)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1050
  apply (simp add: multlist_perm_cong multlist_listassoc_cong perm_closed)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1051
  done
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1052
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1053
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
  1054
subsubsection \<open>Factorization in irreducible elements\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1055
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1056
lemma wfactorsI:
28599
12d914277b8d Removed 'includes'.
ballarin
parents: 27717
diff changeset
  1057
  fixes G (structure)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1058
  assumes "\<forall>f\<in>set fs. irreducible G f"
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67343
diff changeset
  1059
    and "foldr (\<otimes>) fs \<one> \<sim> a"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1060
  shows "wfactors G fs a"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1061
  using assms unfolding wfactors_def by simp
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1062
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1063
lemma wfactorsE:
28599
12d914277b8d Removed 'includes'.
ballarin
parents: 27717
diff changeset
  1064
  fixes G (structure)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1065
  assumes wf: "wfactors G fs a"
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67343
diff changeset
  1066
    and e: "\<lbrakk>\<forall>f\<in>set fs. irreducible G f; foldr (\<otimes>) fs \<one> \<sim> a\<rbrakk> \<Longrightarrow> P"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1067
  shows "P"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1068
  using wf unfolding wfactors_def by (fast dest: e)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1069
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1070
lemma (in monoid) factorsI:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1071
  assumes "\<forall>f\<in>set fs. irreducible G f"
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67343
diff changeset
  1072
    and "foldr (\<otimes>) fs \<one> = a"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1073
  shows "factors G fs a"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1074
  using assms unfolding factors_def by simp
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1075
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1076
lemma factorsE:
28599
12d914277b8d Removed 'includes'.
ballarin
parents: 27717
diff changeset
  1077
  fixes G (structure)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1078
  assumes f: "factors G fs a"
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67343
diff changeset
  1079
    and e: "\<lbrakk>\<forall>f\<in>set fs. irreducible G f; foldr (\<otimes>) fs \<one> = a\<rbrakk> \<Longrightarrow> P"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1080
  shows "P"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1081
  using f unfolding factors_def by (simp add: e)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1082
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1083
lemma (in monoid) factors_wfactors:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1084
  assumes "factors G as a" and "set as \<subseteq> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1085
  shows "wfactors G as a"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1086
  using assms by (blast elim: factorsE intro: wfactorsI)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1087
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1088
lemma (in monoid) wfactors_factors:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1089
  assumes "wfactors G as a" and "set as \<subseteq> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1090
  shows "\<exists>a'. factors G as a' \<and> a' \<sim> a"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1091
  using assms by (blast elim: wfactorsE intro: factorsI)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1092
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1093
lemma (in monoid) factors_closed [dest]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1094
  assumes "factors G fs a" and "set fs \<subseteq> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1095
  shows "a \<in> carrier G"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1096
  using assms by (elim factorsE, clarsimp)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1097
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1098
lemma (in monoid) nunit_factors:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1099
  assumes anunit: "a \<notin> Units G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1100
    and fs: "factors G as a"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1101
  shows "length as > 0"
46129
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  1102
proof -
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  1103
  from anunit Units_one_closed have "a \<noteq> \<one>" by auto
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  1104
  with fs show ?thesis by (auto elim: factorsE)
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  1105
qed
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1106
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1107
lemma (in monoid) unit_wfactors [simp]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1108
  assumes aunit: "a \<in> Units G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1109
  shows "wfactors G [] a"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1110
  using aunit by (intro wfactorsI) (simp, simp add: Units_assoc)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1111
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1112
lemma (in comm_monoid_cancel) unit_wfactors_empty:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1113
  assumes aunit: "a \<in> Units G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1114
    and wf: "wfactors G fs a"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1115
    and carr[simp]: "set fs \<subseteq> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1116
  shows "fs = []"
63846
23134a486dc6 tuned proofs;
wenzelm
parents: 63832
diff changeset
  1117
proof (cases fs)
23134a486dc6 tuned proofs;
wenzelm
parents: 63832
diff changeset
  1118
  case Nil
23134a486dc6 tuned proofs;
wenzelm
parents: 63832
diff changeset
  1119
  then show ?thesis .
23134a486dc6 tuned proofs;
wenzelm
parents: 63832
diff changeset
  1120
next
23134a486dc6 tuned proofs;
wenzelm
parents: 63832
diff changeset
  1121
  case fs: (Cons f fs')
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1122
  from carr have fcarr[simp]: "f \<in> carrier G" and carr'[simp]: "set fs' \<subseteq> carrier G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1123
    by (simp_all add: fs)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1124
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1125
  from fs wf have "irreducible G f" by (simp add: wfactors_def)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1126
  then have fnunit: "f \<notin> Units G" by (fast elim: irreducibleE)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1127
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67343
diff changeset
  1128
  from fs wf have a: "f \<otimes> foldr (\<otimes>) fs' \<one> \<sim> a" by (simp add: wfactors_def)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1129
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1130
  note aunit
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1131
  also from fs wf
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67343
diff changeset
  1132
  have a: "f \<otimes> foldr (\<otimes>) fs' \<one> \<sim> a" by (simp add: wfactors_def)
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67343
diff changeset
  1133
  have "a \<sim> f \<otimes> foldr (\<otimes>) fs' \<one>"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1134
    by (simp add: Units_closed[OF aunit] a[symmetric])
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67343
diff changeset
  1135
  finally have "f \<otimes> foldr (\<otimes>) fs' \<one> \<in> Units G" by simp
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1136
  then have "f \<in> Units G" by (intro unit_factor[of f], simp+)
63846
23134a486dc6 tuned proofs;
wenzelm
parents: 63832
diff changeset
  1137
  with fnunit show ?thesis by contradiction
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1138
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1139
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1140
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
  1141
text \<open>Comparing wfactors\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1142
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1143
lemma (in comm_monoid_cancel) wfactors_listassoc_cong_l:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1144
  assumes fact: "wfactors G fs a"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1145
    and asc: "fs [\<sim>] fs'"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1146
    and carr: "a \<in> carrier G"  "set fs \<subseteq> carrier G"  "set fs' \<subseteq> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1147
  shows "wfactors G fs' a"
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1148
proof -
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1149
  { from asc[symmetric] have "foldr (\<otimes>) fs' \<one> \<sim> foldr (\<otimes>) fs \<one>"
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1150
      by (simp add: multlist_listassoc_cong carr)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1151
    also assume "foldr (\<otimes>) fs \<one> \<sim> a"
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1152
    finally have "foldr (\<otimes>) fs' \<one> \<sim> a" by (simp add: carr) }
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1153
  then show ?thesis
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1154
  using fact
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1155
  by (meson asc carr(2) carr(3) irrlist_listassoc_cong wfactors_def)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1156
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1157
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1158
lemma (in comm_monoid) wfactors_perm_cong_l:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1159
  assumes "wfactors G fs a"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1160
    and "fs <~~> fs'"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1161
    and "set fs \<subseteq> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1162
  shows "wfactors G fs' a"
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1163
  using assms irrlist_perm_cong multlist_perm_cong wfactors_def by fastforce
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1164
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1165
lemma (in comm_monoid_cancel) wfactors_ee_cong_l [trans]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1166
  assumes ee: "essentially_equal G as bs"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1167
    and bfs: "wfactors G bs b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1168
    and carr: "b \<in> carrier G"  "set as \<subseteq> carrier G"  "set bs \<subseteq> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1169
  shows "wfactors G as b"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1170
  using ee
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1171
proof (elim essentially_equalE)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1172
  fix fs
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1173
  assume prm: "as <~~> fs"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1174
  with carr have fscarr: "set fs \<subseteq> carrier G" by (simp add: perm_closed)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1175
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1176
  note bfs
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1177
  also assume [symmetric]: "fs [\<sim>] bs"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1178
  also (wfactors_listassoc_cong_l)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1179
  note prm[symmetric]
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1180
  finally (wfactors_perm_cong_l)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1181
  show "wfactors G as b" by (simp add: carr fscarr)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1182
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1183
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1184
lemma (in monoid) wfactors_cong_r [trans]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1185
  assumes fac: "wfactors G fs a" and aa': "a \<sim> a'"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1186
    and carr[simp]: "a \<in> carrier G"  "a' \<in> carrier G"  "set fs \<subseteq> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1187
  shows "wfactors G fs a'"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1188
  using fac
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1189
proof (elim wfactorsE, intro wfactorsI)
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67343
diff changeset
  1190
  assume "foldr (\<otimes>) fs \<one> \<sim> a" also note aa'
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67343
diff changeset
  1191
  finally show "foldr (\<otimes>) fs \<one> \<sim> a'" by simp
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1192
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1193
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1194
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
  1195
subsubsection \<open>Essentially equal factorizations\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1196
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1197
lemma (in comm_monoid_cancel) unitfactor_ee:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1198
  assumes uunit: "u \<in> Units G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1199
    and carr: "set as \<subseteq> carrier G"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1200
  shows "essentially_equal G (as[0 := (as!0 \<otimes> u)]) as"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1201
    (is "essentially_equal G ?as' as")
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1202
proof -
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1203
  have "as[0 := as ! 0 \<otimes> u] [\<sim>] as"
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1204
  proof (cases as)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1205
    case (Cons a as')
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1206
    then show ?thesis
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1207
      using associatedI2 carr uunit by auto
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1208
  qed auto
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1209
  then show ?thesis
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1210
    using essentially_equal_def by blast
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1211
qed
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1212
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1213
lemma (in comm_monoid_cancel) factors_cong_unit:
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1214
  assumes u: "u \<in> Units G"
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1215
    and a: "a \<notin> Units G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1216
    and afs: "factors G as a"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1217
    and ascarr: "set as \<subseteq> carrier G"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1218
  shows "factors G (as[0 := (as!0 \<otimes> u)]) (a \<otimes> u)"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1219
    (is "factors G ?as' ?a'")
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1220
proof (cases as)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1221
  case Nil
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1222
  then show ?thesis
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1223
    using afs a nunit_factors by auto
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1224
next
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1225
  case (Cons b bs)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1226
  have *: "\<forall>f\<in>set as. irreducible G f" "foldr (\<otimes>) as \<one> = a"
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1227
    using afs  by (auto simp: factors_def)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1228
  show ?thesis
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1229
  proof (intro factorsI)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1230
    show "foldr (\<otimes>) (as[0 := as ! 0 \<otimes> u]) \<one> = a \<otimes> u"
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1231
      using Cons u ascarr * by (auto simp add: m_ac Units_closed)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1232
    show "\<forall>f\<in>set (as[0 := as ! 0 \<otimes> u]). irreducible G f"
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1233
      using Cons u ascarr * by (force intro: irreducible_prod_rI)
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1234
  qed 
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1235
qed
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1236
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1237
lemma (in comm_monoid) perm_wfactorsD:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1238
  assumes prm: "as <~~> bs"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1239
    and afs: "wfactors G as a"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1240
    and bfs: "wfactors G bs b"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1241
    and [simp]: "a \<in> carrier G"  "b \<in> carrier G"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1242
    and ascarr [simp]: "set as \<subseteq> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1243
  shows "a \<sim> b"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1244
  using afs bfs
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1245
proof (elim wfactorsE)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1246
  from prm have [simp]: "set bs \<subseteq> carrier G" by (simp add: perm_closed)
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67343
diff changeset
  1247
  assume "foldr (\<otimes>) as \<one> \<sim> a"
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1248
  then have "a \<sim> foldr (\<otimes>) as \<one>"
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1249
    by (simp add: associated_sym)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1250
  also from prm
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67343
diff changeset
  1251
  have "foldr (\<otimes>) as \<one> = foldr (\<otimes>) bs \<one>" by (rule multlist_perm_cong, simp)
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67343
diff changeset
  1252
  also assume "foldr (\<otimes>) bs \<one> \<sim> b"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1253
  finally show "a \<sim> b" by simp
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1254
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1255
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1256
lemma (in comm_monoid_cancel) listassoc_wfactorsD:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1257
  assumes assoc: "as [\<sim>] bs"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1258
    and afs: "wfactors G as a"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1259
    and bfs: "wfactors G bs b"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1260
    and [simp]: "a \<in> carrier G"  "b \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1261
    and [simp]: "set as \<subseteq> carrier G"  "set bs \<subseteq> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1262
  shows "a \<sim> b"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1263
  using afs bfs
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1264
proof (elim wfactorsE)
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67343
diff changeset
  1265
  assume "foldr (\<otimes>) as \<one> \<sim> a"
68470
7ddcce75c3ee Partial de-apply of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68399
diff changeset
  1266
  then have "a \<sim> foldr (\<otimes>) as \<one>" by (simp add: associated_sym)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1267
  also from assoc
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67343
diff changeset
  1268
  have "foldr (\<otimes>) as \<one> \<sim> foldr (\<otimes>) bs \<one>" by (rule multlist_listassoc_cong, simp+)
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67343
diff changeset
  1269
  also assume "foldr (\<otimes>) bs \<one> \<sim> b"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1270
  finally show "a \<sim> b" by simp
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1271
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1272
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1273
lemma (in comm_monoid_cancel) ee_wfactorsD:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1274
  assumes ee: "essentially_equal G as bs"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1275
    and afs: "wfactors G as a" and bfs: "wfactors G bs b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1276
    and [simp]: "a \<in> carrier G"  "b \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1277
    and ascarr[simp]: "set as \<subseteq> carrier G" and bscarr[simp]: "set bs \<subseteq> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1278
  shows "a \<sim> b"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1279
  using ee
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1280
proof (elim essentially_equalE)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1281
  fix fs
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1282
  assume prm: "as <~~> fs"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1283
  then have as'carr[simp]: "set fs \<subseteq> carrier G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1284
    by (simp add: perm_closed)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1285
  from afs prm have afs': "wfactors G fs a"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1286
    by (rule wfactors_perm_cong_l) simp
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1287
  assume "fs [\<sim>] bs"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1288
  from this afs' bfs show "a \<sim> b"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1289
    by (rule listassoc_wfactorsD) simp_all
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1290
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1291
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1292
lemma (in comm_monoid_cancel) ee_factorsD:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1293
  assumes ee: "essentially_equal G as bs"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1294
    and afs: "factors G as a" and bfs:"factors G bs b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1295
    and "set as \<subseteq> carrier G"  "set bs \<subseteq> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1296
  shows "a \<sim> b"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1297
  using assms by (blast intro: factors_wfactors dest: ee_wfactorsD)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1298
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1299
lemma (in factorial_monoid) ee_factorsI:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1300
  assumes ab: "a \<sim> b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1301
    and afs: "factors G as a" and anunit: "a \<notin> Units G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1302
    and bfs: "factors G bs b" and bnunit: "b \<notin> Units G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1303
    and ascarr: "set as \<subseteq> carrier G" and bscarr: "set bs \<subseteq> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1304
  shows "essentially_equal G as bs"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1305
proof -
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1306
  note carr[simp] = factors_closed[OF afs ascarr] ascarr[THEN subsetD]
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1307
    factors_closed[OF bfs bscarr] bscarr[THEN subsetD]
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1308
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  1309
  from ab carr obtain u where uunit: "u \<in> Units G" and a: "a = b \<otimes> u"
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  1310
    by (elim associatedE2)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1311
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1312
  from uunit bscarr have ee: "essentially_equal G (bs[0 := (bs!0 \<otimes> u)]) bs"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1313
    (is "essentially_equal G ?bs' bs")
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1314
    by (rule unitfactor_ee)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1315
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1316
  from bscarr uunit have bs'carr: "set ?bs' \<subseteq> carrier G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1317
    by (cases bs) (simp_all add: Units_closed)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1318
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1319
  from uunit bnunit bfs bscarr have fac: "factors G ?bs' (b \<otimes> u)"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1320
    by (rule factors_cong_unit)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1321
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1322
  from afs fac[simplified a[symmetric]] ascarr bs'carr anunit
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1323
  have "essentially_equal G as ?bs'"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1324
    by (blast intro: factors_unique)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1325
  also note ee
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1326
  finally show "essentially_equal G as bs"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1327
    by (simp add: ascarr bscarr bs'carr)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1328
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1329
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1330
lemma (in factorial_monoid) ee_wfactorsI:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1331
  assumes asc: "a \<sim> b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1332
    and asf: "wfactors G as a" and bsf: "wfactors G bs b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1333
    and acarr[simp]: "a \<in> carrier G" and bcarr[simp]: "b \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1334
    and ascarr[simp]: "set as \<subseteq> carrier G" and bscarr[simp]: "set bs \<subseteq> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1335
  shows "essentially_equal G as bs"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1336
  using assms
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1337
proof (cases "a \<in> Units G")
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1338
  case aunit: True
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1339
  also note asc
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1340
  finally have bunit: "b \<in> Units G" by simp
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1341
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1342
  from aunit asf ascarr have e: "as = []"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1343
    by (rule unit_wfactors_empty)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1344
  from bunit bsf bscarr have e': "bs = []"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1345
    by (rule unit_wfactors_empty)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1346
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1347
  have "essentially_equal G [] []"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1348
    by (fast intro: essentially_equalI)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1349
  then show ?thesis
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1350
    by (simp add: e e')
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1351
next
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1352
  case anunit: False
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1353
  have bnunit: "b \<notin> Units G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1354
  proof clarify
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1355
    assume "b \<in> Units G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1356
    also note asc[symmetric]
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1357
    finally have "a \<in> Units G" by simp
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1358
    with anunit show False ..
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1359
  qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1360
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  1361
  from wfactors_factors[OF asf ascarr] obtain a' where fa': "factors G as a'" and a': "a' \<sim> a"
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  1362
    by blast
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1363
  from fa' ascarr have a'carr[simp]: "a' \<in> carrier G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1364
    by fast
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1365
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1366
  have a'nunit: "a' \<notin> Units G"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1367
  proof clarify
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1368
    assume "a' \<in> Units G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1369
    also note a'
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1370
    finally have "a \<in> Units G" by simp
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1371
    with anunit
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1372
    show "False" ..
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1373
  qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1374
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  1375
  from wfactors_factors[OF bsf bscarr] obtain b' where fb': "factors G bs b'" and b': "b' \<sim> b"
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  1376
    by blast
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1377
  from fb' bscarr have b'carr[simp]: "b' \<in> carrier G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1378
    by fast
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1379
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1380
  have b'nunit: "b' \<notin> Units G"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1381
  proof clarify
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1382
    assume "b' \<in> Units G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1383
    also note b'
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1384
    finally have "b \<in> Units G" by simp
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1385
    with bnunit show False ..
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1386
  qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1387
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1388
  note a'
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1389
  also note asc
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1390
  also note b'[symmetric]
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1391
  finally have "a' \<sim> b'" by simp
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1392
  from this fa' a'nunit fb' b'nunit ascarr bscarr show "essentially_equal G as bs"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1393
    by (rule ee_factorsI)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1394
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1395
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1396
lemma (in factorial_monoid) ee_wfactors:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1397
  assumes asf: "wfactors G as a"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1398
    and bsf: "wfactors G bs b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1399
    and acarr: "a \<in> carrier G" and bcarr: "b \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1400
    and ascarr: "set as \<subseteq> carrier G" and bscarr: "set bs \<subseteq> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1401
  shows asc: "a \<sim> b = essentially_equal G as bs"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1402
  using assms by (fast intro: ee_wfactorsI ee_wfactorsD)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1403
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1404
lemma (in factorial_monoid) wfactors_exist [intro, simp]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1405
  assumes acarr[simp]: "a \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1406
  shows "\<exists>fs. set fs \<subseteq> carrier G \<and> wfactors G fs a"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1407
proof (cases "a \<in> Units G")
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1408
  case True
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1409
  then have "wfactors G [] a" by (rule unit_wfactors)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1410
  then show ?thesis by (intro exI) force
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1411
next
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1412
  case False
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  1413
  with factors_exist [OF acarr] obtain fs where fscarr: "set fs \<subseteq> carrier G" and f: "factors G fs a"
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  1414
    by blast
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1415
  from f have "wfactors G fs a" by (rule factors_wfactors) fact
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1416
  with fscarr show ?thesis by fast
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1417
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1418
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1419
lemma (in monoid) wfactors_prod_exists [intro, simp]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1420
  assumes "\<forall>a \<in> set as. irreducible G a" and "set as \<subseteq> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1421
  shows "\<exists>a. a \<in> carrier G \<and> wfactors G as a"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1422
  unfolding wfactors_def using assms by blast
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1423
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1424
lemma (in factorial_monoid) wfactors_unique:
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1425
  assumes "wfactors G fs a"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1426
    and "wfactors G fs' a"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1427
    and "a \<in> carrier G"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1428
    and "set fs \<subseteq> carrier G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1429
    and "set fs' \<subseteq> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1430
  shows "essentially_equal G fs fs'"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1431
  using assms by (fast intro: ee_wfactorsI[of a a])
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1432
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1433
lemma (in monoid) factors_mult_single:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1434
  assumes "irreducible G a" and "factors G fb b" and "a \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1435
  shows "factors G (a # fb) (a \<otimes> b)"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1436
  using assms unfolding factors_def by simp
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1437
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1438
lemma (in monoid_cancel) wfactors_mult_single:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1439
  assumes f: "irreducible G a"  "wfactors G fb b"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1440
    "a \<in> carrier G"  "b \<in> carrier G"  "set fb \<subseteq> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1441
  shows "wfactors G (a # fb) (a \<otimes> b)"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1442
  using assms unfolding wfactors_def by (simp add: mult_cong_r)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1443
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1444
lemma (in monoid) factors_mult:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1445
  assumes factors: "factors G fa a"  "factors G fb b"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1446
    and ascarr: "set fa \<subseteq> carrier G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1447
    and bscarr: "set fb \<subseteq> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1448
  shows "factors G (fa @ fb) (a \<otimes> b)"
68474
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1449
proof -
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1450
  have "foldr (\<otimes>) (fa @ fb) \<one> = foldr (\<otimes>) fa \<one> \<otimes> foldr (\<otimes>) fb \<one>" if "set fa \<subseteq> carrier G" 
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1451
    "Ball (set fa) (irreducible G)"
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1452
    using that bscarr by (induct fa) (simp_all add: m_assoc)
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1453
  then show ?thesis
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1454
    using assms unfolding factors_def by force
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1455
qed
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1456
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1457
lemma (in comm_monoid_cancel) wfactors_mult [intro]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1458
  assumes asf: "wfactors G as a" and bsf:"wfactors G bs b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1459
    and acarr: "a \<in> carrier G" and bcarr: "b \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1460
    and ascarr: "set as \<subseteq> carrier G" and bscarr:"set bs \<subseteq> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1461
  shows "wfactors G (as @ bs) (a \<otimes> b)"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1462
  using wfactors_factors[OF asf ascarr] and wfactors_factors[OF bsf bscarr]
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1463
proof clarsimp
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1464
  fix a' b'
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1465
  assume asf': "factors G as a'" and a'a: "a' \<sim> a"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1466
    and bsf': "factors G bs b'" and b'b: "b' \<sim> b"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1467
  from asf' have a'carr: "a' \<in> carrier G" by (rule factors_closed) fact
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1468
  from bsf' have b'carr: "b' \<in> carrier G" by (rule factors_closed) fact
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1469
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1470
  note carr = acarr bcarr a'carr b'carr ascarr bscarr
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1471
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1472
  from asf' bsf' have "factors G (as @ bs) (a' \<otimes> b')"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1473
    by (rule factors_mult) fact+
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1474
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1475
  with carr have abf': "wfactors G (as @ bs) (a' \<otimes> b')"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1476
    by (intro factors_wfactors) simp_all
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1477
  also from b'b carr have trb: "a' \<otimes> b' \<sim> a' \<otimes> b"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1478
    by (intro mult_cong_r)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1479
  also from a'a carr have tra: "a' \<otimes> b \<sim> a \<otimes> b"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1480
    by (intro mult_cong_l)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1481
  finally show "wfactors G (as @ bs) (a \<otimes> b)"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1482
    by (simp add: carr)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1483
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1484
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1485
lemma (in comm_monoid) factors_dividesI:
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1486
  assumes "factors G fs a"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1487
    and "f \<in> set fs"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1488
    and "set fs \<subseteq> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1489
  shows "f divides a"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1490
  using assms by (fast elim: factorsE intro: multlist_dividesI)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1491
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1492
lemma (in comm_monoid) wfactors_dividesI:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1493
  assumes p: "wfactors G fs a"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1494
    and fscarr: "set fs \<subseteq> carrier G" and acarr: "a \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1495
    and f: "f \<in> set fs"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1496
  shows "f divides a"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1497
  using wfactors_factors[OF p fscarr]
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1498
proof clarsimp
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1499
  fix a'
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1500
  assume fsa': "factors G fs a'" and a'a: "a' \<sim> a"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1501
  with fscarr have a'carr: "a' \<in> carrier G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1502
    by (simp add: factors_closed)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1503
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1504
  from fsa' fscarr f have "f divides a'"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1505
    by (fast intro: factors_dividesI)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1506
  also note a'a
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1507
  finally show "f divides a"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1508
    by (simp add: f fscarr[THEN subsetD] acarr a'carr)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1509
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1510
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1511
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
  1512
subsubsection \<open>Factorial monoids and wfactors\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1513
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1514
lemma (in comm_monoid_cancel) factorial_monoidI:
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1515
  assumes wfactors_exists: "\<And>a. a \<in> carrier G \<Longrightarrow> \<exists>fs. set fs \<subseteq> carrier G \<and> wfactors G fs a"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1516
    and wfactors_unique:
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1517
      "\<And>a fs fs'. \<lbrakk>a \<in> carrier G; set fs \<subseteq> carrier G; set fs' \<subseteq> carrier G;
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1518
        wfactors G fs a; wfactors G fs' a\<rbrakk> \<Longrightarrow> essentially_equal G fs fs'"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1519
  shows "factorial_monoid G"
28823
dcbef866c9e2 tuned unfold_locales invocation
haftmann
parents: 28600
diff changeset
  1520
proof
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1521
  fix a
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1522
  assume acarr: "a \<in> carrier G" and anunit: "a \<notin> Units G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1523
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1524
  from wfactors_exists[OF acarr]
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1525
  obtain as where ascarr: "set as \<subseteq> carrier G" and afs: "wfactors G as a"
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  1526
    by blast
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  1527
  from wfactors_factors [OF afs ascarr] obtain a' where afs': "factors G as a'" and a'a: "a' \<sim> a"
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  1528
    by blast
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1529
  from afs' ascarr have a'carr: "a' \<in> carrier G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1530
    by fast
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1531
  have a'nunit: "a' \<notin> Units G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1532
  proof clarify
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1533
    assume "a' \<in> Units G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1534
    also note a'a
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1535
    finally have "a \<in> Units G" by (simp add: acarr)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1536
    with anunit show False ..
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1537
  qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1538
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  1539
  from a'carr acarr a'a obtain u where uunit: "u \<in> Units G" and a': "a' = a \<otimes> u"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1540
    by (blast elim: associatedE2)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1541
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1542
  note [simp] = acarr Units_closed[OF uunit] Units_inv_closed[OF uunit]
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1543
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1544
  have "a = a \<otimes> \<one>" by simp
57865
dcfb33c26f50 tuned proofs -- fewer warnings;
wenzelm
parents: 57492
diff changeset
  1545
  also have "\<dots> = a \<otimes> (u \<otimes> inv u)" by (simp add: uunit)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1546
  also have "\<dots> = a' \<otimes> inv u" by (simp add: m_assoc[symmetric] a'[symmetric])
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1547
  finally have a: "a = a' \<otimes> inv u" .
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1548
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1549
  from ascarr uunit have cr: "set (as[0:=(as!0 \<otimes> inv u)]) \<subseteq> carrier G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1550
    by (cases as) auto
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1551
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1552
  from afs' uunit a'nunit acarr ascarr have "factors G (as[0:=(as!0 \<otimes> inv u)]) a"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1553
    by (simp add: a factors_cong_unit)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1554
  with cr show "\<exists>fs. set fs \<subseteq> carrier G \<and> factors G fs a"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1555
    by fast
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1556
qed (blast intro: factors_wfactors wfactors_unique)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1557
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1558
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
  1559
subsection \<open>Factorizations as Multisets\<close>
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
  1560
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
  1561
text \<open>Gives useful operations like intersection\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1562
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1563
(* FIXME: use class_of x instead of closure_of {x} *)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1564
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1565
abbreviation "assocs G x \<equiv> eq_closure_of (division_rel G) {x}"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1566
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1567
definition "fmset G as = mset (map (\<lambda>a. assocs G a) as)"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1568
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1569
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
  1570
text \<open>Helper lemmas\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1571
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1572
lemma (in monoid) assocs_repr_independence:
68474
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1573
  assumes "y \<in> assocs G x" "x \<in> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1574
  shows "assocs G x = assocs G y"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1575
  using assms
68474
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1576
  by (simp add: eq_closure_of_def elem_def) (use associated_sym associated_trans in \<open>blast+\<close>)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1577
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1578
lemma (in monoid) assocs_self:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1579
  assumes "x \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1580
  shows "x \<in> assocs G x"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1581
  using assms by (fastforce intro: closure_ofI2)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1582
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1583
lemma (in monoid) assocs_repr_independenceD:
68474
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1584
  assumes repr: "assocs G x = assocs G y" and ycarr: "y \<in> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1585
  shows "y \<in> assocs G x"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1586
  unfolding repr using ycarr by (intro assocs_self)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1587
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1588
lemma (in comm_monoid) assocs_assoc:
68474
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1589
  assumes "a \<in> assocs G b" "b \<in> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1590
  shows "a \<sim> b"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1591
  using assms by (elim closure_ofE2) simp
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1592
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1593
lemmas (in comm_monoid) assocs_eqD = assocs_repr_independenceD[THEN assocs_assoc]
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1594
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1595
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
  1596
subsubsection \<open>Comparing multisets\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1597
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1598
lemma (in monoid) fmset_perm_cong:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1599
  assumes prm: "as <~~> bs"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1600
  shows "fmset G as = fmset G bs"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1601
  using perm_map[OF prm] unfolding mset_eq_perm fmset_def by blast
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1602
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1603
lemma (in comm_monoid_cancel) eqc_listassoc_cong:
68474
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1604
  assumes "as [\<sim>] bs" and "set as \<subseteq> carrier G" and "set bs \<subseteq> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1605
  shows "map (assocs G) as = map (assocs G) bs"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1606
  using assms
68474
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1607
proof (induction as arbitrary: bs)
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1608
  case Nil
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1609
  then show ?case by simp
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1610
next
68474
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1611
  case (Cons a as)
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1612
  then show ?case
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1613
  proof (clarsimp simp add: Cons_eq_map_conv list_all2_Cons1)
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1614
    fix z zs 
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1615
    assume zzs: "a \<in> carrier G" "set as \<subseteq> carrier G" "bs = z # zs" "a \<sim> z"
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1616
      "as [\<sim>] zs" "z \<in> carrier G" "set zs \<subseteq> carrier G"
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1617
    then show "assocs G a = assocs G z"
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1618
      apply (simp add: eq_closure_of_def elem_def)
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1619
      using \<open>a \<in> carrier G\<close> \<open>z \<in> carrier G\<close> \<open>a \<sim> z\<close> associated_sym associated_trans by blast+
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1620
  qed
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1621
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1622
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1623
lemma (in comm_monoid_cancel) fmset_listassoc_cong:
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1624
  assumes "as [\<sim>] bs"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1625
    and "set as \<subseteq> carrier G" and "set bs \<subseteq> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1626
  shows "fmset G as = fmset G bs"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1627
  using assms unfolding fmset_def by (simp add: eqc_listassoc_cong)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1628
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1629
lemma (in comm_monoid_cancel) ee_fmset:
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1630
  assumes ee: "essentially_equal G as bs"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1631
    and ascarr: "set as \<subseteq> carrier G" and bscarr: "set bs \<subseteq> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1632
  shows "fmset G as = fmset G bs"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1633
  using ee
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1634
proof (elim essentially_equalE)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1635
  fix as'
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1636
  assume prm: "as <~~> as'"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1637
  from prm ascarr have as'carr: "set as' \<subseteq> carrier G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1638
    by (rule perm_closed)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1639
  from prm have "fmset G as = fmset G as'"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1640
    by (rule fmset_perm_cong)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1641
  also assume "as' [\<sim>] bs"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1642
  with as'carr bscarr have "fmset G as' = fmset G bs"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1643
    by (simp add: fmset_listassoc_cong)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1644
  finally show "fmset G as = fmset G bs" .
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1645
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1646
68474
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1647
lemma (in monoid_cancel) fmset_ee_aux:
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1648
  assumes "cas <~~> cbs" "cas = map (assocs G) as" "cbs = map (assocs G) bs"
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1649
  shows "\<exists>as'. as <~~> as' \<and> map (assocs G) as' = cbs"
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1650
  using assms
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1651
proof (induction cas cbs arbitrary: as bs rule: perm.induct)
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1652
  case (Cons xs ys z)
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1653
  then show ?case
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1654
    by (clarsimp simp add: map_eq_Cons_conv) blast
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1655
next
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1656
  case (trans xs ys zs)
68604
57721285d4ef elimination of some "smt"
paulson <lp15@cam.ac.uk>
parents: 68551
diff changeset
  1657
  then obtain as' where " as <~~> as' \<and> map (assocs G) as' = ys"
57721285d4ef elimination of some "smt"
paulson <lp15@cam.ac.uk>
parents: 68551
diff changeset
  1658
    by (metis (no_types, lifting) ex_map_conv mset_eq_perm set_mset_mset)
68474
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1659
  then show ?case
68604
57721285d4ef elimination of some "smt"
paulson <lp15@cam.ac.uk>
parents: 68551
diff changeset
  1660
    using trans.IH(2) trans.prems(2) by blast
68474
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1661
qed auto
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1662
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1663
lemma (in comm_monoid_cancel) fmset_ee:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1664
  assumes mset: "fmset G as = fmset G bs"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1665
    and ascarr: "set as \<subseteq> carrier G" and bscarr: "set bs \<subseteq> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1666
  shows "essentially_equal G as bs"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1667
proof -
68474
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1668
  from mset have "map (assocs G) as <~~> map (assocs G) bs"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1669
    by (simp add: fmset_def mset_eq_perm del: mset_map)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1670
  then obtain as' where tp: "as <~~> as'" and tm: "map (assocs G) as' = map (assocs G) bs"
68474
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1671
    using fmset_ee_aux by blast
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1672
  with ascarr have as'carr: "set as' \<subseteq> carrier G"
68474
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1673
    using perm_closed by blast
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  1674
  from tm as'carr[THEN subsetD] bscarr[THEN subsetD] have "as' [\<sim>] bs"
44890
22f665a2e91c new fastforce replacing fastsimp - less confusing name
nipkow
parents: 44655
diff changeset
  1675
    by (induct as' arbitrary: bs) (simp, fastforce dest: assocs_eqD[THEN associated_sym])
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1676
  with tp show "essentially_equal G as bs"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1677
    by (fast intro: essentially_equalI)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1678
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1679
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1680
lemma (in comm_monoid_cancel) ee_is_fmset:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1681
  assumes "set as \<subseteq> carrier G" and "set bs \<subseteq> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1682
  shows "essentially_equal G as bs = (fmset G as = fmset G bs)"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1683
  using assms by (fast intro: ee_fmset fmset_ee)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1684
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1685
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
  1686
subsubsection \<open>Interpreting multisets as factorizations\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1687
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1688
lemma (in monoid) mset_fmsetEx:
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60397
diff changeset
  1689
  assumes elems: "\<And>X. X \<in> set_mset Cs \<Longrightarrow> \<exists>x. P x \<and> X = assocs G x"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1690
  shows "\<exists>cs. (\<forall>c \<in> set cs. P c) \<and> fmset G cs = Cs"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1691
proof -
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  1692
  from surjE[OF surj_mset] obtain Cs' where Cs: "Cs = mset Cs'"
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  1693
    by blast
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60495
diff changeset
  1694
  have "\<exists>cs. (\<forall>c \<in> set cs. P c) \<and> mset (map (assocs G) cs) = Cs"
68478
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1695
    using elems unfolding Cs
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1696
  proof (induction Cs')
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1697
    case (Cons a Cs')
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1698
    then obtain c cs where csP: "\<forall>x\<in>set cs. P x" and mset: "mset (map (assocs G) cs) = mset Cs'"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1699
            and cP: "P c" and a: "a = assocs G c"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1700
      by force
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1701
    then have tP: "\<forall>x\<in>set (c#cs). P x"
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  1702
      by simp
68478
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1703
    show ?case
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1704
      using tP mset a by fastforce
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1705
  qed auto
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1706
  then show ?thesis by (simp add: fmset_def)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1707
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1708
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1709
lemma (in monoid) mset_wfactorsEx:
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1710
  assumes elems: "\<And>X. X \<in> set_mset Cs \<Longrightarrow> \<exists>x. (x \<in> carrier G \<and> irreducible G x) \<and> X = assocs G x"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1711
  shows "\<exists>c cs. c \<in> carrier G \<and> set cs \<subseteq> carrier G \<and> wfactors G cs c \<and> fmset G cs = Cs"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1712
proof -
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1713
  have "\<exists>cs. (\<forall>c\<in>set cs. c \<in> carrier G \<and> irreducible G c) \<and> fmset G cs = Cs"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1714
    by (intro mset_fmsetEx, rule elems)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1715
  then obtain cs where p[rule_format]: "\<forall>c\<in>set cs. c \<in> carrier G \<and> irreducible G c"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1716
    and Cs[symmetric]: "fmset G cs = Cs" by auto
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1717
  from p have cscarr: "set cs \<subseteq> carrier G" by fast
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1718
  from p have "\<exists>c. c \<in> carrier G \<and> wfactors G cs c"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1719
    by (intro wfactors_prod_exists) auto
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1720
  then obtain c where ccarr: "c \<in> carrier G" and cfs: "wfactors G cs c" by auto
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1721
  with cscarr Cs show ?thesis by fast
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1722
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1723
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1724
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
  1725
subsubsection \<open>Multiplication on multisets\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1726
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1727
lemma (in factorial_monoid) mult_wfactors_fmset:
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1728
  assumes afs: "wfactors G as a"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1729
    and bfs: "wfactors G bs b"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1730
    and cfs: "wfactors G cs (a \<otimes> b)"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1731
    and carr: "a \<in> carrier G"  "b \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1732
              "set as \<subseteq> carrier G"  "set bs \<subseteq> carrier G"  "set cs \<subseteq> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1733
  shows "fmset G cs = fmset G as + fmset G bs"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1734
proof -
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1735
  from assms have "wfactors G (as @ bs) (a \<otimes> b)"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1736
    by (intro wfactors_mult)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1737
  with carr cfs have "essentially_equal G cs (as@bs)"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1738
    by (intro ee_wfactorsI[of "a\<otimes>b" "a\<otimes>b"]) simp_all
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1739
  with carr have "fmset G cs = fmset G (as@bs)"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1740
    by (intro ee_fmset) simp_all
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1741
  also have "fmset G (as@bs) = fmset G as + fmset G bs"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1742
    by (simp add: fmset_def)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1743
  finally show "fmset G cs = fmset G as + fmset G bs" .
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1744
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1745
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1746
lemma (in factorial_monoid) mult_factors_fmset:
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1747
  assumes afs: "factors G as a"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1748
    and bfs: "factors G bs b"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1749
    and cfs: "factors G cs (a \<otimes> b)"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1750
    and "set as \<subseteq> carrier G"  "set bs \<subseteq> carrier G"  "set cs \<subseteq> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1751
  shows "fmset G cs = fmset G as + fmset G bs"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1752
  using assms by (blast intro: factors_wfactors mult_wfactors_fmset)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1753
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1754
lemma (in comm_monoid_cancel) fmset_wfactors_mult:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1755
  assumes mset: "fmset G cs = fmset G as + fmset G bs"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1756
    and carr: "a \<in> carrier G"  "b \<in> carrier G"  "c \<in> carrier G"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1757
      "set as \<subseteq> carrier G"  "set bs \<subseteq> carrier G"  "set cs \<subseteq> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1758
    and fs: "wfactors G as a"  "wfactors G bs b"  "wfactors G cs c"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1759
  shows "c \<sim> a \<otimes> b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1760
proof -
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1761
  from carr fs have m: "wfactors G (as @ bs) (a \<otimes> b)"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1762
    by (intro wfactors_mult)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1763
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1764
  from mset have "fmset G cs = fmset G (as@bs)"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1765
    by (simp add: fmset_def)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1766
  then have "essentially_equal G cs (as@bs)"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1767
    by (rule fmset_ee) (simp_all add: carr)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1768
  then show "c \<sim> a \<otimes> b"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1769
    by (rule ee_wfactorsD[of "cs" "as@bs"]) (simp_all add: assms m)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1770
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1771
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1772
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
  1773
subsubsection \<open>Divisibility on multisets\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1774
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1775
lemma (in factorial_monoid) divides_fmsubset:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1776
  assumes ab: "a divides b"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1777
    and afs: "wfactors G as a"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1778
    and bfs: "wfactors G bs b"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1779
    and carr: "a \<in> carrier G"  "b \<in> carrier G"  "set as \<subseteq> carrier G"  "set bs \<subseteq> carrier G"
64587
8355a6e2df79 standardized notation
haftmann
parents: 63919
diff changeset
  1780
  shows "fmset G as \<subseteq># fmset G bs"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1781
  using ab
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1782
proof (elim dividesE)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1783
  fix c
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1784
  assume ccarr: "c \<in> carrier G"
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  1785
  from wfactors_exist [OF this]
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  1786
  obtain cs where cscarr: "set cs \<subseteq> carrier G" and cfs: "wfactors G cs c"
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  1787
    by blast
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1788
  note carr = carr ccarr cscarr
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1789
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1790
  assume "b = a \<otimes> c"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1791
  with afs bfs cfs carr have "fmset G bs = fmset G as + fmset G cs"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1792
    by (intro mult_wfactors_fmset[OF afs cfs]) simp_all
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1793
  then show ?thesis by simp
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1794
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1795
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1796
lemma (in comm_monoid_cancel) fmsubset_divides:
64587
8355a6e2df79 standardized notation
haftmann
parents: 63919
diff changeset
  1797
  assumes msubset: "fmset G as \<subseteq># fmset G bs"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1798
    and afs: "wfactors G as a"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1799
    and bfs: "wfactors G bs b"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1800
    and acarr: "a \<in> carrier G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1801
    and bcarr: "b \<in> carrier G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1802
    and ascarr: "set as \<subseteq> carrier G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1803
    and bscarr: "set bs \<subseteq> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1804
  shows "a divides b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1805
proof -
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1806
  from afs have airr: "\<forall>a \<in> set as. irreducible G a" by (fast elim: wfactorsE)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1807
  from bfs have birr: "\<forall>b \<in> set bs. irreducible G b" by (fast elim: wfactorsE)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1808
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1809
  have "\<exists>c cs. c \<in> carrier G \<and> set cs \<subseteq> carrier G \<and> wfactors G cs c \<and> fmset G cs = fmset G bs - fmset G as"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1810
  proof (intro mset_wfactorsEx, simp)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1811
    fix X
62430
9527ff088c15 more succint formulation of membership for multisets, similar to lists;
haftmann
parents: 61382
diff changeset
  1812
    assume "X \<in># fmset G bs - fmset G as"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1813
    then have "X \<in># fmset G bs" by (rule in_diffD)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1814
    then have "X \<in> set (map (assocs G) bs)" by (simp add: fmset_def)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1815
    then have "\<exists>x. x \<in> set bs \<and> X = assocs G x" by (induct bs) auto
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1816
    then obtain x where xbs: "x \<in> set bs" and X: "X = assocs G x" by auto
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1817
    with bscarr have xcarr: "x \<in> carrier G" by fast
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1818
    from xbs birr have xirr: "irreducible G x" by simp
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1819
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1820
    from xcarr and xirr and X show "\<exists>x. x \<in> carrier G \<and> irreducible G x \<and> X = assocs G x"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1821
      by fast
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1822
  qed
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1823
  then obtain c cs
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1824
    where ccarr: "c \<in> carrier G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1825
      and cscarr: "set cs \<subseteq> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1826
      and csf: "wfactors G cs c"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1827
      and csmset: "fmset G cs = fmset G bs - fmset G as" by auto
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1828
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1829
  from csmset msubset
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1830
  have "fmset G bs = fmset G as + fmset G cs"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1831
    by (simp add: multiset_eq_iff subseteq_mset_def)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1832
  then have basc: "b \<sim> a \<otimes> c"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1833
    by (rule fmset_wfactors_mult) fact+
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1834
  then show ?thesis
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1835
  proof (elim associatedE2)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1836
    fix u
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1837
    assume "u \<in> Units G"  "b = a \<otimes> c \<otimes> u"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1838
    with acarr ccarr show "a divides b"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1839
      by (fast intro: dividesI[of "c \<otimes> u"] m_assoc)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1840
  qed (simp_all add: acarr bcarr ccarr)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1841
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1842
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1843
lemma (in factorial_monoid) divides_as_fmsubset:
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1844
  assumes "wfactors G as a"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1845
    and "wfactors G bs b"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1846
    and "a \<in> carrier G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1847
    and "b \<in> carrier G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1848
    and "set as \<subseteq> carrier G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1849
    and "set bs \<subseteq> carrier G"
64587
8355a6e2df79 standardized notation
haftmann
parents: 63919
diff changeset
  1850
  shows "a divides b = (fmset G as \<subseteq># fmset G bs)"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1851
  using assms
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1852
  by (blast intro: divides_fmsubset fmsubset_divides)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1853
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1854
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
  1855
text \<open>Proper factors on multisets\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1856
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1857
lemma (in factorial_monoid) fmset_properfactor:
64587
8355a6e2df79 standardized notation
haftmann
parents: 63919
diff changeset
  1858
  assumes asubb: "fmset G as \<subseteq># fmset G bs"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1859
    and anb: "fmset G as \<noteq> fmset G bs"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1860
    and "wfactors G as a"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1861
    and "wfactors G bs b"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1862
    and "a \<in> carrier G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1863
    and "b \<in> carrier G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1864
    and "set as \<subseteq> carrier G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1865
    and "set bs \<subseteq> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1866
  shows "properfactor G a b"
68478
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1867
proof (rule properfactorI)
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1868
  show "a divides b"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1869
    using assms asubb fmsubset_divides by blast
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1870
  show "\<not> b divides a"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1871
    by (meson anb assms asubb factorial_monoid.divides_fmsubset factorial_monoid_axioms subset_mset.antisym)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1872
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1873
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1874
lemma (in factorial_monoid) properfactor_fmset:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1875
  assumes pf: "properfactor G a b"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1876
    and "wfactors G as a"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1877
    and "wfactors G bs b"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1878
    and "a \<in> carrier G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1879
    and "b \<in> carrier G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1880
    and "set as \<subseteq> carrier G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1881
    and "set bs \<subseteq> carrier G"
64587
8355a6e2df79 standardized notation
haftmann
parents: 63919
diff changeset
  1882
  shows "fmset G as \<subseteq># fmset G bs \<and> fmset G as \<noteq> fmset G bs"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1883
  using pf
68474
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1884
  apply safe
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1885
   apply (meson assms divides_as_fmsubset monoid.properfactor_divides monoid_axioms)
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  1886
  by (meson assms associated_def comm_monoid_cancel.ee_wfactorsD comm_monoid_cancel.fmset_ee factorial_monoid_axioms factorial_monoid_def properfactorE)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1887
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
  1888
subsection \<open>Irreducible Elements are Prime\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1889
63633
2accfb71e33b is_prime -> prime
eberlm <eberlm@in.tum.de>
parents: 63524
diff changeset
  1890
lemma (in factorial_monoid) irreducible_prime:
68478
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1891
  assumes pirr: "irreducible G p" and pcarr: "p \<in> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1892
  shows "prime G p"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1893
  using pirr
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1894
proof (elim irreducibleE, intro primeI)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1895
  fix a b
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1896
  assume acarr: "a \<in> carrier G"  and bcarr: "b \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1897
    and pdvdab: "p divides (a \<otimes> b)"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1898
    and pnunit: "p \<notin> Units G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1899
  assume irreduc[rule_format]:
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1900
    "\<forall>b. b \<in> carrier G \<and> properfactor G b p \<longrightarrow> b \<in> Units G"
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  1901
  from pdvdab obtain c where ccarr: "c \<in> carrier G" and abpc: "a \<otimes> b = p \<otimes> c"
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  1902
    by (rule dividesE)
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  1903
  obtain as where ascarr: "set as \<subseteq> carrier G" and afs: "wfactors G as a"
68478
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1904
    using wfactors_exist [OF acarr] by blast
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  1905
  obtain bs where bscarr: "set bs \<subseteq> carrier G" and bfs: "wfactors G bs b"
68478
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1906
    using wfactors_exist [OF bcarr] by blast
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  1907
  obtain cs where cscarr: "set cs \<subseteq> carrier G" and cfs: "wfactors G cs c"
68478
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1908
    using wfactors_exist [OF ccarr] by blast
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1909
  note carr[simp] = pcarr acarr bcarr ccarr ascarr bscarr cscarr
68478
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1910
  from pirr cfs  abpc have "wfactors G (p # cs) (a \<otimes> b)"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1911
    by (simp add: wfactors_mult_single)
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1912
  moreover have  "wfactors G (as @ bs) (a \<otimes> b)"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1913
    by (rule wfactors_mult [OF afs bfs]) fact+
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1914
  ultimately have "essentially_equal G (p # cs) (as @ bs)"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1915
    by (rule wfactors_unique) simp+
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  1916
  then obtain ds where "p # cs <~~> ds" and dsassoc: "ds [\<sim>] (as @ bs)"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1917
    by (fast elim: essentially_equalE)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1918
  then have "p \<in> set ds"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1919
    by (simp add: perm_set_eq[symmetric])
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  1920
  with dsassoc obtain p' where "p' \<in> set (as@bs)" and pp': "p \<sim> p'"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1921
    unfolding list_all2_conv_all_nth set_conv_nth by force
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1922
  then consider "p' \<in> set as" | "p' \<in> set bs" by auto
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1923
  then show "p divides a \<or> p divides b"
68478
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1924
    using afs bfs divides_cong_l pp' wfactors_dividesI
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1925
    by (meson acarr ascarr bcarr bscarr pcarr)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1926
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1927
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1928
67443
3abf6a722518 standardized towards new-style formal comments: isabelle update_comments;
wenzelm
parents: 67399
diff changeset
  1929
\<comment> \<open>A version using @{const factors}, more complicated\<close>
63633
2accfb71e33b is_prime -> prime
eberlm <eberlm@in.tum.de>
parents: 63524
diff changeset
  1930
lemma (in factorial_monoid) factors_irreducible_prime:
68478
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1931
  assumes pirr: "irreducible G p" and pcarr: "p \<in> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1932
  shows "prime G p"
68478
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1933
proof (rule primeI)
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1934
  show "p \<notin> Units G"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1935
    by (meson irreducibleE pirr)
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1936
  have irreduc: "\<And>b. \<lbrakk>b \<in> carrier G; properfactor G b p\<rbrakk> \<Longrightarrow> b \<in> Units G"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1937
    using pirr by (auto simp: irreducible_def)
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1938
  show "p divides a \<or> p divides b" 
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1939
    if acarr: "a \<in> carrier G" and bcarr: "b \<in> carrier G" and pdvdab: "p divides (a \<otimes> b)" for a b
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1940
  proof -
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1941
    from pdvdab obtain c where ccarr: "c \<in> carrier G" and abpc: "a \<otimes> b = p \<otimes> c"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1942
      by (rule dividesE)
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1943
    note [simp] = pcarr acarr bcarr ccarr
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1944
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1945
    show "p divides a \<or> p divides b"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1946
    proof (cases "a \<in> Units G")
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1947
      case True
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1948
      then have "p divides b"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1949
        by (metis acarr associatedI2' associated_def bcarr divides_trans m_comm pcarr pdvdab) 
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1950
      then show ?thesis ..
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1951
    next
68478
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1952
      case anunit: False
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1953
      show ?thesis
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1954
      proof (cases "b \<in> Units G")
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1955
        case True 
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1956
        then have "p divides a"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1957
          by (meson acarr bcarr divides_unit irreducible_prime pcarr pdvdab pirr prime_def)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1958
        then show ?thesis ..
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1959
      next
68478
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1960
        case bnunit: False
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1961
        then have cnunit: "c \<notin> Units G"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1962
          by (metis abpc acarr anunit bcarr ccarr irreducible_prodE irreducible_prod_rI pcarr pirr)
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1963
        then have abnunit: "a \<otimes> b \<notin> Units G"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1964
          using acarr anunit bcarr unit_factor by blast
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1965
        obtain as where ascarr: "set as \<subseteq> carrier G" and afac: "factors G as a"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1966
          using factors_exist [OF acarr anunit] by blast
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1967
        obtain bs where bscarr: "set bs \<subseteq> carrier G" and bfac: "factors G bs b"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1968
          using factors_exist [OF bcarr bnunit] by blast
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1969
        obtain cs where cscarr: "set cs \<subseteq> carrier G" and cfac: "factors G cs c"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1970
          using factors_exist [OF ccarr cnunit] by auto
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1971
        note [simp] = ascarr bscarr cscarr
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1972
        from pirr cfac abpc have abfac': "factors G (p # cs) (a \<otimes> b)"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1973
          by (simp add: factors_mult_single)
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1974
        from afac and bfac have "factors G (as @ bs) (a \<otimes> b)"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1975
          by (rule factors_mult) fact+
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1976
        with abfac' have "essentially_equal G (p # cs) (as @ bs)"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1977
          using abnunit factors_unique by auto
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1978
        then obtain ds where "p # cs <~~> ds" and dsassoc: "ds [\<sim>] (as @ bs)"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1979
          by (fast elim: essentially_equalE)
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1980
        then have "p \<in> set ds"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1981
          by (simp add: perm_set_eq[symmetric])
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1982
        with dsassoc obtain p' where "p' \<in> set (as@bs)" and pp': "p \<sim> p'"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1983
          unfolding list_all2_conv_all_nth set_conv_nth by force
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1984
        then consider "p' \<in> set as" | "p' \<in> set bs" by auto
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1985
        then show "p divides a \<or> p divides b"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  1986
          by (meson afac bfac divides_cong_l factors_dividesI pp' ascarr bscarr pcarr)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1987
      qed
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1988
    qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1989
  qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1990
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1991
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1992
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
  1993
subsection \<open>Greatest Common Divisors and Lowest Common Multiples\<close>
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
  1994
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
  1995
subsubsection \<open>Definitions\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  1996
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  1997
definition isgcd :: "[('a,_) monoid_scheme, 'a, 'a, 'a] \<Rightarrow> bool"  ("(_ gcdof\<index> _ _)" [81,81,81] 80)
35848
5443079512ea slightly more uniform definitions -- eliminated old-style meta-equality;
wenzelm
parents: 35847
diff changeset
  1998
  where "x gcdof\<^bsub>G\<^esub> a b \<longleftrightarrow> x divides\<^bsub>G\<^esub> a \<and> x divides\<^bsub>G\<^esub> b \<and>
35847
19f1f7066917 eliminated old constdefs;
wenzelm
parents: 35416
diff changeset
  1999
    (\<forall>y\<in>carrier G. (y divides\<^bsub>G\<^esub> a \<and> y divides\<^bsub>G\<^esub> b \<longrightarrow> y divides\<^bsub>G\<^esub> x))"
19f1f7066917 eliminated old constdefs;
wenzelm
parents: 35416
diff changeset
  2000
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2001
definition islcm :: "[_, 'a, 'a, 'a] \<Rightarrow> bool"  ("(_ lcmof\<index> _ _)" [81,81,81] 80)
35848
5443079512ea slightly more uniform definitions -- eliminated old-style meta-equality;
wenzelm
parents: 35847
diff changeset
  2002
  where "x lcmof\<^bsub>G\<^esub> a b \<longleftrightarrow> a divides\<^bsub>G\<^esub> x \<and> b divides\<^bsub>G\<^esub> x \<and>
35847
19f1f7066917 eliminated old constdefs;
wenzelm
parents: 35416
diff changeset
  2003
    (\<forall>y\<in>carrier G. (a divides\<^bsub>G\<^esub> y \<and> b divides\<^bsub>G\<^esub> y \<longrightarrow> x divides\<^bsub>G\<^esub> y))"
19f1f7066917 eliminated old constdefs;
wenzelm
parents: 35416
diff changeset
  2004
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2005
definition somegcd :: "('a,_) monoid_scheme \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> 'a"
35848
5443079512ea slightly more uniform definitions -- eliminated old-style meta-equality;
wenzelm
parents: 35847
diff changeset
  2006
  where "somegcd G a b = (SOME x. x \<in> carrier G \<and> x gcdof\<^bsub>G\<^esub> a b)"
35847
19f1f7066917 eliminated old constdefs;
wenzelm
parents: 35416
diff changeset
  2007
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2008
definition somelcm :: "('a,_) monoid_scheme \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> 'a"
35848
5443079512ea slightly more uniform definitions -- eliminated old-style meta-equality;
wenzelm
parents: 35847
diff changeset
  2009
  where "somelcm G a b = (SOME x. x \<in> carrier G \<and> x lcmof\<^bsub>G\<^esub> a b)"
35847
19f1f7066917 eliminated old constdefs;
wenzelm
parents: 35416
diff changeset
  2010
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2011
definition "SomeGcd G A = inf (division_rel G) A"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2012
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2013
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2014
locale gcd_condition_monoid = comm_monoid_cancel +
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2015
  assumes gcdof_exists: "\<lbrakk>a \<in> carrier G; b \<in> carrier G\<rbrakk> \<Longrightarrow> \<exists>c. c \<in> carrier G \<and> c gcdof a b"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2016
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2017
locale primeness_condition_monoid = comm_monoid_cancel +
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2018
  assumes irreducible_prime: "\<lbrakk>a \<in> carrier G; irreducible G a\<rbrakk> \<Longrightarrow> prime G a"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2019
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2020
locale divisor_chain_condition_monoid = comm_monoid_cancel +
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2021
  assumes division_wellfounded: "wf {(x, y). x \<in> carrier G \<and> y \<in> carrier G \<and> properfactor G x y}"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2022
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2023
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
  2024
subsubsection \<open>Connections to \texttt{Lattice.thy}\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2025
27713
95b36bfe7fc4 New locales for orders and lattices where the equivalence relation is not restricted to equality.
ballarin
parents: 27701
diff changeset
  2026
lemma gcdof_greatestLower:
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2027
  fixes G (structure)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2028
  assumes carr[simp]: "a \<in> carrier G"  "b \<in> carrier G"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2029
  shows "(x \<in> carrier G \<and> x gcdof a b) = greatest (division_rel G) x (Lower (division_rel G) {a, b})"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2030
  by (auto simp: isgcd_def greatest_def Lower_def elem_def)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2031
27713
95b36bfe7fc4 New locales for orders and lattices where the equivalence relation is not restricted to equality.
ballarin
parents: 27701
diff changeset
  2032
lemma lcmof_leastUpper:
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2033
  fixes G (structure)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2034
  assumes carr[simp]: "a \<in> carrier G"  "b \<in> carrier G"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2035
  shows "(x \<in> carrier G \<and> x lcmof a b) = least (division_rel G) x (Upper (division_rel G) {a, b})"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2036
  by (auto simp: islcm_def least_def Upper_def elem_def)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2037
27713
95b36bfe7fc4 New locales for orders and lattices where the equivalence relation is not restricted to equality.
ballarin
parents: 27701
diff changeset
  2038
lemma somegcd_meet:
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2039
  fixes G (structure)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2040
  assumes carr: "a \<in> carrier G"  "b \<in> carrier G"
27713
95b36bfe7fc4 New locales for orders and lattices where the equivalence relation is not restricted to equality.
ballarin
parents: 27701
diff changeset
  2041
  shows "somegcd G a b = meet (division_rel G) a b"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2042
  by (simp add: somegcd_def meet_def inf_def gcdof_greatestLower[OF carr])
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2043
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2044
lemma (in monoid) isgcd_divides_l:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2045
  assumes "a divides b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2046
    and "a \<in> carrier G"  "b \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2047
  shows "a gcdof a b"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2048
  using assms unfolding isgcd_def by fast
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2049
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2050
lemma (in monoid) isgcd_divides_r:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2051
  assumes "b divides a"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2052
    and "a \<in> carrier G"  "b \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2053
  shows "b gcdof a b"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2054
  using assms unfolding isgcd_def by fast
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2055
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2056
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
  2057
subsubsection \<open>Existence of gcd and lcm\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2058
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2059
lemma (in factorial_monoid) gcdof_exists:
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2060
  assumes acarr: "a \<in> carrier G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2061
    and bcarr: "b \<in> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2062
  shows "\<exists>c. c \<in> carrier G \<and> c gcdof a b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2063
proof -
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2064
  from wfactors_exist [OF acarr]
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2065
  obtain as where ascarr: "set as \<subseteq> carrier G" and afs: "wfactors G as a"
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2066
    by blast
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2067
  from afs have airr: "\<forall>a \<in> set as. irreducible G a"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2068
    by (fast elim: wfactorsE)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2069
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2070
  from wfactors_exist [OF bcarr]
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2071
  obtain bs where bscarr: "set bs \<subseteq> carrier G" and bfs: "wfactors G bs b"
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2072
    by blast
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2073
  from bfs have birr: "\<forall>b \<in> set bs. irreducible G b"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2074
    by (fast elim: wfactorsE)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2075
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2076
  have "\<exists>c cs. c \<in> carrier G \<and> set cs \<subseteq> carrier G \<and> wfactors G cs c \<and>
63919
9aed2da07200 # after multiset intersection and union symbol
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 63847
diff changeset
  2077
    fmset G cs = fmset G as \<inter># fmset G bs"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2078
  proof (intro mset_wfactorsEx)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2079
    fix X
63919
9aed2da07200 # after multiset intersection and union symbol
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 63847
diff changeset
  2080
    assume "X \<in># fmset G as \<inter># fmset G bs"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2081
    then have "X \<in># fmset G as" by simp
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2082
    then have "X \<in> set (map (assocs G) as)"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2083
      by (simp add: fmset_def)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2084
    then have "\<exists>x. X = assocs G x \<and> x \<in> set as"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2085
      by (induct as) auto
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2086
    then obtain x where X: "X = assocs G x" and xas: "x \<in> set as"
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2087
      by blast
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2088
    with ascarr have xcarr: "x \<in> carrier G"
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2089
      by blast
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2090
    from xas airr have xirr: "irreducible G x"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2091
      by simp
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2092
    from xcarr and xirr and X show "\<exists>x. (x \<in> carrier G \<and> irreducible G x) \<and> X = assocs G x"
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2093
      by blast
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2094
  qed
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2095
  then obtain c cs
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2096
    where ccarr: "c \<in> carrier G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2097
      and cscarr: "set cs \<subseteq> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2098
      and csirr: "wfactors G cs c"
63919
9aed2da07200 # after multiset intersection and union symbol
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 63847
diff changeset
  2099
      and csmset: "fmset G cs = fmset G as \<inter># fmset G bs"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2100
    by auto
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2101
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2102
  have "c gcdof a b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2103
  proof (simp add: isgcd_def, safe)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2104
    from csmset
64587
8355a6e2df79 standardized notation
haftmann
parents: 63919
diff changeset
  2105
    have "fmset G cs \<subseteq># fmset G as"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2106
      by (simp add: multiset_inter_def subset_mset_def)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2107
    then show "c divides a" by (rule fmsubset_divides) fact+
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2108
  next
64587
8355a6e2df79 standardized notation
haftmann
parents: 63919
diff changeset
  2109
    from csmset have "fmset G cs \<subseteq># fmset G bs"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2110
      by (simp add: multiset_inter_def subseteq_mset_def, force)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2111
    then show "c divides b"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2112
      by (rule fmsubset_divides) fact+
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2113
  next
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2114
    fix y
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2115
    assume "y \<in> carrier G"
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2116
    from wfactors_exist [OF this]
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2117
    obtain ys where yscarr: "set ys \<subseteq> carrier G" and yfs: "wfactors G ys y"
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2118
      by blast
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2119
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2120
    assume "y divides a"
64587
8355a6e2df79 standardized notation
haftmann
parents: 63919
diff changeset
  2121
    then have ya: "fmset G ys \<subseteq># fmset G as"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2122
      by (rule divides_fmsubset) fact+
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2123
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2124
    assume "y divides b"
64587
8355a6e2df79 standardized notation
haftmann
parents: 63919
diff changeset
  2125
    then have yb: "fmset G ys \<subseteq># fmset G bs"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2126
      by (rule divides_fmsubset) fact+
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2127
64587
8355a6e2df79 standardized notation
haftmann
parents: 63919
diff changeset
  2128
    from ya yb csmset have "fmset G ys \<subseteq># fmset G cs"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2129
      by (simp add: subset_mset_def)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2130
    then show "y divides c"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2131
      by (rule fmsubset_divides) fact+
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2132
  qed
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2133
  with ccarr show "\<exists>c. c \<in> carrier G \<and> c gcdof a b"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2134
    by fast
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2135
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2136
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2137
lemma (in factorial_monoid) lcmof_exists:
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2138
  assumes acarr: "a \<in> carrier G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2139
    and bcarr: "b \<in> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2140
  shows "\<exists>c. c \<in> carrier G \<and> c lcmof a b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2141
proof -
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2142
  from wfactors_exist [OF acarr]
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2143
  obtain as where ascarr: "set as \<subseteq> carrier G" and afs: "wfactors G as a"
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2144
    by blast
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2145
  from afs have airr: "\<forall>a \<in> set as. irreducible G a"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2146
    by (fast elim: wfactorsE)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2147
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2148
  from wfactors_exist [OF bcarr]
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2149
  obtain bs where bscarr: "set bs \<subseteq> carrier G" and bfs: "wfactors G bs b"
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2150
    by blast
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2151
  from bfs have birr: "\<forall>b \<in> set bs. irreducible G b"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2152
    by (fast elim: wfactorsE)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2153
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2154
  have "\<exists>c cs. c \<in> carrier G \<and> set cs \<subseteq> carrier G \<and> wfactors G cs c \<and>
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2155
    fmset G cs = (fmset G as - fmset G bs) + fmset G bs"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2156
  proof (intro mset_wfactorsEx)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2157
    fix X
62430
9527ff088c15 more succint formulation of membership for multisets, similar to lists;
haftmann
parents: 61382
diff changeset
  2158
    assume "X \<in># (fmset G as - fmset G bs) + fmset G bs"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2159
    then have "X \<in># fmset G as \<or> X \<in># fmset G bs"
62430
9527ff088c15 more succint formulation of membership for multisets, similar to lists;
haftmann
parents: 61382
diff changeset
  2160
      by (auto dest: in_diffD)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2161
    then consider "X \<in> set_mset (fmset G as)" | "X \<in> set_mset (fmset G bs)"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2162
      by fast
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2163
    then show "\<exists>x. (x \<in> carrier G \<and> irreducible G x) \<and> X = assocs G x"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2164
    proof cases
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2165
      case 1
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2166
      then have "X \<in> set (map (assocs G) as)" by (simp add: fmset_def)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2167
      then have "\<exists>x. x \<in> set as \<and> X = assocs G x" by (induct as) auto
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2168
      then obtain x where xas: "x \<in> set as" and X: "X = assocs G x" by auto
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2169
      with ascarr have xcarr: "x \<in> carrier G" by fast
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2170
      from xas airr have xirr: "irreducible G x" by simp
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2171
      from xcarr and xirr and X show ?thesis by fast
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2172
    next
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2173
      case 2
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2174
      then have "X \<in> set (map (assocs G) bs)" by (simp add: fmset_def)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2175
      then have "\<exists>x. x \<in> set bs \<and> X = assocs G x" by (induct as) auto
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2176
      then obtain x where xbs: "x \<in> set bs" and X: "X = assocs G x" by auto
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2177
      with bscarr have xcarr: "x \<in> carrier G" by fast
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2178
      from xbs birr have xirr: "irreducible G x" by simp
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2179
      from xcarr and xirr and X show ?thesis by fast
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2180
    qed
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2181
  qed
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2182
  then obtain c cs
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2183
    where ccarr: "c \<in> carrier G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2184
      and cscarr: "set cs \<subseteq> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2185
      and csirr: "wfactors G cs c"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2186
      and csmset: "fmset G cs = fmset G as - fmset G bs + fmset G bs"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2187
    by auto
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2188
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2189
  have "c lcmof a b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2190
  proof (simp add: islcm_def, safe)
64587
8355a6e2df79 standardized notation
haftmann
parents: 63919
diff changeset
  2191
    from csmset have "fmset G as \<subseteq># fmset G cs"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2192
      by (simp add: subseteq_mset_def, force)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2193
    then show "a divides c"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2194
      by (rule fmsubset_divides) fact+
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2195
  next
64587
8355a6e2df79 standardized notation
haftmann
parents: 63919
diff changeset
  2196
    from csmset have "fmset G bs \<subseteq># fmset G cs"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2197
      by (simp add: subset_mset_def)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2198
    then show "b divides c"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2199
      by (rule fmsubset_divides) fact+
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2200
  next
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2201
    fix y
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2202
    assume "y \<in> carrier G"
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2203
    from wfactors_exist [OF this]
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2204
    obtain ys where yscarr: "set ys \<subseteq> carrier G" and yfs: "wfactors G ys y"
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2205
      by blast
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2206
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2207
    assume "a divides y"
64587
8355a6e2df79 standardized notation
haftmann
parents: 63919
diff changeset
  2208
    then have ya: "fmset G as \<subseteq># fmset G ys"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2209
      by (rule divides_fmsubset) fact+
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2210
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2211
    assume "b divides y"
64587
8355a6e2df79 standardized notation
haftmann
parents: 63919
diff changeset
  2212
    then have yb: "fmset G bs \<subseteq># fmset G ys"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2213
      by (rule divides_fmsubset) fact+
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2214
64587
8355a6e2df79 standardized notation
haftmann
parents: 63919
diff changeset
  2215
    from ya yb csmset have "fmset G cs \<subseteq># fmset G ys"
68474
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  2216
      using subset_eq_diff_conv subset_mset.le_diff_conv2 by fastforce
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2217
    then show "c divides y"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2218
      by (rule fmsubset_divides) fact+
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2219
  qed
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2220
  with ccarr show "\<exists>c. c \<in> carrier G \<and> c lcmof a b"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2221
    by fast
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2222
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2223
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2224
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
  2225
subsection \<open>Conditions for Factoriality\<close>
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
  2226
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
  2227
subsubsection \<open>Gcd condition\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2228
27713
95b36bfe7fc4 New locales for orders and lattices where the equivalence relation is not restricted to equality.
ballarin
parents: 27701
diff changeset
  2229
lemma (in gcd_condition_monoid) division_weak_lower_semilattice [simp]:
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2230
  "weak_lower_semilattice (division_rel G)"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2231
proof -
29237
e90d9d51106b More porting to new locales.
ballarin
parents: 28823
diff changeset
  2232
  interpret weak_partial_order "division_rel G" ..
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2233
  show ?thesis
68474
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  2234
  proof (unfold_locales, simp_all)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2235
    fix x y
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2236
    assume carr: "x \<in> carrier G"  "y \<in> carrier G"
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2237
    from gcdof_exists [OF this] obtain z where zcarr: "z \<in> carrier G" and isgcd: "z gcdof x y"
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2238
      by blast
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2239
    with carr have "greatest (division_rel G) z (Lower (division_rel G) {x, y})"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2240
      by (subst gcdof_greatestLower[symmetric], simp+)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2241
    then show "\<exists>z. greatest (division_rel G) z (Lower (division_rel G) {x, y})"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2242
      by fast
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2243
  qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2244
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2245
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2246
lemma (in gcd_condition_monoid) gcdof_cong_l:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2247
  assumes a'a: "a' \<sim> a"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2248
    and agcd: "a gcdof b c"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2249
    and a'carr: "a' \<in> carrier G" and carr': "a \<in> carrier G"  "b \<in> carrier G"  "c \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2250
  shows "a' gcdof b c"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2251
proof -
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2252
  note carr = a'carr carr'
29237
e90d9d51106b More porting to new locales.
ballarin
parents: 28823
diff changeset
  2253
  interpret weak_lower_semilattice "division_rel G" by simp
68474
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  2254
  have "is_glb (division_rel G) a' {b, c}"
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  2255
    by (subst greatest_Lower_cong_l[of _ a]) (simp_all add: a'a carr gcdof_greatestLower[symmetric] agcd)
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  2256
  then have "a' \<in> carrier G \<and> a' gcdof b c"
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  2257
    by (simp add: gcdof_greatestLower carr')
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2258
  then show ?thesis ..
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2259
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2260
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2261
lemma (in gcd_condition_monoid) gcd_closed [simp]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2262
  assumes carr: "a \<in> carrier G"  "b \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2263
  shows "somegcd G a b \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2264
proof -
29237
e90d9d51106b More porting to new locales.
ballarin
parents: 28823
diff changeset
  2265
  interpret weak_lower_semilattice "division_rel G" by simp
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2266
  show ?thesis
27713
95b36bfe7fc4 New locales for orders and lattices where the equivalence relation is not restricted to equality.
ballarin
parents: 27701
diff changeset
  2267
    apply (simp add: somegcd_meet[OF carr])
95b36bfe7fc4 New locales for orders and lattices where the equivalence relation is not restricted to equality.
ballarin
parents: 27701
diff changeset
  2268
    apply (rule meet_closed[simplified], fact+)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2269
    done
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2270
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2271
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2272
lemma (in gcd_condition_monoid) gcd_isgcd:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2273
  assumes carr: "a \<in> carrier G"  "b \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2274
  shows "(somegcd G a b) gcdof a b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2275
proof -
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2276
  interpret weak_lower_semilattice "division_rel G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2277
    by simp
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2278
  from carr have "somegcd G a b \<in> carrier G \<and> (somegcd G a b) gcdof a b"
68474
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  2279
    by (simp add: gcdof_greatestLower inf_of_two_greatest meet_def somegcd_meet)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2280
  then show "(somegcd G a b) gcdof a b"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2281
    by simp
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2282
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2283
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2284
lemma (in gcd_condition_monoid) gcd_exists:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2285
  assumes carr: "a \<in> carrier G"  "b \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2286
  shows "\<exists>x\<in>carrier G. x = somegcd G a b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2287
proof -
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2288
  interpret weak_lower_semilattice "division_rel G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2289
    by simp
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2290
  show ?thesis
55242
413ec965f95d Number_Theory: prime is no longer overloaded, but only for nat. Automatic coercion to int enabled.
paulson <lp15@cam.ac.uk>
parents: 53374
diff changeset
  2291
    by (metis carr(1) carr(2) gcd_closed)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2292
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2293
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2294
lemma (in gcd_condition_monoid) gcd_divides_l:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2295
  assumes carr: "a \<in> carrier G"  "b \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2296
  shows "(somegcd G a b) divides a"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2297
proof -
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2298
  interpret weak_lower_semilattice "division_rel G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2299
    by simp
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2300
  show ?thesis
55242
413ec965f95d Number_Theory: prime is no longer overloaded, but only for nat. Automatic coercion to int enabled.
paulson <lp15@cam.ac.uk>
parents: 53374
diff changeset
  2301
    by (metis carr(1) carr(2) gcd_isgcd isgcd_def)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2302
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2303
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2304
lemma (in gcd_condition_monoid) gcd_divides_r:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2305
  assumes carr: "a \<in> carrier G"  "b \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2306
  shows "(somegcd G a b) divides b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2307
proof -
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2308
  interpret weak_lower_semilattice "division_rel G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2309
    by simp
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2310
  show ?thesis
55242
413ec965f95d Number_Theory: prime is no longer overloaded, but only for nat. Automatic coercion to int enabled.
paulson <lp15@cam.ac.uk>
parents: 53374
diff changeset
  2311
    by (metis carr gcd_isgcd isgcd_def)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2312
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2313
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2314
lemma (in gcd_condition_monoid) gcd_divides:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2315
  assumes sub: "z divides x"  "z divides y"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2316
    and L: "x \<in> carrier G"  "y \<in> carrier G"  "z \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2317
  shows "z divides (somegcd G x y)"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2318
proof -
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2319
  interpret weak_lower_semilattice "division_rel G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2320
    by simp
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2321
  show ?thesis
55242
413ec965f95d Number_Theory: prime is no longer overloaded, but only for nat. Automatic coercion to int enabled.
paulson <lp15@cam.ac.uk>
parents: 53374
diff changeset
  2322
    by (metis gcd_isgcd isgcd_def assms)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2323
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2324
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2325
lemma (in gcd_condition_monoid) gcd_cong_l:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2326
  assumes xx': "x \<sim> x'"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2327
    and carr: "x \<in> carrier G"  "x' \<in> carrier G"  "y \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2328
  shows "somegcd G x y \<sim> somegcd G x' y"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2329
proof -
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2330
  interpret weak_lower_semilattice "division_rel G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2331
    by simp
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2332
  show ?thesis
27713
95b36bfe7fc4 New locales for orders and lattices where the equivalence relation is not restricted to equality.
ballarin
parents: 27701
diff changeset
  2333
    apply (simp add: somegcd_meet carr)
95b36bfe7fc4 New locales for orders and lattices where the equivalence relation is not restricted to equality.
ballarin
parents: 27701
diff changeset
  2334
    apply (rule meet_cong_l[simplified], fact+)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2335
    done
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2336
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2337
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2338
lemma (in gcd_condition_monoid) gcd_cong_r:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2339
  assumes carr: "x \<in> carrier G"  "y \<in> carrier G"  "y' \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2340
    and yy': "y \<sim> y'"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2341
  shows "somegcd G x y \<sim> somegcd G x y'"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2342
proof -
29237
e90d9d51106b More porting to new locales.
ballarin
parents: 28823
diff changeset
  2343
  interpret weak_lower_semilattice "division_rel G" by simp
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2344
  show ?thesis
27713
95b36bfe7fc4 New locales for orders and lattices where the equivalence relation is not restricted to equality.
ballarin
parents: 27701
diff changeset
  2345
    apply (simp add: somegcd_meet carr)
95b36bfe7fc4 New locales for orders and lattices where the equivalence relation is not restricted to equality.
ballarin
parents: 27701
diff changeset
  2346
    apply (rule meet_cong_r[simplified], fact+)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2347
    done
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2348
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2349
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2350
(*
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2351
lemma (in gcd_condition_monoid) asc_cong_gcd_l [intro]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2352
  assumes carr: "b \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2353
  shows "asc_cong (\<lambda>a. somegcd G a b)"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2354
using carr
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2355
unfolding CONG_def
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2356
by clarsimp (blast intro: gcd_cong_l)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2357
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2358
lemma (in gcd_condition_monoid) asc_cong_gcd_r [intro]:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2359
  assumes carr: "a \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2360
  shows "asc_cong (\<lambda>b. somegcd G a b)"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2361
using carr
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2362
unfolding CONG_def
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2363
by clarsimp (blast intro: gcd_cong_r)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2364
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2365
lemmas (in gcd_condition_monoid) asc_cong_gcd_split [simp] =
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2366
    assoc_split[OF _ asc_cong_gcd_l] assoc_split[OF _ asc_cong_gcd_r]
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2367
*)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2368
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2369
lemma (in gcd_condition_monoid) gcdI:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2370
  assumes dvd: "a divides b"  "a divides c"
68474
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  2371
    and others: "\<And>y. \<lbrakk>y\<in>carrier G; y divides b; y divides c\<rbrakk> \<Longrightarrow> y divides a"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2372
    and acarr: "a \<in> carrier G" and bcarr: "b \<in> carrier G" and ccarr: "c \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2373
  shows "a \<sim> somegcd G b c"
68474
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  2374
proof -
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  2375
  have "\<exists>a. a \<in> carrier G \<and> a gcdof b c"
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  2376
    by (simp add: bcarr ccarr gcdof_exists)
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  2377
  moreover have "\<And>x. x \<in> carrier G \<and> x gcdof b c \<Longrightarrow> a \<sim> x"
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  2378
    by (simp add: acarr associated_def dvd isgcd_def others)
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  2379
  ultimately show ?thesis
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  2380
    unfolding somegcd_def by (blast intro: someI2_ex)
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  2381
qed
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2382
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2383
lemma (in gcd_condition_monoid) gcdI2:
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2384
  assumes "a gcdof b c" and "a \<in> carrier G" and "b \<in> carrier G" and "c \<in> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2385
  shows "a \<sim> somegcd G b c"
68474
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  2386
  using assms unfolding isgcd_def
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  2387
  by (simp add: gcdI)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2388
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2389
lemma (in gcd_condition_monoid) SomeGcd_ex:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2390
  assumes "finite A"  "A \<subseteq> carrier G"  "A \<noteq> {}"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2391
  shows "\<exists>x\<in> carrier G. x = SomeGcd G A"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2392
proof -
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2393
  interpret weak_lower_semilattice "division_rel G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2394
    by simp
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2395
  show ?thesis
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2396
    apply (simp add: SomeGcd_def)
27713
95b36bfe7fc4 New locales for orders and lattices where the equivalence relation is not restricted to equality.
ballarin
parents: 27701
diff changeset
  2397
    apply (rule finite_inf_closed[simplified], fact+)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2398
    done
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2399
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2400
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2401
lemma (in gcd_condition_monoid) gcd_assoc:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2402
  assumes carr: "a \<in> carrier G"  "b \<in> carrier G"  "c \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2403
  shows "somegcd G (somegcd G a b) c \<sim> somegcd G a (somegcd G b c)"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2404
proof -
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2405
  interpret weak_lower_semilattice "division_rel G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2406
    by simp
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2407
  show ?thesis
68488
dfbd80c3d180 more modernisaton and de-applying
paulson <lp15@cam.ac.uk>
parents: 68478
diff changeset
  2408
    unfolding associated_def
dfbd80c3d180 more modernisaton and de-applying
paulson <lp15@cam.ac.uk>
parents: 68478
diff changeset
  2409
    by (meson carr divides_trans gcd_divides gcd_divides_l gcd_divides_r gcd_exists)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2410
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2411
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2412
lemma (in gcd_condition_monoid) gcd_mult:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2413
  assumes acarr: "a \<in> carrier G" and bcarr: "b \<in> carrier G" and ccarr: "c \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2414
  shows "c \<otimes> somegcd G a b \<sim> somegcd G (c \<otimes> a) (c \<otimes> b)"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2415
proof - (* following Jacobson, Basic Algebra, p.140 *)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2416
  let ?d = "somegcd G a b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2417
  let ?e = "somegcd G (c \<otimes> a) (c \<otimes> b)"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2418
  note carr[simp] = acarr bcarr ccarr
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2419
  have dcarr: "?d \<in> carrier G" by simp
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2420
  have ecarr: "?e \<in> carrier G" by simp
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2421
  note carr = carr dcarr ecarr
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2422
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2423
  have "?d divides a" by (simp add: gcd_divides_l)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2424
  then have cd'ca: "c \<otimes> ?d divides (c \<otimes> a)" by (simp add: divides_mult_lI)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2425
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2426
  have "?d divides b" by (simp add: gcd_divides_r)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2427
  then have cd'cb: "c \<otimes> ?d divides (c \<otimes> b)" by (simp add: divides_mult_lI)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2428
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2429
  from cd'ca cd'cb have cd'e: "c \<otimes> ?d divides ?e"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2430
    by (rule gcd_divides) simp_all
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2431
  then obtain u where ucarr[simp]: "u \<in> carrier G" and e_cdu: "?e = c \<otimes> ?d \<otimes> u"
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2432
    by blast
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2433
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2434
  note carr = carr ucarr
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2435
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2436
  have "?e divides c \<otimes> a" by (rule gcd_divides_l) simp_all
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2437
  then obtain x where xcarr: "x \<in> carrier G" and ca_ex: "c \<otimes> a = ?e \<otimes> x"
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2438
    by blast
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2439
  with e_cdu have ca_cdux: "c \<otimes> a = c \<otimes> ?d \<otimes> u \<otimes> x"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2440
    by simp
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2441
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2442
  from ca_cdux xcarr have "c \<otimes> a = c \<otimes> (?d \<otimes> u \<otimes> x)"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2443
    by (simp add: m_assoc)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2444
  then have "a = ?d \<otimes> u \<otimes> x"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2445
    by (rule l_cancel[of c a]) (simp add: xcarr)+
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2446
  then have du'a: "?d \<otimes> u divides a"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2447
    by (rule dividesI[OF xcarr])
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2448
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2449
  have "?e divides c \<otimes> b" by (intro gcd_divides_r) simp_all
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2450
  then obtain x where xcarr: "x \<in> carrier G" and cb_ex: "c \<otimes> b = ?e \<otimes> x"
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2451
    by blast
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2452
  with e_cdu have cb_cdux: "c \<otimes> b = c \<otimes> ?d \<otimes> u \<otimes> x"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2453
    by simp
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2454
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2455
  from cb_cdux xcarr have "c \<otimes> b = c \<otimes> (?d \<otimes> u \<otimes> x)"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2456
    by (simp add: m_assoc)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2457
  with xcarr have "b = ?d \<otimes> u \<otimes> x"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2458
    by (intro l_cancel[of c b]) simp_all
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2459
  then have du'b: "?d \<otimes> u divides b"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2460
    by (intro dividesI[OF xcarr])
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2461
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2462
  from du'a du'b carr have du'd: "?d \<otimes> u divides ?d"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2463
    by (intro gcd_divides) simp_all
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2464
  then have uunit: "u \<in> Units G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2465
  proof (elim dividesE)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2466
    fix v
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2467
    assume vcarr[simp]: "v \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2468
    assume d: "?d = ?d \<otimes> u \<otimes> v"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2469
    have "?d \<otimes> \<one> = ?d \<otimes> u \<otimes> v" by simp fact
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2470
    also have "?d \<otimes> u \<otimes> v = ?d \<otimes> (u \<otimes> v)" by (simp add: m_assoc)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2471
    finally have "?d \<otimes> \<one> = ?d \<otimes> (u \<otimes> v)" .
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2472
    then have i2: "\<one> = u \<otimes> v" by (rule l_cancel) simp_all
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2473
    then have i1: "\<one> = v \<otimes> u" by (simp add: m_comm)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2474
    from vcarr i1[symmetric] i2[symmetric] show "u \<in> Units G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2475
      by (auto simp: Units_def)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2476
  qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2477
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2478
  from e_cdu uunit have "somegcd G (c \<otimes> a) (c \<otimes> b) \<sim> c \<otimes> somegcd G a b"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2479
    by (intro associatedI2[of u]) simp_all
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2480
  from this[symmetric] show "c \<otimes> somegcd G a b \<sim> somegcd G (c \<otimes> a) (c \<otimes> b)"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2481
    by simp
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2482
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2483
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2484
lemma (in monoid) assoc_subst:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2485
  assumes ab: "a \<sim> b"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2486
    and cP: "\<forall>a b. a \<in> carrier G \<and> b \<in> carrier G \<and> a \<sim> b
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2487
      \<longrightarrow> f a \<in> carrier G \<and> f b \<in> carrier G \<and> f a \<sim> f b"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2488
    and carr: "a \<in> carrier G"  "b \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2489
  shows "f a \<sim> f b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2490
  using assms by auto
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2491
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2492
lemma (in gcd_condition_monoid) relprime_mult:
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2493
  assumes abrelprime: "somegcd G a b \<sim> \<one>"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2494
    and acrelprime: "somegcd G a c \<sim> \<one>"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2495
    and carr[simp]: "a \<in> carrier G"  "b \<in> carrier G"  "c \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2496
  shows "somegcd G a (b \<otimes> c) \<sim> \<one>"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2497
proof -
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2498
  have "c = c \<otimes> \<one>" by simp
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2499
  also from abrelprime[symmetric]
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2500
  have "\<dots> \<sim> c \<otimes> somegcd G a b"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2501
    by (rule assoc_subst) (simp add: mult_cong_r)+
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2502
  also have "\<dots> \<sim> somegcd G (c \<otimes> a) (c \<otimes> b)"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2503
    by (rule gcd_mult) fact+
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2504
  finally have c: "c \<sim> somegcd G (c \<otimes> a) (c \<otimes> b)"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2505
    by simp
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2506
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2507
  from carr have a: "a \<sim> somegcd G a (c \<otimes> a)"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2508
    by (fast intro: gcdI divides_prod_l)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2509
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2510
  have "somegcd G a (b \<otimes> c) \<sim> somegcd G a (c \<otimes> b)"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2511
    by (simp add: m_comm)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2512
  also from a have "\<dots> \<sim> somegcd G (somegcd G a (c \<otimes> a)) (c \<otimes> b)"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2513
    by (rule assoc_subst) (simp add: gcd_cong_l)+
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2514
  also from gcd_assoc have "\<dots> \<sim> somegcd G a (somegcd G (c \<otimes> a) (c \<otimes> b))"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2515
    by (rule assoc_subst) simp+
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2516
  also from c[symmetric] have "\<dots> \<sim> somegcd G a c"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2517
    by (rule assoc_subst) (simp add: gcd_cong_r)+
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2518
  also note acrelprime
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2519
  finally show "somegcd G a (b \<otimes> c) \<sim> \<one>"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2520
    by simp
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2521
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2522
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2523
lemma (in gcd_condition_monoid) primeness_condition: "primeness_condition_monoid G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2524
proof -
68478
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2525
  have *: "p divides a \<or> p divides b"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2526
    if pcarr[simp]: "p \<in> carrier G" and acarr[simp]: "a \<in> carrier G" and bcarr[simp]: "b \<in> carrier G"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2527
      and pirr: "irreducible G p" and pdvdab: "p divides a \<otimes> b"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2528
    for p a b
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2529
  proof -
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2530
    from pirr have pnunit: "p \<notin> Units G"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2531
      and r: "\<And>b. \<lbrakk>b \<in> carrier G; properfactor G b p\<rbrakk> \<Longrightarrow> b \<in> Units G"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2532
      by (fast elim: irreducibleE)+
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2533
    show "p divides a \<or> p divides b"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2534
    proof (rule ccontr, clarsimp)
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2535
      assume npdvda: "\<not> p divides a" and npdvdb: "\<not> p divides b"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2536
      have "\<one> \<sim> somegcd G p a"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2537
      proof (intro gcdI unit_divides)
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2538
        show "\<And>y. \<lbrakk>y \<in> carrier G; y divides p; y divides a\<rbrakk> \<Longrightarrow> y \<in> Units G"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2539
          by (meson divides_trans npdvda pcarr properfactorI r)
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2540
      qed auto
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2541
      with pcarr acarr have pa: "somegcd G p a \<sim> \<one>"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2542
        by (fast intro: associated_sym[of "\<one>"] gcd_closed)
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2543
      have "\<one> \<sim> somegcd G p b"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2544
      proof (intro gcdI unit_divides)
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2545
        show "\<And>y. \<lbrakk>y \<in> carrier G; y divides p; y divides b\<rbrakk> \<Longrightarrow> y \<in> Units G"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2546
          by (meson divides_trans npdvdb pcarr properfactorI r)
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2547
      qed auto
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2548
      with pcarr bcarr have pb: "somegcd G p b \<sim> \<one>"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2549
        by (fast intro: associated_sym[of "\<one>"] gcd_closed)
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2550
      have "p \<sim> somegcd G p (a \<otimes> b)"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2551
        using pdvdab by (simp add: gcdI2 isgcd_divides_l)
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2552
      also from pa pb pcarr acarr bcarr have "somegcd G p (a \<otimes> b) \<sim> \<one>"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2553
        by (rule relprime_mult)
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2554
      finally have "p \<sim> \<one>"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2555
        by simp
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2556
      with pcarr have "p \<in> Units G"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2557
        by (fast intro: assoc_unit_l)
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2558
      with pnunit show False ..
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2559
    qed
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2560
  qed
68478
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2561
  show ?thesis
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2562
    by unfold_locales (metis * primeI irreducibleE)
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2563
qed    
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2564
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2565
29237
e90d9d51106b More porting to new locales.
ballarin
parents: 28823
diff changeset
  2566
sublocale gcd_condition_monoid \<subseteq> primeness_condition_monoid
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2567
  by (rule primeness_condition)
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2568
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2569
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
  2570
subsubsection \<open>Divisor chain condition\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2571
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2572
lemma (in divisor_chain_condition_monoid) wfactors_exist:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2573
  assumes acarr: "a \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2574
  shows "\<exists>as. set as \<subseteq> carrier G \<and> wfactors G as a"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2575
proof -
68478
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2576
  have r: "a \<in> carrier G \<Longrightarrow> (\<exists>as. set as \<subseteq> carrier G \<and> wfactors G as a)"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2577
    using division_wellfounded
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2578
  proof (induction rule: wf_induct_rule)
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2579
    case (less x)
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2580
    then have xcarr: "x \<in> carrier G"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2581
      by auto
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2582
    show ?case
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2583
    proof (cases "x \<in> Units G")
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2584
      case True
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2585
      then show ?thesis
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2586
        by (metis bot.extremum list.set(1) unit_wfactors)
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2587
    next
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2588
      case xnunit: False
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2589
      show ?thesis
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2590
      proof (cases "irreducible G x")
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2591
        case True
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2592
        then show ?thesis
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2593
          by (rule_tac x="[x]" in exI) (simp add: wfactors_def xcarr)
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2594
      next
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2595
        case False
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2596
        then obtain y where ycarr: "y \<in> carrier G" and ynunit: "y \<notin> Units G" and pfyx: "properfactor G y x"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2597
          by (meson irreducible_def xnunit)
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2598
        obtain ys where yscarr: "set ys \<subseteq> carrier G" and yfs: "wfactors G ys y"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2599
          using less ycarr pfyx by blast
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2600
        then obtain z where zcarr: "z \<in> carrier G" and x: "x = y \<otimes> z"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2601
          by (meson dividesE pfyx properfactorE2)
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2602
        from zcarr ycarr have "properfactor G z x"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2603
          using m_comm properfactorI3 x ynunit by blast
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2604
        with less zcarr obtain zs where zscarr: "set zs \<subseteq> carrier G" and zfs: "wfactors G zs z"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2605
          by blast
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2606
        from yscarr zscarr have xscarr: "set (ys@zs) \<subseteq> carrier G"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2607
          by simp
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2608
        have "wfactors G (ys@zs) (y\<otimes>z)"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2609
          using xscarr ycarr yfs zcarr zfs by auto
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2610
        then have "wfactors G (ys@zs) x"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2611
          by (simp add: x)
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2612
        with xscarr show "\<exists>xs. set xs \<subseteq> carrier G \<and> wfactors G xs x"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2613
          by fast
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2614
      qed
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2615
    qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2616
  qed
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2617
  from acarr show ?thesis by (rule r)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2618
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2619
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2620
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
  2621
subsubsection \<open>Primeness condition\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2622
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2623
lemma (in comm_monoid_cancel) multlist_prime_pos:
68478
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2624
  assumes aprime: "prime G a" and carr: "a \<in> carrier G" 
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2625
     and as: "set as \<subseteq> carrier G" "a divides (foldr (\<otimes>) as \<one>)"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2626
   shows "\<exists>i<length as. a divides (as!i)"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2627
  using as
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2628
proof (induction as)
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2629
  case Nil
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2630
  then show ?case
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2631
    by simp (meson Units_one_closed aprime carr divides_unit primeE)
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2632
next
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2633
  case (Cons x as)
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2634
  then have "x \<in> carrier G"  "set as \<subseteq> carrier G" and "a divides x \<otimes> foldr (\<otimes>) as \<one>"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2635
    by (auto simp: )
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2636
  with carr aprime have "a divides x \<or> a divides foldr (\<otimes>) as \<one>"
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2637
    by (intro prime_divides) simp+
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2638
  then show ?case
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2639
    using Cons.IH Cons.prems(1) by force
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2640
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2641
68478
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2642
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2643
lemma (in primeness_condition_monoid) wfactors_unique__hlp_induct:
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2644
  "\<forall>a as'. a \<in> carrier G \<and> set as \<subseteq> carrier G \<and> set as' \<subseteq> carrier G \<and>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2645
           wfactors G as a \<and> wfactors G as' a \<longrightarrow> essentially_equal G as as'"
46129
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2646
proof (induct as)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2647
  case Nil
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2648
  show ?case
68478
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2649
    apply (clarsimp simp: wfactors_def)
f75a7d2be8c5 de-applying Divisibility
paulson <lp15@cam.ac.uk>
parents: 68474
diff changeset
  2650
    by (metis Units_one_closed assoc_unit_r list_update_nonempty unit_wfactors_empty unitfactor_ee wfactorsI)
46129
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2651
next
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2652
  case (Cons ah as)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2653
  then show ?case
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2654
  proof clarsimp
46129
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2655
    fix a as'
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2656
    assume ih [rule_format]:
46129
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2657
      "\<forall>a as'. a \<in> carrier G \<and> set as' \<subseteq> carrier G \<and> wfactors G as a \<and>
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2658
        wfactors G as' a \<longrightarrow> essentially_equal G as as'"
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2659
      and acarr: "a \<in> carrier G" and ahcarr: "ah \<in> carrier G"
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2660
      and ascarr: "set as \<subseteq> carrier G" and as'carr: "set as' \<subseteq> carrier G"
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2661
      and afs: "wfactors G (ah # as) a"
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2662
      and afs': "wfactors G as' a"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2663
    then have ahdvda: "ah divides a"
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2664
      by (intro wfactors_dividesI[of "ah#as" "a"]) simp_all
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2665
    then obtain a' where a'carr: "a' \<in> carrier G" and a: "a = ah \<otimes> a'"
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2666
      by blast
46129
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2667
    have a'fs: "wfactors G as a'"
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2668
      apply (rule wfactorsE[OF afs], rule wfactorsI, simp)
68488
dfbd80c3d180 more modernisaton and de-applying
paulson <lp15@cam.ac.uk>
parents: 68478
diff changeset
  2669
      by (metis a a'carr ahcarr ascarr assoc_l_cancel factorsI factors_def factors_mult_single list.set_intros(1) list.set_intros(2) multlist_closed)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2670
    from afs have ahirr: "irreducible G ah"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2671
      by (elim wfactorsE) simp
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2672
    with ascarr have ahprime: "prime G ah"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2673
      by (intro irreducible_prime ahcarr)
46129
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2674
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2675
    note carr [simp] = acarr ahcarr ascarr as'carr a'carr
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2676
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2677
    note ahdvda
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67343
diff changeset
  2678
    also from afs' have "a divides (foldr (\<otimes>) as' \<one>)"
46129
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2679
      by (elim wfactorsE associatedE, simp)
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67343
diff changeset
  2680
    finally have "ah divides (foldr (\<otimes>) as' \<one>)"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2681
      by simp
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2682
    with ahprime have "\<exists>i<length as'. ah divides as'!i"
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2683
      by (intro multlist_prime_pos) simp_all
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2684
    then obtain i where len: "i<length as'" and ahdvd: "ah divides as'!i"
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2685
      by blast
46129
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2686
    from afs' carr have irrasi: "irreducible G (as'!i)"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2687
      by (fast intro: nth_mem[OF len] elim: wfactorsE)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2688
    from len carr have asicarr[simp]: "as'!i \<in> carrier G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2689
      unfolding set_conv_nth by force
46129
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2690
    note carr = carr asicarr
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2691
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2692
    from ahdvd obtain x where "x \<in> carrier G" and asi: "as'!i = ah \<otimes> x"
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2693
      by blast
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2694
    with carr irrasi[simplified asi] have asiah: "as'!i \<sim> ah"
68488
dfbd80c3d180 more modernisaton and de-applying
paulson <lp15@cam.ac.uk>
parents: 68478
diff changeset
  2695
      by (metis ahprime associatedI2 irreducible_prodE primeE)
46129
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2696
    note setparts = set_take_subset[of i as'] set_drop_subset[of "Suc i" as']
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2697
    note partscarr [simp] = setparts[THEN subset_trans[OF _ as'carr]]
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2698
    note carr = carr partscarr
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2699
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2700
    have "\<exists>aa_1. aa_1 \<in> carrier G \<and> wfactors G (take i as') aa_1"
68488
dfbd80c3d180 more modernisaton and de-applying
paulson <lp15@cam.ac.uk>
parents: 68478
diff changeset
  2701
      by (meson afs' in_set_takeD partscarr(1) wfactorsE wfactors_prod_exists)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2702
    then obtain aa_1 where aa1carr: "aa_1 \<in> carrier G" and aa1fs: "wfactors G (take i as') aa_1"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2703
      by auto
46129
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2704
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2705
    have "\<exists>aa_2. aa_2 \<in> carrier G \<and> wfactors G (drop (Suc i) as') aa_2"
68488
dfbd80c3d180 more modernisaton and de-applying
paulson <lp15@cam.ac.uk>
parents: 68478
diff changeset
  2706
      by (meson afs' in_set_dropD partscarr(2) wfactors_def wfactors_prod_exists)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2707
    then obtain aa_2 where aa2carr: "aa_2 \<in> carrier G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2708
      and aa2fs: "wfactors G (drop (Suc i) as') aa_2"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2709
      by auto
46129
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2710
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2711
    note carr = carr aa1carr[simp] aa2carr[simp]
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2712
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2713
    from aa1fs aa2fs
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2714
    have v1: "wfactors G (take i as' @ drop (Suc i) as') (aa_1 \<otimes> aa_2)"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2715
      by (intro wfactors_mult, simp+)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2716
    then have v1': "wfactors G (as'!i # take i as' @ drop (Suc i) as') (as'!i \<otimes> (aa_1 \<otimes> aa_2))"
68488
dfbd80c3d180 more modernisaton and de-applying
paulson <lp15@cam.ac.uk>
parents: 68478
diff changeset
  2717
      using irrasi wfactors_mult_single by auto
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2718
    from aa2carr carr aa1fs aa2fs have "wfactors G (as'!i # drop (Suc i) as') (as'!i \<otimes> aa_2)"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2719
      by (metis irrasi wfactors_mult_single)
46129
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2720
    with len carr aa1carr aa2carr aa1fs
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2721
    have v2: "wfactors G (take i as' @ as'!i # drop (Suc i) as') (aa_1 \<otimes> (as'!i \<otimes> aa_2))"
68488
dfbd80c3d180 more modernisaton and de-applying
paulson <lp15@cam.ac.uk>
parents: 68478
diff changeset
  2722
      using wfactors_mult by auto
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2723
    from len have as': "as' = (take i as' @ as'!i # drop (Suc i) as')"
58247
98d0f85d247f enamed drop_Suc_conv_tl and nth_drop' to Cons_nth_drop_Suc
nipkow
parents: 57865
diff changeset
  2724
      by (simp add: Cons_nth_drop_Suc)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2725
    with carr have eer: "essentially_equal G (take i as' @ as'!i # drop (Suc i) as') as'"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2726
      by simp
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2727
    with v2 afs' carr aa1carr aa2carr nth_mem[OF len] have "aa_1 \<otimes> (as'!i \<otimes> aa_2) \<sim> a"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2728
      by (metis as' ee_wfactorsD m_closed)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2729
    then have t1: "as'!i \<otimes> (aa_1 \<otimes> aa_2) \<sim> a"
55242
413ec965f95d Number_Theory: prime is no longer overloaded, but only for nat. Automatic coercion to int enabled.
paulson <lp15@cam.ac.uk>
parents: 53374
diff changeset
  2730
      by (metis aa1carr aa2carr asicarr m_lcomm)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2731
    from carr asiah have "ah \<otimes> (aa_1 \<otimes> aa_2) \<sim> as'!i \<otimes> (aa_1 \<otimes> aa_2)"
55242
413ec965f95d Number_Theory: prime is no longer overloaded, but only for nat. Automatic coercion to int enabled.
paulson <lp15@cam.ac.uk>
parents: 53374
diff changeset
  2732
      by (metis associated_sym m_closed mult_cong_l)
46129
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2733
    also note t1
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2734
    finally have "ah \<otimes> (aa_1 \<otimes> aa_2) \<sim> a" by simp
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2735
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2736
    with carr aa1carr aa2carr a'carr nth_mem[OF len] have a': "aa_1 \<otimes> aa_2 \<sim> a'"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2737
      by (simp add: a, fast intro: assoc_l_cancel[of ah _ a'])
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2738
46129
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2739
    note v1
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2740
    also note a'
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2741
    finally have "wfactors G (take i as' @ drop (Suc i) as') a'"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2742
      by simp
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2743
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2744
    from a'fs this carr have "essentially_equal G as (take i as' @ drop (Suc i) as')"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2745
      by (intro ih[of a']) simp
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2746
    then have ee1: "essentially_equal G (ah # as) (ah # take i as' @ drop (Suc i) as')"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2747
      by (elim essentially_equalE) (fastforce intro: essentially_equalI)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2748
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2749
    from carr have ee2: "essentially_equal G (ah # take i as' @ drop (Suc i) as')
46129
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2750
      (as' ! i # take i as' @ drop (Suc i) as')"
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2751
    proof (intro essentially_equalI)
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2752
      show "ah # take i as' @ drop (Suc i) as' <~~> ah # take i as' @ drop (Suc i) as'"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2753
        by simp
46129
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2754
    next
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2755
      show "ah # take i as' @ drop (Suc i) as' [\<sim>] as' ! i # take i as' @ drop (Suc i) as'"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2756
        by (simp add: list_all2_append) (simp add: asiah[symmetric])
46129
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2757
    qed
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2758
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2759
    note ee1
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2760
    also note ee2
229fcbebf732 tuned proofs
haftmann
parents: 44890
diff changeset
  2761
    also have "essentially_equal G (as' ! i # take i as' @ drop (Suc i) as')
68488
dfbd80c3d180 more modernisaton and de-applying
paulson <lp15@cam.ac.uk>
parents: 68478
diff changeset
  2762
                                   (take i as' @ as' ! i # drop (Suc i) as')"
dfbd80c3d180 more modernisaton and de-applying
paulson <lp15@cam.ac.uk>
parents: 68478
diff changeset
  2763
      by (metis as' as'carr listassoc_refl essentially_equalI perm_append_Cons)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2764
    finally have "essentially_equal G (ah # as) (take i as' @ as' ! i # drop (Suc i) as')"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2765
      by simp
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2766
    then show "essentially_equal G (ah # as) as'"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2767
      by (subst as')
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2768
  qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2769
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2770
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2771
lemma (in primeness_condition_monoid) wfactors_unique:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2772
  assumes "wfactors G as a"  "wfactors G as' a"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2773
    and "a \<in> carrier G"  "set as \<subseteq> carrier G"  "set as' \<subseteq> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2774
  shows "essentially_equal G as as'"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2775
  by (rule wfactors_unique__hlp_induct[rule_format, of a]) (simp add: assms)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2776
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2777
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
  2778
subsubsection \<open>Application to factorial monoids\<close>
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
  2779
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
  2780
text \<open>Number of factors for wellfoundedness\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2781
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2782
definition factorcount :: "_ \<Rightarrow> 'a \<Rightarrow> nat"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2783
  where "factorcount G a =
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2784
    (THE c. \<forall>as. set as \<subseteq> carrier G \<and> wfactors G as a \<longrightarrow> c = length as)"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2785
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2786
lemma (in monoid) ee_length:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2787
  assumes ee: "essentially_equal G as bs"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2788
  shows "length as = length bs"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2789
  by (rule essentially_equalE[OF ee]) (metis list_all2_conv_all_nth perm_length)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2790
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2791
lemma (in factorial_monoid) factorcount_exists:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2792
  assumes carr[simp]: "a \<in> carrier G"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2793
  shows "\<exists>c. \<forall>as. set as \<subseteq> carrier G \<and> wfactors G as a \<longrightarrow> c = length as"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2794
proof -
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2795
  have "\<exists>as. set as \<subseteq> carrier G \<and> wfactors G as a"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2796
    by (intro wfactors_exist) simp
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2797
  then obtain as where ascarr[simp]: "set as \<subseteq> carrier G" and afs: "wfactors G as a"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2798
    by (auto simp del: carr)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2799
  have "\<forall>as'. set as' \<subseteq> carrier G \<and> wfactors G as' a \<longrightarrow> length as = length as'"
36278
6b330b1fa0c0 Tidied up using s/l
paulson
parents: 35849
diff changeset
  2800
    by (metis afs ascarr assms ee_length wfactors_unique)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2801
  then show "\<exists>c. \<forall>as'. set as' \<subseteq> carrier G \<and> wfactors G as' a \<longrightarrow> c = length as'" ..
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2802
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2803
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2804
lemma (in factorial_monoid) factorcount_unique:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2805
  assumes afs: "wfactors G as a"
68488
dfbd80c3d180 more modernisaton and de-applying
paulson <lp15@cam.ac.uk>
parents: 68478
diff changeset
  2806
    and acarr[simp]: "a \<in> carrier G" and ascarr: "set as \<subseteq> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2807
  shows "factorcount G a = length as"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2808
proof -
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2809
  have "\<exists>ac. \<forall>as. set as \<subseteq> carrier G \<and> wfactors G as a \<longrightarrow> ac = length as"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2810
    by (rule factorcount_exists) simp
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2811
  then obtain ac where alen: "\<forall>as. set as \<subseteq> carrier G \<and> wfactors G as a \<longrightarrow> ac = length as"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2812
    by auto
68488
dfbd80c3d180 more modernisaton and de-applying
paulson <lp15@cam.ac.uk>
parents: 68478
diff changeset
  2813
  then have ac: "ac = factorcount G a"
dfbd80c3d180 more modernisaton and de-applying
paulson <lp15@cam.ac.uk>
parents: 68478
diff changeset
  2814
    unfolding factorcount_def using ascarr by (blast intro: theI2 afs)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2815
  from ascarr afs have "ac = length as"
68488
dfbd80c3d180 more modernisaton and de-applying
paulson <lp15@cam.ac.uk>
parents: 68478
diff changeset
  2816
    by (simp add: alen)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2817
  with ac show ?thesis
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2818
    by simp
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2819
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2820
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2821
lemma (in factorial_monoid) divides_fcount:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2822
  assumes dvd: "a divides b"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2823
    and acarr: "a \<in> carrier G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2824
    and bcarr:"b \<in> carrier G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2825
  shows "factorcount G a \<le> factorcount G b"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2826
proof (rule dividesE[OF dvd])
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2827
  fix c
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2828
  from assms have "\<exists>as. set as \<subseteq> carrier G \<and> wfactors G as a"
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2829
    by blast
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2830
  then obtain as where ascarr: "set as \<subseteq> carrier G" and afs: "wfactors G as a"
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2831
    by blast
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2832
  with acarr have fca: "factorcount G a = length as"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2833
    by (intro factorcount_unique)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2834
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2835
  assume ccarr: "c \<in> carrier G"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2836
  then have "\<exists>cs. set cs \<subseteq> carrier G \<and> wfactors G cs c"
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2837
    by blast
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2838
  then obtain cs where cscarr: "set cs \<subseteq> carrier G" and cfs: "wfactors G cs c"
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2839
    by blast
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2840
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2841
  note [simp] = acarr bcarr ccarr ascarr cscarr
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2842
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2843
  assume b: "b = a \<otimes> c"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2844
  from afs cfs have "wfactors G (as@cs) (a \<otimes> c)"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2845
    by (intro wfactors_mult) simp_all
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2846
  with b have "wfactors G (as@cs) b"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2847
    by simp
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2848
  then have "factorcount G b = length (as@cs)"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2849
    by (intro factorcount_unique) simp_all
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2850
  then have "factorcount G b = length as + length cs"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2851
    by simp
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2852
  with fca show ?thesis
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2853
    by simp
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2854
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2855
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2856
lemma (in factorial_monoid) associated_fcount:
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2857
  assumes acarr: "a \<in> carrier G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2858
    and bcarr: "b \<in> carrier G"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2859
    and asc: "a \<sim> b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2860
  shows "factorcount G a = factorcount G b"
68488
dfbd80c3d180 more modernisaton and de-applying
paulson <lp15@cam.ac.uk>
parents: 68478
diff changeset
  2861
  using assms
dfbd80c3d180 more modernisaton and de-applying
paulson <lp15@cam.ac.uk>
parents: 68478
diff changeset
  2862
  by (auto simp: associated_def factorial_monoid.divides_fcount factorial_monoid_axioms le_antisym)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2863
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2864
lemma (in factorial_monoid) properfactor_fcount:
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2865
  assumes acarr: "a \<in> carrier G" and bcarr:"b \<in> carrier G"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2866
    and pf: "properfactor G a b"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2867
  shows "factorcount G a < factorcount G b"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2868
proof (rule properfactorE[OF pf], elim dividesE)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2869
  fix c
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2870
  from assms have "\<exists>as. set as \<subseteq> carrier G \<and> wfactors G as a"
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2871
    by blast
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2872
  then obtain as where ascarr: "set as \<subseteq> carrier G" and afs: "wfactors G as a"
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2873
    by blast
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2874
  with acarr have fca: "factorcount G a = length as"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2875
    by (intro factorcount_unique)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2876
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2877
  assume ccarr: "c \<in> carrier G"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2878
  then have "\<exists>cs. set cs \<subseteq> carrier G \<and> wfactors G cs c"
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2879
    by blast
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2880
  then obtain cs where cscarr: "set cs \<subseteq> carrier G" and cfs: "wfactors G cs c"
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2881
    by blast
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2882
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2883
  assume b: "b = a \<otimes> c"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2884
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2885
  have "wfactors G (as@cs) (a \<otimes> c)"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2886
    by (rule wfactors_mult) fact+
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2887
  with b have "wfactors G (as@cs) b"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2888
    by simp
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2889
  with ascarr cscarr bcarr have "factorcount G b = length (as@cs)"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2890
    by (simp add: factorcount_unique)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2891
  then have fcb: "factorcount G b = length as + length cs"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2892
    by simp
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2893
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2894
  assume nbdvda: "\<not> b divides a"
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2895
  have "c \<notin> Units G"
63846
23134a486dc6 tuned proofs;
wenzelm
parents: 63832
diff changeset
  2896
  proof
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2897
    assume cunit:"c \<in> Units G"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2898
    have "b \<otimes> inv c = a \<otimes> c \<otimes> inv c"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2899
      by (simp add: b)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2900
    also from ccarr acarr cunit have "\<dots> = a \<otimes> (c \<otimes> inv c)"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2901
      by (fast intro: m_assoc)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2902
    also from ccarr cunit have "\<dots> = a \<otimes> \<one>" by simp
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2903
    also from acarr have "\<dots> = a" by simp
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2904
    finally have "a = b \<otimes> inv c" by simp
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2905
    with ccarr cunit have "b divides a"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2906
      by (fast intro: dividesI[of "inv c"])
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2907
    with nbdvda show False by simp
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2908
  qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2909
  with cfs have "length cs > 0"
68474
346bdafaf5fa More clear-up of Divisibility
paulson <lp15@cam.ac.uk>
parents: 68470
diff changeset
  2910
    by (metis Units_one_closed assoc_unit_r ccarr foldr.simps(1) id_apply length_greater_0_conv wfactors_def)
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2911
  with fca fcb show ?thesis
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2912
    by simp
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2913
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2914
29237
e90d9d51106b More porting to new locales.
ballarin
parents: 28823
diff changeset
  2915
sublocale factorial_monoid \<subseteq> divisor_chain_condition_monoid
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2916
  apply unfold_locales
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2917
  apply (rule wfUNIVI)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2918
  apply (rule measure_induct[of "factorcount G"])
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2919
  apply simp
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2920
  apply (metis properfactor_fcount)
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2921
  done
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2922
29237
e90d9d51106b More porting to new locales.
ballarin
parents: 28823
diff changeset
  2923
sublocale factorial_monoid \<subseteq> primeness_condition_monoid
63633
2accfb71e33b is_prime -> prime
eberlm <eberlm@in.tum.de>
parents: 63524
diff changeset
  2924
  by standard (rule irreducible_prime)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2925
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2926
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2927
lemma (in factorial_monoid) primeness_condition: "primeness_condition_monoid G" ..
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2928
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2929
lemma (in factorial_monoid) gcd_condition [simp]: "gcd_condition_monoid G"
61169
4de9ff3ea29a tuned proofs -- less legacy;
wenzelm
parents: 60515
diff changeset
  2930
  by standard (rule gcdof_exists)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2931
29237
e90d9d51106b More porting to new locales.
ballarin
parents: 28823
diff changeset
  2932
sublocale factorial_monoid \<subseteq> gcd_condition_monoid
61169
4de9ff3ea29a tuned proofs -- less legacy;
wenzelm
parents: 60515
diff changeset
  2933
  by standard (rule gcdof_exists)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2934
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2935
lemma (in factorial_monoid) division_weak_lattice [simp]: "weak_lattice (division_rel G)"
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2936
proof -
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2937
  interpret weak_lower_semilattice "division_rel G"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2938
    by simp
27713
95b36bfe7fc4 New locales for orders and lattices where the equivalence relation is not restricted to equality.
ballarin
parents: 27701
diff changeset
  2939
  show "weak_lattice (division_rel G)"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2940
  proof (unfold_locales, simp_all)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2941
    fix x y
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2942
    assume carr: "x \<in> carrier G"  "y \<in> carrier G"
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2943
    from lcmof_exists [OF this] obtain z where zcarr: "z \<in> carrier G" and isgcd: "z lcmof x y"
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2944
      by blast
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2945
    with carr have "least (division_rel G) z (Upper (division_rel G) {x, y})"
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2946
      by (simp add: lcmof_leastUpper[symmetric])
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2947
    then show "\<exists>z. least (division_rel G) z (Upper (division_rel G) {x, y})"
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2948
      by blast
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2949
  qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2950
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2951
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2952
61382
efac889fccbc isabelle update_cartouches;
wenzelm
parents: 61169
diff changeset
  2953
subsection \<open>Factoriality Theorems\<close>
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2954
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2955
theorem factorial_condition_one: (* Jacobson theorem 2.21 *)
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2956
  "divisor_chain_condition_monoid G \<and> primeness_condition_monoid G \<longleftrightarrow> factorial_monoid G"
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2957
proof (rule iffI, clarify)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2958
  assume dcc: "divisor_chain_condition_monoid G"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2959
    and pc: "primeness_condition_monoid G"
29237
e90d9d51106b More porting to new locales.
ballarin
parents: 28823
diff changeset
  2960
  interpret divisor_chain_condition_monoid "G" by (rule dcc)
e90d9d51106b More porting to new locales.
ballarin
parents: 28823
diff changeset
  2961
  interpret primeness_condition_monoid "G" by (rule pc)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2962
  show "factorial_monoid G"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2963
    by (fast intro: factorial_monoidI wfactors_exist wfactors_unique)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2964
next
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2965
  assume "factorial_monoid G"
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2966
  then interpret factorial_monoid "G" .
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2967
  show "divisor_chain_condition_monoid G \<and> primeness_condition_monoid G"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2968
    by rule unfold_locales
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2969
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2970
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2971
theorem factorial_condition_two: (* Jacobson theorem 2.22 *)
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2972
  "divisor_chain_condition_monoid G \<and> gcd_condition_monoid G \<longleftrightarrow> factorial_monoid G"
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2973
proof (rule iffI, clarify)
57865
dcfb33c26f50 tuned proofs -- fewer warnings;
wenzelm
parents: 57492
diff changeset
  2974
  assume dcc: "divisor_chain_condition_monoid G"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2975
    and gc: "gcd_condition_monoid G"
29237
e90d9d51106b More porting to new locales.
ballarin
parents: 28823
diff changeset
  2976
  interpret divisor_chain_condition_monoid "G" by (rule dcc)
e90d9d51106b More porting to new locales.
ballarin
parents: 28823
diff changeset
  2977
  interpret gcd_condition_monoid "G" by (rule gc)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2978
  show "factorial_monoid G"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2979
    by (simp add: factorial_condition_one[symmetric], rule, unfold_locales)
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2980
next
63847
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2981
  assume "factorial_monoid G"
34dccc2dd6db tuned proofs;
wenzelm
parents: 63846
diff changeset
  2982
  then interpret factorial_monoid "G" .
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2983
  show "divisor_chain_condition_monoid G \<and> gcd_condition_monoid G"
63832
a400b127853c misc tuning and modernization;
wenzelm
parents: 63793
diff changeset
  2984
    by rule unfold_locales
27701
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2985
qed
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2986
ed7a2e0fab59 New theory on divisibility.
ballarin
parents:
diff changeset
  2987
end