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
e7aa245a
Commit
e7aa245a
authored
3 years ago
by
François Clément
Browse files
Options
Downloads
Patches
Plain Diff
Proof without image_eq.
parent
75b5812f
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/Subset.v
+2
-2
2 additions, 2 deletions
Lebesgue/Subset.v
with
2 additions
and
2 deletions
Lebesgue/Subset.v
+
2
−
2
View file @
e7aa245a
...
...
@@ -144,6 +144,7 @@ Variable A1 : U1 -> Prop. (* Subset. *)
Variable
A2
:
U2
->
Prop
.
(
*
Subset
.
*
)
Inductive
image
:
U2
->
Prop
:=
Im
:
forall
x1
,
A1
x1
->
image
(
f
x1
).
Definition
image_ex
:
U2
->
Prop
:=
fun
x2
=>
exists
x1
,
A1
x1
/
\
x2
=
f
x1
.
...
...
@@ -1936,8 +1937,7 @@ Lemma preimage_empty_equiv :
forall
A2
,
empty
(
preimage
f
A2
)
<->
disj
A2
(
image
f
fullset
).
Proof
.
intros
A2
;
split
.
rewrite
image_eq
.
intros
HA2
x2
Hx2
[
x1
[
_
Hx1
]];
apply
(
HA2
x1
);
rewrite
Hx1
in
Hx2
;
easy
.
intros
HA2
x2
Hx2a
Hx2b
;
induction
Hx2b
as
[
x1
Hx1
];
apply
(
HA2
x1
);
easy
.
intros
HA2
x1
Hx1
;
apply
(
HA2
(
f
x1
));
easy
.
Qed
.
...
...
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