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
559ba583
Commit
559ba583
authored
2 years ago
by
François Clément
Browse files
Options
Downloads
Patches
Plain Diff
Add is_Basisf_equiv.
parent
f947d0a2
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/Set_theory/Set_system/Set_system_any.v
+17
-3
17 additions, 3 deletions
Lebesgue/Set_theory/Set_system/Set_system_any.v
with
17 additions
and
3 deletions
Lebesgue/Set_theory/Set_system/Set_system_any.v
+
17
−
3
View file @
559ba583
...
...
@@ -428,12 +428,26 @@ Context {U : Type}.
Variable
T
:
set_system
U
.
Lemma
is_Basisf_equiv
:
forall
{
Idx
:
Type
}
(
fB
:
Idx
->
set
U
),
is_Basisf
T
fB
<->
((
forall
i
,
T
(
fB
i
))
/
\
forall
A
x
,
T
A
->
A
x
->
exists
i
,
incl
(
fB
i
)
A
/
\
fB
i
x
).
Proof
.
intros
;
split
;
intros
[
HfB1
HfB2
];
split
;
try
easy
.
intros
A
x
HA
Hx
;
rewrite
(
HfB2
_
HA
)
in
Hx
;
destruct
Hx
as
[
i
[
Hi1
Hi2
]];
exists
i
;
easy
.
intros
A
HA
;
apply
set_ext_equiv
;
split
;
intros
x
Hx
.
destruct
(
HfB2
_
_
HA
Hx
)
as
[
i
Hi
];
exists
i
;
easy
.
destruct
Hx
as
[
i
[
Hi1
Hi2
]];
auto
.
Qed
.
Lemma
is_Basisp_equiv
:
forall
(
PB
:
set_system
U
),
is_Basisp
T
PB
<->
(
Incl
PB
T
/
\
forall
A
x
,
T
A
->
A
x
->
exists
B
,
PB
B
/
\
incl
B
A
/
\
B
x
).
Proof
.
intros
PB
;
split
;
intros
[
HPB1
HPB2
];
split
;
try
easy
.
intros
;
split
;
intros
[
HPB1
HPB2
];
split
;
try
easy
.
intros
A
x
HA
Hx
;
rewrite
(
HPB2
_
HA
)
in
Hx
;
destruct
Hx
as
[
B
HB
];
exists
B
;
easy
.
intros
A
HA
;
apply
set_ext_equiv
;
split
;
intros
x
Hx
.
...
...
@@ -441,9 +455,9 @@ destruct (HPB2 _ _ HA Hx) as [B HB]; exists B; easy.
destruct
Hx
as
[
B
[[
HB1
HB2
]
HB3
]];
auto
.
Qed
.
Variable
P
:
set_system
U
.
Variable
P
B
:
set_system
U
.
Lemma
is_Basisp_Union_any_closure
:
is_Basisp
(
Union_any_closure
P
)
P
.
Lemma
is_Basisp_Union_any_closure
:
is_Basisp
(
Union_any_closure
P
B
)
P
B
.
Proof
.
split
.
apply
Union_any_closure_Gen
.
...
...
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