Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
Numerical Analysis in Coq
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Micaela Mayero
Numerical Analysis in Coq
Commits
58e56e3b
Commit
58e56e3b
authored
2 years ago
by
François Clément
Browse files
Options
Downloads
Patches
Plain Diff
Add Union_any_inter_equiv.
parent
df7c6465
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Lebesgue/Set_theory/Set_system/Set_system_base_any.v
+24
-0
24 additions, 0 deletions
Lebesgue/Set_theory/Set_system/Set_system_base_any.v
with
24 additions
and
0 deletions
Lebesgue/Set_theory/Set_system/Set_system_base_any.v
+
24
−
0
View file @
58e56e3b
...
...
@@ -28,6 +28,30 @@ Section Any_Facts1.
Context
{
U
:
Type
}
.
Variable
P
:
set_system
U
.
Lemma
Union_any_inter_equiv
:
Union_any_inter
P
<->
forall
A
B
x
,
P
A
->
P
B
->
inter
A
B
x
->
exists
C
,
P
C
/
\
incl
C
(
inter
A
B
)
/
\
C
x
.
Proof
.
split
.
(
*
*
)
intros
HP
A
B
x
HA
HB
Hx
;
destruct
(
HP
_
_
HA
HB
)
as
[
Q
[
HQ1
HQ2
]].
rewrite
HQ2
in
Hx
;
destruct
Hx
as
[
C
[
HC
Hx
]];
exists
C
.
split
;
auto
;
split
;
try
easy
;
rewrite
HQ2
;
apply
unionp_any_ub
;
easy
.
(
*
*
)
intros
HP
A
B
HA
HB
.
destruct
(
choice
(
fun
(
i
:
{
x
|
inter
A
B
x
}
)
C
=>
P
C
/
\
incl
C
(
inter
A
B
)
/
\
C
(
proj1_sig
i
)))
as
[
fQ
HfQ
].
intros
[
x
Hx
];
destruct
(
HP
_
_
_
HA
HB
Hx
)
as
[
C
HC
];
exists
C
;
easy
.
exists
(
unskolem
fQ
);
split
.
intros
C
[
i
];
apply
HfQ
.
rewrite
<-
unionf_any_unionp_any_eq
.
apply
set_ext_equiv
;
split
;
intros
x
Hx
.
exists
(
exist
_
_
Hx
);
apply
HfQ
.
destruct
Hx
as
[
i
Hx
],
(
HfQ
i
)
as
[
HfQ1
[
HfQ2
HfQ3
]];
auto
.
Qed
.
Lemma
Interf_any_Inter
:
Interf_any
P
->
Inter
P
.
Proof
.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment