-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Give specific examples #25
Comments
A nice way to define spheres, would be as I made a sketch on a separate branch. While playing around, I noticed that working with Definition open_in_subspace
{X : TopologicalSpace}
(S : Ensemble (point_set X))
(U : Ensemble (point_set X)) :=
Included U S /\ exists U', open U' /\ U = Intersection S U'. And similar notion for compactness? Or at least a lemma that maps from |
The definition Some more example spaces & constructions:
|
Some possible constructions and isomorphisms:
|
Only since v8.13 is it possible to use `apply` on multiple hypotheses simultaneously. The functions `curry` and `uncurry` only exist since Coq v8.13 and were earlier called `prod_uncurry` and `prod_curry`. But the latter got deprecated. To ensure compatibility with Coq v8.12 (and simplifying the code a little when using `f1` but complicating the def. of `f1`) the definition of `f1` is changed a little. This theorem is only available in Coq v8.13 and later. To stay compatible with Coq v8.12, this theorem has to be avoided.
Only since v8.13 is it possible to use `apply` on multiple hypotheses simultaneously. The functions `curry` and `uncurry` only exist since Coq v8.13 and were earlier called `prod_uncurry` and `prod_curry`. But the latter got deprecated. To ensure compatibility with Coq v8.12 (and simplifying the code a little when using `f1` but complicating the def. of `f1`) the definition of `f1` is changed a little. This theorem is only available in Coq v8.13 and later. To stay compatible with Coq v8.12, this theorem has to be avoided.
Only since v8.13 is it possible to use `apply` on multiple hypotheses simultaneously. The functions `curry` and `uncurry` only exist since Coq v8.13 and were earlier called `prod_uncurry` and `prod_curry`. But the latter got deprecated. To ensure compatibility with Coq v8.12 (and simplifying the code a little when using `f1` but complicating the def. of `f1`) the definition of `f1` is changed a little. This theorem is only available in Coq v8.13 and later. To stay compatible with Coq v8.12, this theorem has to be avoided.
Only since v8.13 is it possible to use `apply` on multiple hypotheses simultaneously. The functions `curry` and `uncurry` only exist since Coq v8.13 and were earlier called `prod_uncurry` and `prod_curry`. But the latter got deprecated. To ensure compatibility with Coq v8.12 (and simplifying the code a little when using `f1` but complicating the def. of `f1`) the definition of `f1` is changed a little. This theorem is only available in Coq v8.13 and later. To stay compatible with Coq v8.12, this theorem has to be avoided.
Maybe it'd be useful to give some simple and practical examples to the defined topological constructions and proven theorems. E. g. a homeomorphism between a unit interval with identified ends and a unit circle.
The text was updated successfully, but these errors were encountered: