-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor draft Alternating Maps Bundle
- Loading branch information
1 parent
af84c59
commit e4e5a1b
Showing
4 changed files
with
469 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
import Mathlib.Geometry.Manifold.VectorBundle.Basic | ||
import DeRhamCohomology.VectorBundle.Alternating | ||
|
||
noncomputable section | ||
|
||
open Bundle Set ContinuousLinearMap Pretrivialization | ||
|
||
open scoped Manifold Bundle | ||
|
||
variable {𝕜 ι B F₁ F₂ M : Type*} {E₁ : B → Type*} {E₂ : B → Type*} | ||
[NontriviallyNormedField 𝕜] | ||
[Fintype ι] | ||
{EB : Type*} [NormedAddCommGroup EB] [NormedSpace 𝕜 EB] | ||
{HB : Type*} [TopologicalSpace HB] | ||
(IB : ModelWithCorners 𝕜 EB HB) | ||
[TopologicalSpace B] [ChartedSpace HB B] | ||
[∀ x, AddCommGroup (E₁ x)] [∀ x, Module 𝕜 (E₁ x)] | ||
[NormedAddCommGroup F₁] [NormedSpace 𝕜 F₁] | ||
[TopologicalSpace (TotalSpace F₁ E₁)] [∀ x, TopologicalSpace (E₁ x)] [∀ x, AddCommGroup (E₂ x)] | ||
[∀ x, Module 𝕜 (E₂ x)] | ||
[NormedAddCommGroup F₂] [NormedSpace 𝕜 F₂] | ||
[TopologicalSpace (TotalSpace F₂ E₂)] [∀ x, TopologicalSpace (E₂ x)] | ||
[∀ x, TopologicalAddGroup (E₂ x)] [∀ x, ContinuousSMul 𝕜 (E₂ x)] | ||
{EM : Type*} [NormedAddCommGroup EM] [NormedSpace 𝕜 EM] | ||
{HM : Type*} [TopologicalSpace HM] | ||
{IM : ModelWithCorners 𝕜 EM HM} | ||
[TopologicalSpace M] [ChartedSpace HM M] [SmoothManifoldWithCorners IM M] --{n : ℕ∞} | ||
[FiberBundle F₁ E₁] [VectorBundle 𝕜 F₁ E₁] | ||
[FiberBundle F₂ E₂] [VectorBundle 𝕜 F₂ E₂] | ||
-- {e₁ e₁' : Trivialization F₁ (π F₁ E₁)} | ||
-- {e₂ e₂' : Trivialization F₂ (π F₂ E₂)} | ||
|
||
variable [SmoothVectorBundle F₁ E₁ IB] [SmoothVectorBundle F₂ E₂ IB] | ||
|
||
instance Bundle.continuousAlternatingMap.vectorPrebundle.isSmooth : | ||
(Bundle.continuousAlternatingMap.vectorPrebundle 𝕜 ι F₁ E₁ F₂ E₂).IsSmooth IB where | ||
exists_smoothCoordChange := by | ||
rintro _ ⟨e₁, e₂, he₁, he₂, rfl⟩ _ ⟨e₁', e₂', he₁', he₂', rfl⟩ | ||
refine ⟨continuousAlternatingMapCoordChange 𝕜 ι e₁ e₁' e₂ e₂', ?_, ?_⟩ | ||
· -- have h₃ := contMDiffOn_coordChangeL e₁' e₁ | ||
-- have h₄ := contMDiffOn_coordChangeL e₂ e₂' | ||
let s (q : (F₁ →L[𝕜] F₁) × (F₂ →L[𝕜] F₂)) : | ||
(F₁ →L[𝕜] F₁) × ((F₁ [⋀^ι]→L[𝕜] F₂) →L[𝕜] (F₁ [⋀^ι]→L[𝕜] F₂)) := | ||
(q.1, ContinuousLinearMap.compContinuousAlternatingMapL 𝕜 F₁ F₂ F₂ q.2) | ||
have hs : ContMDiff 𝓘(𝕜, (F₁ →L[𝕜] F₁) × (F₂ →L[𝕜] F₂)) | ||
𝓘(𝕜, (F₁ →L[𝕜] F₁) × ((F₁ [⋀^ι]→L[𝕜] F₂) →L[𝕜] (F₁ [⋀^ι]→L[𝕜] F₂))) ⊤ s := | ||
-- smooth_id.prod_map (ContinuousLinearMap.smooth _) | ||
sorry | ||
-- have' := ((continuous_snd.clm_comp | ||
-- ((ContinuousAlternatingMap.compContinuousLinearMapL_continuous 𝕜 ι F₁ F₂).comp | ||
-- continuous_fst)).comp hs).comp_continuousOn | ||
-- (s := (e₁.baseSet ∩ e₂.baseSet ∩ (e₁'.baseSet ∩ e₂'.baseSet))) ((h₃.mono ?_).prod (h₄.mono ?_)) | ||
-- · exact this | ||
-- · mfld_set_tac | ||
-- · mfld_set_tac | ||
|
||
sorry | ||
· rintro b hb v | ||
apply continuousAlternatingMapCoordChange_apply | ||
exact hb | ||
|
||
instance SmoothVectorBundle.continuousAlternatingMap : | ||
SmoothVectorBundle (F₁ [⋀^ι]→L[𝕜] F₂) (Bundle.continuousAlternatingMap 𝕜 ι F₁ E₁ F₂ E₂) IB := | ||
(Bundle.continuousAlternatingMap.vectorPrebundle 𝕜 ι F₁ E₁ F₂ E₂).smoothVectorBundle IB |
Oops, something went wrong.