mathlib documentation

geometry.​manifold.​smooth_manifold_with_corners

geometry.​manifold.​smooth_manifold_with_corners

Smooth manifolds (possibly with boundary or corners)

A smooth manifold is a manifold modelled on a normed vector space, or a subset like a half-space (to get manifolds with boundaries) for which the changes of coordinates are smooth maps. We define a model with corners as a map I : H โ†’ E embedding nicely the topological space H in the vector space E (or more precisely as a structure containing all the relevant properties). Given such a model with corners I on (E, H), we define the groupoid of local homeomorphisms of H which are smooth when read in E (for any regularity n : with_top โ„•). With this groupoid at hand and the general machinery of charted spaces, we thus get the notion of C^n manifold with respect to any model with corners I on (E, H). We also introduce a specific type class for C^โˆž manifolds as these are the most commonly used.

Main definitions

As specific examples of models with corners, we define (in the file real_instances.lean)

With these definitions at hand, to invoke an n-dimensional real manifold without boundary, one could use

variables {n : โ„•} {M : Type*} [topological_space M] [charted_space (euclidean_space (fin n)) M] [smooth_manifold_with_corners (๐“ก n) M].

However, this is not the recommended way: a theorem proved using this assumption would not apply for instance to the tangent space of such a manifold, which is modelled on (euclidean_space (fin n)) ร— (euclidean_space (fin n)) and not on euclidean_space (fin (2 * n))! In the same way, it would not apply to product manifolds, modelled on (euclidean_space (fin n)) ร— (euclidean_space (fin m)). The right invocation does not focus on one specific construction, but on all constructions sharing the right properties, like

variables {E : Type*} [normed_group E] [normed_space โ„ E] [finite_dimensional โ„ E] {I : model_with_corners โ„ E E} [I.boundaryless] {M : Type*} [topological_space M] [charted_space E M] [smooth_manifold_with_corners I M]

Here, I.boundaryless is a typeclass property ensuring that there is no boundary (this is for instance the case for model_with_corners_self, or products of these). Note that one could consider as a natural assumption to only use the trivial model with corners model_with_corners_self โ„ E, but again in product manifolds the natural model with corners will not be this one but the product one (and they are not defeq as (ฮปp : E ร— F, (p.1, p.2)) is not defeq to the identity). So, it is important to use the above incantation to maximize the applicability of theorems.

Implementation notes

We want to talk about manifolds modelled on a vector space, but also on manifolds with boundary, modelled on a half space (or even manifolds with corners). For the latter examples, we still want to define smooth functions, tangent bundles, and so on. As smooth functions are well defined on vector spaces or subsets of these, one could take for model space a subtype of a vector space. With the drawback that the whole vector space itself (which is the most basic example) is not directly a subtype of itself: the inclusion of univ : set E in set E would show up in the definition, instead of id.

A good abstraction covering both cases it to have a vector space E (with basic example the Euclidean space), a model space H (with basic example the upper half space), and an embedding of H into E (which can be the identity for H = E, or subtype.val for manifolds with corners). We say that the pair (E, H) with their embedding is a model with corners, and we encompass all the relevant properties (in particular the fact that the image of H in E should have unique differentials) in the definition of model_with_corners.

We concentrate on C^โˆž manifolds: all the definitions work equally well for C^n manifolds, but later on it is a pain to carry all over the smoothness parameter, especially when one wants to deal with C^k functions as there would be additional conditions k โ‰ค n everywhere. Since one deals almost all the time with C^โˆž (or analytic) manifolds, this seems to be a reasonable choice that one could revisit later if needed. C^k manifolds are still available, but they should be called using has_groupoid M (times_cont_diff_groupoid k I) where I is the model with corners.

I have considered using the model with corners I as a typeclass argument, possibly out_param, to get lighter notations later on, but it did not turn out right, as on E ร— F there are two natural model with corners, the trivial (identity) one, and the product one, and they are not defeq and one needs to indicate to Lean which one we want to use. This means that when talking on objects on manifolds one will most often need to specify the model with corners one is using. For instance, the tangent bundle will be tangent_bundle I M and the derivative will be mfderiv I I' f, instead of the more natural notations tangent_bundle ๐•œ M and mfderiv ๐•œ f (the field has to be explicit anyway, as some manifolds could be considered both as real and complex manifolds).

Models with corners.

@[nolint]
structure model_with_corners (๐•œ : Type u_1) [nondiscrete_normed_field ๐•œ] (E : Type u_2) [normed_group E] [normed_space ๐•œ E] (H : Type u_3) [topological_space H] :
Type (max u_2 u_3)

A structure containing informations on the way a space H embeds in a model vector space E over the field ๐•œ. This is all what is needed to define a smooth manifold with model space H, and model vector space E.

def model_with_corners_self (๐•œ : Type u_1) [nondiscrete_normed_field ๐•œ] (E : Type u_2) [normed_group E] [normed_space ๐•œ E] :
model_with_corners ๐•œ E E

A vector space is a model with corners.

Equations
@[instance]
def model_with_corners.​has_coe_to_fun {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] :

Equations
def model_with_corners.​symm {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] :
model_with_corners ๐•œ E H โ†’ local_equiv E H

The inverse to a model with corners, only registered as a local equiv.

Equations
@[simp]
theorem model_with_corners.​to_local_equiv_coe {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) :

@[simp]
theorem model_with_corners.​mk_coe {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (e : local_equiv H E) (a : e.source = set.univ) (b : unique_diff_on ๐•œ (set.range e.to_fun)) (c : continuous e.to_fun . "continuity'") (d : continuous e.inv_fun . "continuity'") :

@[simp]
theorem model_with_corners.​to_local_equiv_coe_symm {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) :

@[simp]
theorem model_with_corners.​mk_coe_symm {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (e : local_equiv H E) (a : e.source = set.univ) (b : unique_diff_on ๐•œ (set.range e.to_fun)) (c : continuous e.to_fun . "continuity'") (d : continuous e.inv_fun . "continuity'") :

theorem model_with_corners.​unique_diff {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) :

theorem model_with_corners.​continuous {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) :

theorem model_with_corners.​continuous_symm {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) :

@[simp]
theorem model_with_corners_self_local_equiv (๐•œ : Type u_1) [nondiscrete_normed_field ๐•œ] (E : Type u_2) [normed_group E] [normed_space ๐•œ E] :

In the trivial model with corners, the associated local equiv is the identity.

@[simp]
theorem model_with_corners_self_coe (๐•œ : Type u_1) [nondiscrete_normed_field ๐•œ] (E : Type u_2) [normed_group E] [normed_space ๐•œ E] :

@[simp]
theorem model_with_corners_self_coe_symm (๐•œ : Type u_1) [nondiscrete_normed_field ๐•œ] (E : Type u_2) [normed_group E] [normed_space ๐•œ E] :

@[simp]
theorem model_with_corners.​target {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) :

@[simp]
theorem model_with_corners.​left_inv {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) (x : H) :
โ‡‘(I.symm) (โ‡‘I x) = x

@[simp]
theorem model_with_corners.​left_inv' {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) :

@[simp]
theorem model_with_corners.​right_inv {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) {x : E} :

theorem model_with_corners.​image {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) (s : set H) :

theorem model_with_corners.​unique_diff_preimage {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) {s : set H} :

theorem model_with_corners.​unique_diff_preimage_source {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) {ฮฒ : Type u_4} [topological_space ฮฒ] {e : local_homeomorph H ฮฒ} :

theorem model_with_corners.​unique_diff_at_image {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) {x : H} :

def model_with_corners.​prod {๐•œ : Type u} [nondiscrete_normed_field ๐•œ] {E : Type v} [normed_group E] [normed_space ๐•œ E] {H : Type w} [topological_space H] (I : model_with_corners ๐•œ E H) {E' : Type v'} [normed_group E'] [normed_space ๐•œ E'] {H' : Type w'} [topological_space H'] :
model_with_corners ๐•œ E' H' โ†’ model_with_corners ๐•œ (E ร— E') (model_prod H H')

Given two model_with_corners I on (E, H) and I' on (E', H'), we define the model with corners I.prod I' on (E ร— E', H ร— H'). This appears in particular for the manifold structure on the tangent bundle to a manifold modelled on (E, H): it will be modelled on (E ร— E, H ร— E).

Equations
def model_with_corners.​tangent {๐•œ : Type u} [nondiscrete_normed_field ๐•œ] {E : Type v} [normed_group E] [normed_space ๐•œ E] {H : Type w} [topological_space H] :
model_with_corners ๐•œ E H โ†’ model_with_corners ๐•œ (E ร— E) (model_prod H E)

Special case of product model with corners, which is trivial on the second factor. This shows up as the model to tangent bundles.

Equations
@[simp]
theorem model_with_corners_prod_to_local_equiv {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {F : Type u_4} [normed_group F] [normed_space ๐•œ F] {H : Type u_6} [topological_space H] {G : Type u_8} [topological_space G] {I : model_with_corners ๐•œ E H} {J : model_with_corners ๐•œ F G} :

@[simp]
theorem model_with_corners_prod_coe {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {E' : Type u_3} [normed_group E'] [normed_space ๐•œ E'] {H : Type u_6} [topological_space H] {H' : Type u_7} [topological_space H'] (I : model_with_corners ๐•œ E H) (I' : model_with_corners ๐•œ E' H') :

@[simp]
theorem model_with_corners_prod_coe_symm {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {E' : Type u_3} [normed_group E'] [normed_space ๐•œ E'] {H : Type u_6} [topological_space H] {H' : Type u_7} [topological_space H'] (I : model_with_corners ๐•œ E H) (I' : model_with_corners ๐•œ E' H') :

@[class]
structure model_with_corners.​boundaryless {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] :
model_with_corners ๐•œ E H โ†’ Prop

Property ensuring that the model with corners I defines manifolds without boundary.

Instances
@[instance]
def model_with_corners_self_boundaryless (๐•œ : Type u_1) [nondiscrete_normed_field ๐•œ] (E : Type u_2) [normed_group E] [normed_space ๐•œ E] :

The trivial model with corners has no boundary

Equations
  • _ = _
@[instance]
def model_with_corners.​range_eq_univ_prod {๐•œ : Type u} [nondiscrete_normed_field ๐•œ] {E : Type v} [normed_group E] [normed_space ๐•œ E] {H : Type w} [topological_space H] (I : model_with_corners ๐•œ E H) [I.boundaryless] {E' : Type v'} [normed_group E'] [normed_space ๐•œ E'] {H' : Type w'} [topological_space H'] (I' : model_with_corners ๐•œ E' H') [I'.boundaryless] :

If two model with corners are boundaryless, their product also is

Equations
  • _ = _

Smooth functions on models with corners

def times_cont_diff_groupoid (n : with_top โ„•) {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] :
model_with_corners ๐•œ E H โ†’ structure_groupoid H

Given a model with corners (E, H), we define the groupoid of C^n transformations of H as the maps that are C^n when read in E through I.

Equations
theorem times_cont_diff_groupoid_le {m n : with_top โ„•} {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) :

Inclusion of the groupoid of C^n local diffeos in the groupoid of C^m local diffeos when m โ‰ค n

theorem times_cont_diff_groupoid_zero_eq {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) :

The groupoid of 0-times continuously differentiable maps is just the groupoid of all local homeomorphisms

theorem of_set_mem_times_cont_diff_groupoid (n : with_top โ„•) {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) {s : set H} (hs : is_open s) :

An identity local homeomorphism belongs to the C^n groupoid.

theorem symm_trans_mem_times_cont_diff_groupoid (n : with_top โ„•) {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) {M : Type u_4} [topological_space M] (e : local_homeomorph M H) :

The composition of a local homeomorphism from H to M and its inverse belongs to the C^n groupoid.

theorem times_cont_diff_groupoid_prod {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] {E' : Type u_5} [normed_group E'] [normed_space ๐•œ E'] {H' : Type u_6} [topological_space H'] {I : model_with_corners ๐•œ E H} {I' : model_with_corners ๐•œ E' H'} {e : local_homeomorph H H} {e' : local_homeomorph H' H'} :

The product of two smooth local homeomorphisms is smooth.

@[instance]
def times_cont_diff_groupoid.​closed_under_restriction (n : with_top โ„•) {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) :

The C^n groupoid is closed under restriction.

Equations
  • _ = _

Smooth manifolds with corners

@[class]
structure smooth_manifold_with_corners {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) (M : Type u_4) [topological_space M] [charted_space H M] :
Prop

Typeclass defining smooth manifolds with corners with respect to a model with corners, over a field ๐•œ and with infinite smoothness to simplify typeclass search and statements later on.

Instances
@[instance]
def model_space_smooth {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] {I : model_with_corners ๐•œ E H} :

For any model with corners, the model space is a smooth manifold

Equations
def smooth_manifold_with_corners.​maximal_atlas {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) (M : Type u_4) [topological_space M] [charted_space H M] :

The maximal atlas of M for the smooth manifold with corners structure corresponding to the model with corners I.

Equations
theorem smooth_manifold_with_corners.​compatible {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) {M : Type u_4} [topological_space M] [charted_space H M] [smooth_manifold_with_corners I M] {e e' : local_homeomorph M H} :

@[instance]
def smooth_manifold_with_corners.​prod_smooth_manifold_with_corners {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {E' : Type u_3} [normed_group E'] [normed_space ๐•œ E'] {H : Type u_4} [topological_space H] {I : model_with_corners ๐•œ E H} {H' : Type u_5} [topological_space H'] {I' : model_with_corners ๐•œ E' H'} (M : Type u_6) [topological_space M] [charted_space H M] [smooth_manifold_with_corners I M] (M' : Type u_7) [topological_space M'] [charted_space H' M'] [smooth_manifold_with_corners I' M'] :

The product of two smooth manifolds with corners is naturally a smooth manifold with corners.

Equations

Extended charts

In a smooth manifold with corners, the model space is the space H. However, we will also need to use extended charts taking values in the model vector space E. These extended charts are not local_homeomorph as the target is not open in E in general, but we can still register them as local_equiv.

@[simp]
def ext_chart_at {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) {M : Type u_4} [topological_space M] [charted_space H M] :
M โ†’ local_equiv M E

The preferred extended chart on a manifold with corners around a point x, from a neighborhood of x to the model vector space.

Equations
theorem ext_chart_at_source {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) {M : Type u_4} [topological_space M] [charted_space H M] (x : M) :

theorem ext_chart_at_open_source {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) {M : Type u_4} [topological_space M] [charted_space H M] (x : M) :

theorem mem_ext_chart_source {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) {M : Type u_4} [topological_space M] [charted_space H M] (x : M) :

theorem ext_chart_at_to_inv {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) {M : Type u_4} [topological_space M] [charted_space H M] (x : M) :

theorem ext_chart_at_source_mem_nhds {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) {M : Type u_4} [topological_space M] [charted_space H M] (x : M) :

theorem ext_chart_at_continuous_on {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) {M : Type u_4} [topological_space M] [charted_space H M] (x : M) :

theorem ext_chart_at_continuous_at {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) {M : Type u_4} [topological_space M] [charted_space H M] (x : M) :

theorem ext_chart_at_continuous_on_symm {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) {M : Type u_4} [topological_space M] [charted_space H M] (x : M) :

theorem ext_chart_at_target_mem_nhds_within {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) {M : Type u_4} [topological_space M] [charted_space H M] (x : M) :

theorem ext_chart_at_coe {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) {M : Type u_4} [topological_space M] [charted_space H M] (x p : M) :

theorem ext_chart_at_coe_symm {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) {M : Type u_4} [topological_space M] [charted_space H M] (x : M) (p : E) :

theorem nhds_within_ext_chart_target_eq {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) {M : Type u_4} [topological_space M] [charted_space H M] (x : M) :

theorem ext_chart_continuous_at_symm' {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) {M : Type u_4} [topological_space M] [charted_space H M] (x : M) {x' : M} :

theorem ext_chart_continuous_at_symm {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) {M : Type u_4} [topological_space M] [charted_space H M] (x : M) :

theorem ext_chart_preimage_mem_nhds_within' {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) {M : Type u_4} [topological_space M] [charted_space H M] (x : M) {s t : set M} {x' : M} :

Technical lemma ensuring that the preimage under an extended chart of a neighborhood of a point in the source is a neighborhood of the preimage, within a set.

theorem ext_chart_preimage_mem_nhds_within {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) {M : Type u_4} [topological_space M] [charted_space H M] (x : M) {s t : set M} :

Technical lemma ensuring that the preimage under an extended chart of a neighborhood of the base point is a neighborhood of the preimage, within a set.

theorem ext_chart_preimage_mem_nhds {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) {M : Type u_4} [topological_space M] [charted_space H M] (x : M) {t : set M} :

Technical lemma ensuring that the preimage under an extended chart of a neighborhood of a point is a neighborhood of the preimage.

theorem ext_chart_preimage_inter_eq {๐•œ : Type u_1} [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] {H : Type u_3} [topological_space H] (I : model_with_corners ๐•œ E H) {M : Type u_4} [topological_space M] [charted_space H M] (x : M) {s t : set M} :

Technical lemma to rewrite suitably the preimage of an intersection under an extended chart, to bring it into a convenient form to apply derivative lemmas.

theorem ext_chart_model_space_eq_id (๐•œ : Type u_1) [nondiscrete_normed_field ๐•œ] {E : Type u_2} [normed_group E] [normed_space ๐•œ E] (x : E) :

In the case of the manifold structure on a vector space, the extended charts are just the identity.