41849
|
1 |
theory DP_Library
|
|
2 |
imports Main
|
|
3 |
begin
|
|
4 |
|
49519
|
5 |
primrec alluopairs:: "'a list \<Rightarrow> ('a \<times> 'a) list"
|
|
6 |
where
|
41849
|
7 |
"alluopairs [] = []"
|
55814
|
8 |
| "alluopairs (x # xs) = map (Pair x) (x # xs) @ alluopairs xs"
|
41849
|
9 |
|
55814
|
10 |
lemma alluopairs_set1: "set (alluopairs xs) \<le> {(x, y). x\<in> set xs \<and> y\<in> set xs}"
|
49519
|
11 |
by (induct xs) auto
|
41849
|
12 |
|
|
13 |
lemma alluopairs_set:
|
55814
|
14 |
"x\<in> set xs \<Longrightarrow> y \<in> set xs \<Longrightarrow> (x, y) \<in> set (alluopairs xs) \<or> (y, x) \<in> set (alluopairs xs)"
|
49519
|
15 |
by (induct xs) auto
|
41849
|
16 |
|
|
17 |
lemma alluopairs_bex:
|
55814
|
18 |
assumes Pc: "\<forall>x \<in> set xs. \<forall>y \<in> set xs. P x y = P y x"
|
|
19 |
shows "(\<exists>x \<in> set xs. \<exists>y \<in> set xs. P x y) \<longleftrightarrow> (\<exists>(x, y) \<in> set (alluopairs xs). P x y)"
|
41849
|
20 |
proof
|
55814
|
21 |
assume "\<exists>x \<in> set xs. \<exists>y \<in> set xs. P x y"
|
|
22 |
then obtain x y where x: "x \<in> set xs" and y: "y \<in> set xs" and P: "P x y"
|
49519
|
23 |
by blast
|
55814
|
24 |
from alluopairs_set[OF x y] P Pc x y show "\<exists>(x, y) \<in> set (alluopairs xs). P x y"
|
41849
|
25 |
by auto
|
|
26 |
next
|
55814
|
27 |
assume "\<exists>(x, y) \<in> set (alluopairs xs). P x y"
|
|
28 |
then obtain x and y where xy: "(x, y) \<in> set (alluopairs xs)" and P: "P x y"
|
49519
|
29 |
by blast+
|
55814
|
30 |
from xy have "x \<in> set xs \<and> y \<in> set xs"
|
|
31 |
using alluopairs_set1 by blast
|
41849
|
32 |
with P show "\<exists>x\<in>set xs. \<exists>y\<in>set xs. P x y" by blast
|
|
33 |
qed
|
|
34 |
|
|
35 |
lemma alluopairs_ex:
|
49519
|
36 |
"\<forall>x y. P x y = P y x \<Longrightarrow>
|
55814
|
37 |
(\<exists>x \<in> set xs. \<exists>y \<in> set xs. P x y) = (\<exists>(x, y) \<in> set (alluopairs xs). P x y)"
|
49519
|
38 |
by (blast intro!: alluopairs_bex)
|
41849
|
39 |
|
|
40 |
end
|