forked from vafeiadis/hahn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
HahnSets.v
756 lines (568 loc) · 25.3 KB
/
HahnSets.v
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
(******************************************************************************)
(** * Operations on sets (unary relations) *)
(******************************************************************************)
Require Import HahnBase.
Require Import Program.Basics List Arith micromega.Lia Relations Setoid Morphisms.
Set Implicit Arguments.
Local Open Scope program_scope.
(** Definitions of set operations *)
(******************************************************************************)
Section SetDefs.
Variables A B : Type.
Implicit Type f : A -> B.
Implicit Type s : A -> Prop.
Implicit Type ss : A -> B -> Prop.
Implicit Type d : B -> Prop.
Definition set_empty := fun x : A => False.
Definition set_full := fun x : A => True.
Definition set_compl s := fun x => ~ (s x).
Definition set_union s s' := fun x => s x \/ s' x.
Definition set_inter s s' := fun x => s x /\ s' x.
Definition set_minus s s' := fun x => s x /\ ~ (s' x).
Definition set_subset s s' := forall x, s x -> s' x.
Definition set_equiv s s' := set_subset s s' /\ set_subset s' s.
Definition set_finite s := exists findom, forall x (IN: s x), In x findom.
Definition set_coinfinite s:= ~ set_finite (set_compl s).
Definition set_collect f s := fun x => exists y, s y /\ f y = x.
Definition set_map f d := fun x => d (f x).
Definition set_bunion s ss := fun x => exists y, s y /\ ss y x.
Definition set_disjoint s s':= forall x (IN: s x) (IN': s' x), False.
End SetDefs.
Arguments set_empty {A}.
Arguments set_full {A}.
Arguments set_subset {A}.
Arguments set_equiv {A}.
Notation "P ∪₁ Q" := (set_union P Q) (at level 50, left associativity).
Notation "P ∩₁ Q" := (set_inter P Q) (at level 40, left associativity).
Notation "P \₁ Q" := (set_minus P Q) (at level 46).
Notation "∅" := (@set_empty _).
Notation "a ⊆₁ b" := (set_subset a b) (at level 60).
Notation "a ≡₁ b" := (set_equiv a b) (at level 60).
Notation "f ↑₁ P" := (set_collect f P) (at level 30).
Notation "f ↓₁ Q" := (set_map f Q) (at level 30).
Notation "⋃₁ x ∈ s , a" := (set_bunion s (fun x => a))
(at level 200, x ident, right associativity,
format "'[' ⋃₁ '/ ' x ∈ s , '/ ' a ']'").
Notation "'⋃₁' x , a" := (set_bunion (fun _ => True) (fun x => a))
(at level 200, x ident, right associativity,
format "'[' ⋃₁ '/ ' x , '/ ' a ']'").
Notation "'⋃₁' x < n , a" := (set_bunion (fun t => t < n) (fun x => a))
(at level 200, x ident, right associativity,
format "'[' ⋃₁ '/ ' x < n , '/ ' a ']'").
Notation "'⋃₁' x <= n , a" := (set_bunion (fun t => t <= n) (fun x => a))
(at level 200, x ident, right associativity,
format "'[' ⋃₁ '/ ' x <= n , '/ ' a ']'").
(*
Notation "P ∪ Q" := (set_union P Q) (at level 50, left associativity) : function_scope.
Notation "P ∩ Q" := (set_inter P Q) (at level 40, left associativity) : function_scope.
Notation "P \ Q" := (set_minus P Q) (at level 46) : function_scope.
Notation "∅" := (@set_empty _) : function_scope.
Notation "a ⊆ b" := (set_subset a b) (at level 60) : function_scope.
Notation "a ≡ b" := (set_equiv a b) (at level 60) : function_scope. *)
Global Hint Unfold set_empty set_full set_compl set_union set_inter : unfolderDb.
Global Hint Unfold set_minus set_subset set_equiv set_coinfinite set_finite : unfolderDb.
Global Hint Unfold set_collect set_map set_bunion set_disjoint : unfolderDb.
(** Basic properties of set operations *)
(******************************************************************************)
Section SetProperties.
Local Ltac u :=
repeat autounfold with unfolderDb in *;
ins; try solve [tauto | firstorder | split; ins; tauto].
Variables A B C : Type.
Implicit Type a : A.
Implicit Type f : A -> B.
Implicit Type s : A -> Prop.
Implicit Type d : B -> Prop.
Implicit Type ss : A -> B -> Prop.
(** Properties of set complement. *)
Lemma set_compl_empty : set_compl ∅ ≡₁ @set_full A.
Proof. u. Qed.
Lemma set_compl_full : set_compl (@set_full A) ≡₁ ∅.
Proof. u. Qed.
Lemma set_compl_compl s : set_compl (set_compl s) ≡₁ s.
Proof. u. Qed.
Lemma set_compl_union s s' :
set_compl (s ∪₁ s') ≡₁ set_compl s ∩₁ set_compl s'.
Proof. u. Qed.
Lemma set_compl_inter s s' :
set_compl (s ∩₁ s') ≡₁ set_compl s ∪₁ set_compl s'.
Proof. u. Qed.
Lemma set_compl_minus s s' :
set_compl (s \₁ s') ≡₁ s' ∪₁ set_compl s.
Proof. u. Qed.
(** Properties of set union. *)
Lemma set_unionA s s' s'' : (s ∪₁ s') ∪₁ s'' ≡₁ s ∪₁ (s' ∪₁ s'').
Proof. u. Qed.
Lemma set_unionC s s' : s ∪₁ s' ≡₁ s' ∪₁ s.
Proof. u. Qed.
Lemma set_unionK s : s ∪₁ s ≡₁ s.
Proof. u. Qed.
Lemma set_union_empty_l s : ∅ ∪₁ s ≡₁ s.
Proof. u. Qed.
Lemma set_union_empty_r s : s ∪₁ ∅ ≡₁ s.
Proof. u. Qed.
Lemma set_union_full_l s : set_full ∪₁ s ≡₁ set_full.
Proof. u. Qed.
Lemma set_union_full_r s : s ∪₁ set_full ≡₁ set_full.
Proof. u. Qed.
Lemma set_union_inter_l s s' s'' : (s ∩₁ s') ∪₁ s'' ≡₁ (s ∪₁ s'') ∩₁ (s' ∪₁ s'').
Proof. u. Qed.
Lemma set_union_inter_r s s' s'' : s ∪₁ (s' ∩₁ s'') ≡₁ (s ∪₁ s') ∩₁ (s ∪₁ s'').
Proof. u. Qed.
Lemma set_union_eq_empty s s' : s ∪₁ s' ≡₁ ∅ <-> s ≡₁ ∅ /\ s' ≡₁ ∅.
Proof. u. Qed.
(** Properties of set intersection. *)
Lemma set_interA s s' s'' : (s ∩₁ s') ∩₁ s'' ≡₁ s ∩₁ (s' ∩₁ s'').
Proof. u. Qed.
Lemma set_interC s s' : s ∩₁ s' ≡₁ s' ∩₁ s.
Proof. u. Qed.
Lemma set_interK s : s ∩₁ s ≡₁ s.
Proof. u. Qed.
Lemma set_inter_empty_l s : ∅ ∩₁ s ≡₁ ∅.
Proof. u. Qed.
Lemma set_inter_empty_r s : s ∩₁ ∅ ≡₁ ∅.
Proof. u. Qed.
Lemma set_inter_full_l s : set_full ∩₁ s ≡₁ s.
Proof. u. Qed.
Lemma set_inter_full_r s : s ∩₁ set_full ≡₁ s.
Proof. u. Qed.
Lemma set_inter_union_l s s' s'' : (s ∪₁ s') ∩₁ s'' ≡₁ (s ∩₁ s'') ∪₁ (s' ∩₁ s'').
Proof. u. Qed.
Lemma set_inter_union_r s s' s'' : s ∩₁ (s' ∪₁ s'') ≡₁ (s ∩₁ s') ∪₁ (s ∩₁ s'').
Proof. u. Qed.
Lemma set_inter_minus_l s s' s'' : (s \₁ s') ∩₁ s'' ≡₁ (s ∩₁ s'') \₁ s'.
Proof. u. Qed.
Lemma set_inter_minus_r s s' s'' : s ∩₁ (s' \₁ s'') ≡₁ (s ∩₁ s') \₁ s''.
Proof. u. Qed.
(** Properties of set minus. *)
Lemma set_minusE s s' : s \₁ s' ≡₁ s ∩₁ set_compl s'.
Proof. u. Qed.
Lemma set_minusK s : s \₁ s ≡₁ ∅.
Proof. u. Qed.
Lemma set_minus_inter_l s s' s'' :
(s ∩₁ s') \₁ s'' ≡₁ (s \₁ s'') ∩₁ (s' \₁ s'').
Proof. u. Qed.
Lemma set_minus_inter_r s s' s'' :
s \₁ (s' ∩₁ s'') ≡₁ (s \₁ s') ∪₁ (s \₁ s'').
Proof. u; split; ins; tauto. Qed.
Lemma set_minus_union_l s s' s'' :
(s ∪₁ s') \₁ s'' ≡₁ (s \₁ s'') ∪₁ (s' \₁ s'').
Proof. u. Qed.
Lemma set_minus_union_r s s' s'' :
s \₁ (s' ∪₁ s'') ≡₁ (s \₁ s') ∩₁ (s \₁ s'').
Proof. u. Qed.
Lemma set_minus_minus_l s s' s'' :
s \₁ s' \₁ s'' ≡₁ s \₁ (s' ∪₁ s'').
Proof. u. Qed.
Lemma set_minus_minus_r s s' s'' :
s \₁ (s' \₁ s'') ≡₁ (s \₁ s') ∪₁ (s ∩₁ s'').
Proof. u. Qed.
(** Properties of set inclusion. *)
Lemma set_subsetE s s' : s ⊆₁ s' <-> s \₁ s' ≡₁ ∅.
Proof. u; intuition; apply NNPP; firstorder. Qed.
Lemma set_subset_eq (P : A -> Prop) a (H : P a): eq a ⊆₁ P.
Proof. by intros x H'; subst. Qed.
Lemma set_subset_refl : reflexive _ (@set_subset A).
Proof. u. Qed.
Lemma set_subset_trans : transitive _ (@set_subset A).
Proof. u. Qed.
Lemma set_subset_empty_l s : ∅ ⊆₁ s.
Proof. u. Qed.
Lemma set_subset_empty_r s : s ⊆₁ ∅ <-> s ≡₁ ∅.
Proof. u. Qed.
Lemma set_subset_full_l s : set_full ⊆₁ s <-> s ≡₁ set_full.
Proof. u. Qed.
Lemma set_subset_full_r s : s ⊆₁ set_full.
Proof. u. Qed.
Lemma set_subset_union_l s s' s'' : s ∪₁ s' ⊆₁ s'' <-> s ⊆₁ s'' /\ s' ⊆₁ s''.
Proof. u. Qed.
Lemma set_subset_union_r1 s s' : s ⊆₁ s ∪₁ s'.
Proof. u. Qed.
Lemma set_subset_union_r2 s s' : s' ⊆₁ s ∪₁ s'.
Proof. u. Qed.
Lemma set_subset_union_r s s' s'' : s ⊆₁ s' \/ s ⊆₁ s'' -> s ⊆₁ s' ∪₁ s''.
Proof. u. Qed.
Lemma set_subset_inter_r s s' s'' : s ⊆₁ s' ∩₁ s'' <-> s ⊆₁ s' /\ s ⊆₁ s''.
Proof. u. Qed.
Lemma set_subset_compl s s' (S1: s' ⊆₁ s) : set_compl s ⊆₁ set_compl s'.
Proof. u. Qed.
Lemma set_subset_inter s s' (S1: s ⊆₁ s') t t' (S2: t ⊆₁ t') : s ∩₁ t ⊆₁ s' ∩₁ t'.
Proof. u. Qed.
Lemma set_subset_union s s' (S1: s ⊆₁ s') t t' (S2: t ⊆₁ t') : s ∪₁ t ⊆₁ s' ∪₁ t'.
Proof. u. Qed.
Lemma set_subset_minus s s' (S1: s ⊆₁ s') t t' (S2: t' ⊆₁ t) : s \₁ t ⊆₁ s' \₁ t'.
Proof. u. Qed.
Lemma set_subset_bunion_l s ss sb (H: forall x (COND: s x), ss x ⊆₁ sb) : (⋃₁x ∈ s, ss x) ⊆₁ sb.
Proof. u. Qed.
Lemma set_subset_bunion_r s ss sb a (H: s a) (H': sb ⊆₁ ss a) : sb ⊆₁ ⋃₁x ∈ s, ss x.
Proof. u. Qed.
Lemma set_subset_bunion s s' (S: s ⊆₁ s') ss ss' (SS: forall x (COND: s x), ss x ⊆₁ ss' x) :
(⋃₁x ∈ s, ss x) ⊆₁ ⋃₁x ∈ s, ss' x.
Proof. u. Qed.
Lemma set_subset_bunion_guard s s' (S: s ⊆₁ s') ss ss' (EQ: ss = ss') :
(⋃₁x ∈ s, ss x) ⊆₁ (⋃₁x ∈ s', ss' x).
Proof. subst; u. Qed.
Lemma set_subset_collect f s s' (S: s ⊆₁ s') : f ↑₁ s ⊆₁ f ↑₁ s'.
Proof. u. Qed.
(** Properties of set equivalence. *)
Lemma set_equivE s s' : s ≡₁ s' <-> s ⊆₁ s' /\ s' ⊆₁ s.
Proof. u; firstorder. Qed.
Lemma set_equiv_refl : reflexive _ (@set_equiv A).
Proof. u. Qed.
Lemma set_equiv_symm : symmetric _ (@set_equiv A).
Proof. u. Qed.
Lemma set_equiv_trans : transitive _ (@set_equiv A).
Proof. u. Qed.
Lemma set_equiv_compl s s' (S1: s ≡₁ s') : set_compl s ≡₁ set_compl s'.
Proof. u. Qed.
Lemma set_equiv_inter s s' (S1: s ≡₁ s') t t' (S2: t ≡₁ t') : s ∩₁ t ≡₁ s' ∩₁ t'.
Proof. u. Qed.
Lemma set_equiv_union s s' (S1: s ≡₁ s') t t' (S2: t ≡₁ t') : s ∪₁ t ≡₁ s' ∪₁ t'.
Proof. u. Qed.
Lemma set_equiv_minus s s' (S1: s ≡₁ s') t t' (S2: t ≡₁ t') : s \₁ t ≡₁ s' \₁ t'.
Proof. u. Qed.
Lemma set_equiv_bunion s s' (S: s ≡₁ s') ss ss' (SS: forall x (COND: s x), ss x ≡₁ ss' x) :
set_bunion s ss ≡₁ set_bunion s' ss'.
Proof. u. Qed.
Lemma set_equiv_bunion_guard s s' (S: s ≡₁ s') ss ss' (EQ: ss = ss') : set_bunion s ss ≡₁ set_bunion s' ss'.
Proof. subst; u. Qed.
Lemma set_equiv_collect f s s' (S: s ≡₁ s') : f ↑₁ s ⊆₁ f ↑₁ s'.
Proof. u. Qed.
Lemma set_equiv_subset s s' (S1: s ≡₁ s') t t' (S2: t ≡₁ t') : s ⊆₁ t <-> s' ⊆₁ t'.
Proof. u. Qed.
Lemma set_equiv_exp s s' (EQ: s ≡₁ s') : forall x, s x <-> s' x.
Proof. split; apply EQ. Qed.
(** Absorption properties. *)
Lemma set_union_absorb_l s s' (SUB: s ⊆₁ s') : s ∪₁ s' ≡₁ s'.
Proof. u. Qed.
Lemma set_union_absorb_r s s' (SUB: s ⊆₁ s') : s' ∪₁ s ≡₁ s'.
Proof. u. Qed.
Lemma set_inter_absorb_l s s' (SUB: s ⊆₁ s') : s' ∩₁ s ≡₁ s.
Proof. u. Qed.
Lemma set_inter_absorb_r s s' (SUB: s ⊆₁ s') : s ∩₁ s' ≡₁ s.
Proof. u. Qed.
Lemma set_minus_absorb_l s s' (SUB: s ⊆₁ s') : s \₁ s' ≡₁ ∅.
Proof. u. Qed.
(** Singleton sets *)
Lemma set_subset_single_l a s : eq a ⊆₁ s <-> s a.
Proof. u; intuition; desf. Qed.
Lemma set_subset_single_r a s :
s ⊆₁ eq a <-> s ≡₁ eq a \/ s ≡₁ ∅.
Proof.
u; intuition; firstorder.
destruct (classic (exists b, s b)) as [M|M]; desf.
left; split; ins; desf; eauto.
specialize (H _ M); desf.
right; split; ins; eauto.
Qed.
Lemma set_subset_single_single a b :
eq a ⊆₁ eq b <-> a = b.
Proof. u; intuition; desf; eauto using eq_sym. Qed.
Lemma set_equiv_single_single a b :
eq a ≡₁ eq b <-> a = b.
Proof. u; intuition; desf; apply H; ins. Qed.
Lemma set_nonemptyE s : ~ s ≡₁ ∅ <-> exists x, s x.
Proof.
u; intuition; firstorder.
apply NNPP; intro; apply H0; ins; eauto.
Qed.
(** Big union *)
Lemma set_bunion_empty ss : set_bunion ∅ ss ≡₁ ∅.
Proof. u. Qed.
Lemma set_bunion_eq a ss : set_bunion (eq a) ss ≡₁ ss a.
Proof. u; splits; ins; desf; eauto. Qed.
Lemma set_bunion_union_l s s' ss :
set_bunion (s ∪₁ s') ss ≡₁ set_bunion s ss ∪₁ set_bunion s' ss.
Proof. u. Qed.
Lemma set_bunion_union_r s ss ss' :
set_bunion s (fun x => ss x ∪₁ ss' x) ≡₁ set_bunion s ss ∪₁ set_bunion s ss'.
Proof. u. Qed.
Lemma set_bunion_bunion_l s ss (ss' : B -> C -> Prop) :
(⋃₁x ∈ (⋃₁y ∈ s, ss y), ss' x) ≡₁ ⋃₁y ∈ s, ⋃₁x ∈ ss y, ss' x.
Proof. u. Qed.
Lemma set_bunion_inter_compat_l s sb ss :
set_bunion s (fun x => sb ∩₁ ss x) ≡₁ sb ∩₁ set_bunion s ss.
Proof. u; split; ins; desf; eauto 8. Qed.
Lemma set_bunion_inter_compat_r s sb ss :
set_bunion s (fun x => ss x ∩₁ sb) ≡₁ set_bunion s ss ∩₁ sb.
Proof. u; split; ins; desf; eauto 8. Qed.
Lemma set_bunion_minus_compat_r s sb ss :
set_bunion s (fun x => ss x \₁ sb) ≡₁ set_bunion s ss \₁ sb.
Proof. u; split; ins; desf; eauto 8. Qed.
(** Collect *)
Lemma set_collect_compose (f : A -> B) (g : B -> C) s :
(g ∘ f) ↑₁ s ≡₁ g ↑₁ (f ↑₁ s) .
Proof.
unfold compose.
repeat autounfold with unfolderDb.
ins; splits; ins; splits; desf; eauto.
Qed.
Lemma set_collectE f s : f ↑₁ s ≡₁ set_bunion s (fun x => eq (f x)).
Proof. u. Qed.
Lemma set_collect_empty f : f ↑₁ ∅ ≡₁ ∅.
Proof. u. Qed.
Lemma set_collect_eq f a : f ↑₁ (eq a) ≡₁ eq (f a).
Proof. u; splits; ins; desf; eauto. Qed.
Lemma set_collect_union f s s' :
f ↑₁ (s ∪₁ s') ≡₁ f ↑₁ s ∪₁ f ↑₁ s'.
Proof. u. Qed.
Lemma set_collect_inter f s s' :
f ↑₁ (s ∩₁ s') ⊆₁ f ↑₁ s ∩₁ f ↑₁ s'.
Proof. u. Qed.
Lemma set_collect_bunion f (s : C -> Prop) (ss : C -> A -> Prop) :
f ↑₁ (⋃₁x ∈ s, ss x) ≡₁ ⋃₁x ∈ s, f ↑₁ (ss x).
Proof. u. Qed.
(** Map *)
Lemma set_map_compose (f : A -> B) (g : B -> C) (d : C -> Prop) :
(g ∘ f) ↓₁ d ≡₁ f ↓₁ (g ↓₁ d) .
Proof.
autounfold with unfolderDb.
ins; splits; ins; splits; desf; eauto.
Qed.
Lemma set_mapE f d : f ↓₁ d ≡₁ set_bunion d (fun x y => x = f y).
Proof. split; u. desc. by subst y. Qed.
Lemma set_map_empty f : f ↓₁ ∅ ≡₁ ∅.
Proof. u. Qed.
Lemma set_map_full f : f ↓₁ set_full ≡₁ set_full.
Proof. u. Qed.
Lemma set_map_union f d d' :
f ↓₁ (d ∪₁ d') ≡₁ f ↓₁ d ∪₁ f ↓₁ d'.
Proof. u. Qed.
Lemma set_map_inter f d d' :
f ↓₁ (d ∩₁ d') ≡₁ f ↓₁ d ∩₁ f ↓₁ d'.
Proof. u. Qed.
Lemma set_map_bunion f (d : C -> Prop) (dd : C -> B -> Prop) :
f ↓₁ (⋃₁x ∈ d, dd x) ≡₁ ⋃₁x ∈ d, f ↓₁ (dd x).
Proof. u. Qed.
(** Collect and Map *)
Lemma set_collect_map f d :
f ↑₁ (f ↓₁ d) ⊆₁ d.
Proof. u. desc. by subst x. Qed.
Lemma set_map_collect f s :
s ⊆₁ f ↓₁ (f ↑₁ s).
Proof. u. Qed.
(** Finite sets *)
Lemma set_finite_empty : set_finite (A:=A) ∅.
Proof. exists nil; ins. Qed.
Lemma set_finite_eq a : set_finite (eq a).
Proof. exists (a :: nil); ins; desf; eauto. Qed.
Lemma set_finite_le n : set_finite (fun t => t <= n).
Proof. exists (List.seq 0 (S n)); intros; apply in_seq; ins; auto with arith. Qed.
Lemma set_finite_lt n : set_finite (fun t => t < n).
Proof. exists (List.seq 0 n); intros; apply in_seq; ins; auto with arith. Qed.
Lemma set_finite_union s s' : set_finite (s ∪₁ s') <-> set_finite s /\ set_finite s'.
Proof.
u; split; splits; ins; desf; eauto.
eexists (_ ++ _); ins; desf; eauto using in_or_app.
Qed.
Lemma set_finite_unionI s (F: set_finite s) s' (F': set_finite s') : set_finite (s ∪₁ s').
Proof.
u; desf; eauto; eexists (_ ++ _); ins; desf; eauto using in_or_app.
Qed.
Lemma set_finite_bunion s (F: set_finite s) ss :
set_finite (set_bunion s ss) <-> forall a (COND: s a), set_finite (ss a).
Proof.
u; split; ins; desf; eauto.
revert s F H; induction findom; ins.
by exists nil; ins; desf; eauto.
specialize (IHfindom (fun x => s x /\ x <> a)); ins.
specialize_full IHfindom; ins; desf; eauto.
by apply F in IN; desf; eauto.
tertium_non_datur (s a) as [X|X].
eapply H in X; desf.
eexists (findom0 ++ findom1); ins; desf.
tertium_non_datur (y = a); desf; eauto 8 using in_or_app.
eexists findom0; ins; desf; apply IHfindom; eexists; splits; eauto; congruence.
Qed.
(** Set disjointness *)
Lemma set_disjointE s s' : set_disjoint s s' <-> s ∩₁ s' ≡₁ ∅.
Proof. u. Qed.
Lemma set_disjointC s s' : set_disjoint s s' <-> set_disjoint s' s.
Proof. u. Qed.
Lemma set_disjoint_empty_l s : set_disjoint ∅ s.
Proof. u. Qed.
Lemma set_disjoint_empty_r s : set_disjoint s ∅.
Proof. u. Qed.
Lemma set_disjoint_eq_l a s : set_disjoint (eq a) s <-> ~ s a.
Proof. u; split; ins; desf; eauto. Qed.
Lemma set_disjoint_eq_r a s : set_disjoint s (eq a) <-> ~ s a.
Proof. u; split; ins; desf; eauto. Qed.
Lemma set_disjoint_eq_eq a b : set_disjoint (eq a) (eq b) <-> a <> b.
Proof. u; split; ins; desf; eauto. Qed.
Lemma set_disjoint_union_l s s' s'' :
set_disjoint (s ∪₁ s') s'' <-> set_disjoint s s'' /\ set_disjoint s' s''.
Proof. u. Qed.
Lemma set_disjoint_union_r s s' s'' :
set_disjoint s (s' ∪₁ s'') <-> set_disjoint s s' /\ set_disjoint s s''.
Proof. u. Qed.
Lemma set_disjoint_bunion_l s ss sr :
set_disjoint (set_bunion s ss) sr <-> forall x (IN: s x), set_disjoint (ss x) sr.
Proof. u. Qed.
Lemma set_disjoint_bunion_r s ss sr :
set_disjoint sr (set_bunion s ss) <-> forall x (IN: s x), set_disjoint sr (ss x).
Proof. u. Qed.
Lemma set_disjoint_subset_l s s' (SUB: s ⊆₁ s') s'' :
set_disjoint s' s'' -> set_disjoint s s''.
Proof. u. Qed.
Lemma set_disjoint_subset_r s s' (SUB: s ⊆₁ s') s'' :
set_disjoint s'' s' -> set_disjoint s'' s.
Proof. u. Qed.
Lemma set_disjoint_subset s s' (SUB: s ⊆₁ s') sr sr' (SUB': sr ⊆₁ sr') :
set_disjoint s' sr' -> set_disjoint s sr.
Proof. u. Qed.
(** Miscellaneous *)
Lemma set_le n : (fun i => i <= n) ≡₁ (fun i => i < n) ∪₁ (eq n).
Proof.
u; intuition; lia.
Qed.
Lemma set_lt n : (fun i => i < n) ≡₁ (fun i => i <= n) \₁ (eq n).
Proof.
u; intuition; lia.
Qed.
End SetProperties.
(** Lemmas about finite subsets of [nat] *)
Lemma set_finite_nat_bounded s (F : set_finite s) :
(exists bound, forall m (M: s m), m < bound).
Proof.
red in F; desc.
exists (S (fold_right Nat.max 0 findom)); ins.
apply Nat.lt_succ_r.
apply F, in_split in M; desf.
clear; induction l1; ins; eauto 2 with arith.
Qed.
Lemma set_finite_coinfinite_nat (s: nat -> Prop) :
set_finite s -> set_coinfinite s.
Proof.
assert (LT: forall l x, In x l -> x <= fold_right Init.Nat.add 0 l).
induction l; ins; desf; try apply IHl in H; lia.
repeat autounfold with unfolderDb; red; ins; desf.
tertium_non_datur (s (S (fold_right plus 0 findom + fold_right plus 0 findom0))) as [X|X];
[apply H in X | apply H0 in X]; apply LT in X; lia.
Qed.
Lemma set_coinfinite_fresh (s: nat -> Prop) (COINF: set_coinfinite s) :
exists b, ~ s b /\ set_coinfinite (s ∪₁ eq b).
Proof.
repeat autounfold with unfolderDb in *.
tertium_non_datur (forall b, s b).
by destruct COINF; exists nil; ins; desf.
exists n; splits; red; ins; desf.
apply COINF; exists (n :: findom); ins; desf; eauto.
specialize (H0 x); tauto.
Qed.
Lemma set_bunion_lt_S A n (P : nat -> A -> Prop) :
(⋃₁i < S n, P i) ≡₁ (⋃₁i < n, P i) ∪₁ P n.
Proof.
unfold set_bunion, set_equiv, set_subset, set_union;
split; ins; desf; eauto.
rewrite Nat.lt_succ_r, Nat.le_lteq in *; desf; eauto.
Qed.
(** Add rewriting support. *)
Add Parametric Relation A : (A -> Prop) (set_subset (A:=A))
reflexivity proved by (set_subset_refl (A:=A))
transitivity proved by (set_subset_trans (A:=A))
as set_subset_rel.
Add Parametric Relation A : (A -> Prop) (set_equiv (A:=A))
reflexivity proved by (set_equiv_refl (A:=A))
symmetry proved by (set_equiv_symm (A:=A))
transitivity proved by (set_equiv_trans (A:=A))
as set_equiv_rel.
#[export]
Instance set_compl_Proper A : Proper (_ --> _) _ := set_subset_compl (A:=A).
#[export]
Instance set_union_Proper A : Proper (_ ==> _ ==> _) _ := set_subset_union (A:=A).
#[export]
Instance set_inter_Proper A : Proper (_ ==> _ ==> _) _ := set_subset_inter (A:=A).
#[export]
Instance set_minus_Proper A : Proper (_ ++> _ --> _) _ := set_subset_minus (A:=A).
#[export]
Instance set_bunion_Proper A B : Proper (_ ==> _ ==> _) _ := set_subset_bunion_guard (A:=A) (B:=B).
#[export]
Instance set_compl_Propere A : Proper (_ ==> _) _ := set_equiv_compl (A:=A).
#[export]
Instance set_union_Propere A : Proper (_ ==> _ ==> _) _ := set_equiv_union (A:=A).
#[export]
Instance set_inter_Propere A : Proper (_ ==> _ ==> _) _ := set_equiv_inter (A:=A).
#[export]
Instance set_minus_Propere A : Proper (_ ==> _ ==> _) _ := set_equiv_minus (A:=A).
#[export]
Instance set_bunion_Propere A B : Proper (_ ==> _ ==> _) _ := set_equiv_bunion_guard (A:=A) (B:=B).
#[export]
Instance set_subset_Proper A : Proper (_ ==> _ ==> _) _ := set_equiv_subset (A:=A).
Add Parametric Morphism A : (@set_finite A) with signature
set_subset --> Basics.impl as set_finite_mori.
Proof. red; autounfold with unfolderDb; ins; desf; eauto. Qed.
Add Parametric Morphism A : (@set_finite A) with signature
set_equiv ==> iff as set_finite_more.
Proof. red; autounfold with unfolderDb; splits; ins; desf; eauto. Qed.
Add Parametric Morphism A : (@set_coinfinite A) with signature
set_subset --> Basics.impl as set_coinfinite_mori.
Proof. unfold set_coinfinite; ins; rewrite H; ins. Qed.
Add Parametric Morphism A : (@set_coinfinite A) with signature
set_equiv ==> iff as set_coinfinite_more.
Proof. unfold set_coinfinite; ins; rewrite H; ins. Qed.
Add Parametric Morphism A B : (@set_collect A B) with signature
eq ==> set_subset ==> set_subset as set_collect_mori.
Proof. autounfold with unfolderDb; ins; desf; eauto. Qed.
Add Parametric Morphism A B : (@set_collect A B) with signature
eq ==> set_equiv ==> set_equiv as set_collect_more.
Proof. repeat autounfold with unfolderDb; splits; ins; desf; eauto. Qed.
Add Parametric Morphism A B : (@set_map A B) with signature
eq ==> set_subset ==> set_subset as set_map_mori.
Proof. repeat autounfold with unfolderDb; splits; ins; desf; eauto. Qed.
Add Parametric Morphism A B : (@set_map A B) with signature
eq ==> set_equiv ==> set_equiv as set_map_more.
Proof. repeat autounfold with unfolderDb; splits; ins; desf; eauto. Qed.
Add Parametric Morphism A : (@set_disjoint A) with signature
set_subset --> set_subset --> Basics.impl as set_disjoint_mori.
Proof. red; autounfold with unfolderDb; ins; desf; eauto. Qed.
Add Parametric Morphism A : (@set_disjoint A) with signature
set_equiv ==> set_equiv ==> iff as set_disjoint_more.
Proof. red; autounfold with unfolderDb; splits; ins; desf; eauto. Qed.
(** Add support for automation. *)
Lemma set_subset_refl2 A (x: A -> Prop) : x ⊆₁ x.
Proof. reflexivity. Qed.
Lemma set_equiv_refl2 A (x: A -> Prop) : x ≡₁ x.
Proof. reflexivity. Qed.
Global Hint Immediate set_subset_refl2 : core hahn.
Global Hint Resolve set_equiv_refl2 : core hahn.
#[export]
Hint Rewrite set_compl_empty set_compl_full set_compl_compl : hahn.
#[export]
Hint Rewrite set_compl_union set_compl_inter set_compl_minus : hahn.
#[export]
Hint Rewrite set_union_empty_l set_union_empty_r set_union_full_l set_union_full_r : hahn.
#[export]
Hint Rewrite set_inter_empty_l set_inter_empty_r set_inter_full_l set_inter_full_r : hahn.
#[export]
Hint Rewrite set_bunion_empty set_bunion_eq set_bunion_bunion_l : hahn.
#[export]
Hint Rewrite set_collect_empty set_collect_eq set_collect_bunion : hahn.
#[export]
Hint Rewrite set_finite_union : hahn.
#[export]
Hint Rewrite set_disjoint_eq_eq set_disjoint_eq_l set_disjoint_eq_r : hahn.
#[export]
Hint Rewrite set_inter_union_l set_inter_union_r set_union_eq_empty : hahn_full.
#[export]
Hint Rewrite set_minus_union_l set_minus_union_r set_union_eq_empty : hahn_full.
#[export]
Hint Rewrite set_subset_union_l set_subset_inter_r : hahn_full.
#[export]
Hint Rewrite set_minusK set_interK set_unionK : hahn_full.
#[export]
Hint Rewrite set_bunion_inter_compat_l set_bunion_inter_compat_r : hahn_full.
#[export]
Hint Rewrite set_bunion_minus_compat_r : hahn_full.
#[export]
Hint Rewrite set_bunion_union_l set_bunion_union_r : hahn_full.
#[export]
Hint Rewrite set_collect_union : hahn_full.
#[export]
Hint Rewrite set_disjoint_union_l set_disjoint_union_r : hahn_full.
#[export]
Hint Rewrite set_disjoint_bunion_l set_disjoint_bunion_r : hahn_full.
Global Hint Immediate set_subset_empty_l set_subset_full_r : hahn.
Global Hint Immediate set_finite_empty set_finite_eq set_finite_le set_finite_lt : hahn.
Global Hint Immediate set_disjoint_empty_l set_disjoint_empty_r : hahn.
Global Hint Resolve set_subset_union_r : hahn.
Global Hint Resolve set_finite_unionI set_finite_bunion : hahn.