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
Issue boards
Milestones
Wiki
Code
Merge requests
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
b752b3fa
Commit
b752b3fa
authored
3 years ago
by
François Clément
Browse files
Options
Downloads
Patches
Plain Diff
WIP: proof of measurable_gen_Preimage.
parent
e9998154
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Lebesgue/measurable.v
+47
-0
47 additions, 0 deletions
Lebesgue/measurable.v
with
47 additions
and
0 deletions
Lebesgue/measurable.v
+
47
−
0
View file @
b752b3fa
...
...
@@ -255,6 +255,43 @@ Definition Preimage : (E -> Prop) -> Prop := image (preimage f) PF.
End
measurable_gen_Image_Def
.
Section
measurable_gen_Image_Facts
.
Context
{
E
F
:
Type
}
.
(
*
Universes
.
*
)
Variable
f
:
E
->
F
.
Variable
PE1
PE2
:
(
E
->
Prop
)
->
Prop
.
(
*
Subset
systems
.
*
)
Variable
PF1
PF2
:
(
F
->
Prop
)
->
Prop
.
(
*
Subset
systems
.
*
)
Lemma
Image_monot
:
Incl
PE1
PE2
->
Incl
(
Image
f
PE1
)
(
Image
f
PE2
).
Proof
.
intros
H
B
HB
;
apply
H
;
easy
.
Qed
.
Lemma
Preimage_monot
:
Incl
PF1
PF2
->
Incl
(
Preimage
f
PF1
)
(
Preimage
f
PF2
).
Proof
.
apply
image_monot
.
Qed
.
Lemma
Preimage_of_Image
:
Incl
(
Preimage
f
(
Image
f
PE1
))
PE1
.
Proof
.
intros
A
[
B
[
HB1
HB2
]];
rewrite
HB2
;
easy
.
Qed
.
Lemma
Image_of_Preimage
:
Incl
PF1
(
Image
f
(
Preimage
f
PF1
)).
Proof
.
intros
B
HB
;
exists
B
;
easy
.
Qed
.
Lemma
toto
:
Incl
PF1
(
Image
f
PE1
)
->
Incl
(
Preimage
f
PF1
)
PE1
.
Proof
.
intros
;
apply
Incl_trans
with
(
Preimage
f
(
Image
f
PE1
)).
(
*
apply
Preimage_monot
.
*
)
Admitted
.
End
measurable_gen_Image_Facts
.
Section
measurable_gen_Facts2
.
Context
{
E
F
:
Type
}
.
(
*
Universes
.
*
)
...
...
@@ -298,6 +335,16 @@ Qed.
Lemma
measurable_gen_Preimage
:
measurable
(
Preimage
f
genF
)
=
Preimage
f
(
measurable
genF
).
Proof
.
apply
Ext_equiv
;
split
.
(
*
*
)
rewrite
<-
is_Sigma_algebra_Preimage
.
apply
measurable_gen_monot
,
Preimage_monot
,
measurable_gen
.
(
*
*
)
Admitted
.
End
measurable_gen_Facts2
.
...
...
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