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
78bac00b
Commit
78bac00b
authored
3 years ago
by
François Clément
Browse files
Options
Downloads
Patches
Plain Diff
WIP: measurable_Borel_prod_eq.
parent
f1cbb62e
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Lebesgue/measurable.v
+22
-3
22 additions, 3 deletions
Lebesgue/measurable.v
with
22 additions
and
3 deletions
Lebesgue/measurable.v
+
22
−
3
View file @
78bac00b
...
...
@@ -259,8 +259,11 @@ Context {E1 E2 : Type}. (* Universes. *)
Variable
genE1
:
(
E1
->
Prop
)
->
Prop
.
(
*
Generator
.
*
)
Variable
genE2
:
(
E2
->
Prop
)
->
Prop
.
(
*
Generator
.
*
)
Definition
Prod_measurable
:
(
E1
*
E2
->
Prop
)
->
Prop
:=
Prod
(
measurable
genE1
)
(
measurable
genE2
).
Definition
measurable_Prod
:
(
E1
*
E2
->
Prop
)
->
Prop
:=
measurable
(
Prod_
Sigma_algebra
genE1
genE2
)
.
measurable
Prod_
measurable
.
End
Cartesian_product_def
.
...
...
@@ -379,8 +382,24 @@ Let genExF := Gen_Prod (@open E) (@open F).
(
*
From
Lem
701
p
.
135
,
136
(
RR
-
9386
-
v3
)
(
with
m
:=
2
and
Y_i
:=
X_i
).
*
)
Lemma
measurable_Borel_prod_eq
:
measurable_Borel
=
measurable
genExF
.
Proof
.
unfold
measurable_Borel
,
genExF
.
apply
measurable_gen_ext
;
intros
A
HA
.
apply
measurable_Borel_alt_gen
.
(
*
*
)
Admitted
.
(
*
From
Lem
701
p
.
135
,
136
(
RR
-
9386
-
v3
)
(
with
m
:=
2
and
Y_i
:=
X_i
).
*
)
Lemma
measurable_Borel_prod_eq_alt
:
measurable_Borel
=
measurable_Prod
(
@
open
E
)
(
@
open
F
).
Proof
.
rewrite
measurable_Borel_prod_eq
,
measurable_Prod_eq
;
easy
.
Qed
.
End
Borel_Cartesian_product
.
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