@@ -48,25 +48,26 @@ but add these assumptions later as needed. (Quite a few results still do not req
48
48
`extChartAt I x` is the canonical such partial equiv around `x`.
49
49
50
50
As specific examples of models with corners, we define (in `Geometry.Manifold.Instances.Real`)
51
- * `modelWithCornersSelf β (EuclideanSpace (Fin n))` for the model space used to define
51
+ * `modelWithCornersSelf β (EuclideanSpace β (Fin n))` for the model space used to define
52
52
`n`-dimensional real manifolds without boundary (with notation `π‘ n` in the locale `Manifold`)
53
- * `ModelWithCorners β (EuclideanSpace (Fin n)) (EuclideanHalfSpace n)` for the model space
53
+ * `ModelWithCorners β (EuclideanSpace β (Fin n)) (EuclideanHalfSpace n)` for the model space
54
54
used to define `n`-dimensional real manifolds with boundary (with notation `π‘β n` in the locale
55
55
`Manifold`)
56
- * `ModelWithCorners β (EuclideanSpace (Fin n)) (EuclideanQuadrant n)` for the model space used
56
+ * `ModelWithCorners β (EuclideanSpace β (Fin n)) (EuclideanQuadrant n)` for the model space used
57
57
to define `n`-dimensional real manifolds with corners
58
58
59
59
With these definitions at hand, to invoke an `n`-dimensional real manifold without boundary,
60
60
one could use
61
61
62
- `variable {n : β} {M : Type*} [TopologicalSpace M] [ChartedSpace (EuclideanSpace (Fin n)) M]
62
+ `variable {n : β} {M : Type*} [TopologicalSpace M] [ChartedSpace (EuclideanSpace β (Fin n)) M]
63
63
[SmoothManifoldWithCorners (π‘ n) M]`.
64
64
65
65
However, this is not the recommended way: a theorem proved using this assumption would not apply
66
66
for instance to the tangent space of such a manifold, which is modelled on
67
- `(EuclideanSpace (Fin n)) Γ (EuclideanSpace (Fin n))` and not on `EuclideanSpace (Fin (2 * n))`!
67
+ `(EuclideanSpace β (Fin n)) Γ (EuclideanSpace β (Fin n))`
68
+ and not on `EuclideanSpace β (Fin (2 * n))`!
68
69
In the same way, it would not apply to product manifolds, modelled on
69
- `(EuclideanSpace (Fin n)) Γ (EuclideanSpace (Fin m))`.
70
+ `(EuclideanSpace β (Fin n)) Γ (EuclideanSpace β (Fin m))`.
70
71
The right invocation does not focus on one specific construction, but on all constructions sharing
71
72
the right properties, like
72
73
0 commit comments