-
Notifications
You must be signed in to change notification settings - Fork 1.3k
[Merged by Bors] - feat(Analysis/Normed/Operator): continuous algebra equivalences between continuous endomorphisms are inner #33017
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
Closed
themathqueen
wants to merge
22
commits into
leanprover-community:master
from
themathqueen:cont_algEquiv_inner
Closed
Changes from 20 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
c92d6f8
continuous alg equiv is inner
themathqueen 6dcac6b
fix typo
themathqueen ec17912
ContinuousAlgHom.toContinuousLinearMap instead of ContinuousAlgEquiv
themathqueen 02b0e18
Update Equiv.lean
themathqueen 9b1a538
conjContinuousAlgEquiv def
themathqueen e9559cf
Merge branch 'master' into cont_algEquiv_inner
themathqueen 3574249
remove sec
themathqueen 4a9ae33
cleanup
themathqueen e082369
Merge branch 'master' into cont_algEquiv_inner
themathqueen 5a9c2ed
add refl, trans, and add docstring
themathqueen 1b0f7c2
cleanup
themathqueen 3911962
typo
themathqueen ef5c91f
Merge branch 'master' into cont_algEquiv_inner
themathqueen 6731cca
remove completeness
themathqueen eb5713c
cleanup
themathqueen 2cc6d8f
change docstring
themathqueen 3605086
seminormed
themathqueen 62f9a75
golf
themathqueen 0c14bc4
move around
themathqueen 694847f
golf again
themathqueen 38342ae
proof comment
themathqueen 3327501
typo
themathqueen File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,67 @@ | ||
| /- | ||
| Copyright (c) 2025 Monica Omar. All rights reserved. | ||
| Released under Apache 2.0 license as described in the file LICENSE. | ||
| Authors: Monica Omar | ||
| -/ | ||
| module | ||
|
|
||
| public import Mathlib.Analysis.LocallyConvex.SeparatingDual | ||
| public import Mathlib.Analysis.Normed.Operator.Banach | ||
| public import Mathlib.Topology.Algebra.Algebra.Equiv | ||
|
|
||
| /-! | ||
| # Continuous algebra equivalences between continuous endomorphisms are inner | ||
|
|
||
| This file shows that continuous algebra equivalences between continuous endomorphisms are inner. | ||
| See `Mathlib/LinearAlgebra/GeneralLinearGroup/AlgEquiv.lean` for the non-continuous version. | ||
| The proof follows the same idea as the non-continuous version. | ||
|
|
||
| # TODO: | ||
| - when `V = W`, we can state that the group homomorphism | ||
| `(V →L[𝕜] V)ˣ →* ((V →L[𝕜] V) ≃A[𝕜] (V →L[𝕜] V))` is surjective, | ||
| see `Module.End.mulSemiringActionToAlgEquiv_conjAct_surjective` for the non-continuous | ||
| version of this. | ||
| -/ | ||
|
|
||
| open ContinuousLinearMap ContinuousLinearEquiv | ||
|
|
||
| /-- This is the continuous version of `AlgEquiv.eq_linearEquivConjAlgEquiv`. -/ | ||
| public theorem ContinuousAlgEquiv.eq_continuousLinearEquivConjContinuousAlgEquiv {𝕜 V W : Type*} | ||
| [NontriviallyNormedField 𝕜] [SeminormedAddCommGroup V] [SeminormedAddCommGroup W] | ||
| [NormedSpace 𝕜 V] [NormedSpace 𝕜 W] [SeparatingDual 𝕜 V] [SeparatingDual 𝕜 W] | ||
| (f : (V →L[𝕜] V) ≃A[𝕜] (W →L[𝕜] W)) : | ||
| ∃ U : V ≃L[𝕜] W, f = U.conjContinuousAlgEquiv := by | ||
| by_cases! hV : Subsingleton V | ||
| · by_cases! hV : Subsingleton W | ||
| · exact ⟨{ toLinearEquiv := 0 }, ext <| Subsingleton.allEq _ _⟩ | ||
| simpa using congr(f $(Subsingleton.allEq 0 1)) | ||
| simp_rw [ContinuousAlgEquiv.ext_iff, funext_iff, conjContinuousAlgEquiv_apply, ← comp_assoc, | ||
| eq_comp_toContinuousLinearMap_symm] | ||
| obtain ⟨u, hu⟩ := exists_ne (0 : V) | ||
| obtain ⟨v, huv⟩ := SeparatingDual.exists_ne_zero (R := 𝕜) hu | ||
| obtain ⟨z, hz⟩ : ∃ z : W, ¬ f (smulRight v u) z = (0 : W →L[𝕜] W) z := by | ||
| rw [← not_forall, ← ContinuousLinearMap.ext_iff, map_eq_zero_iff, ContinuousLinearMap.ext_iff] | ||
| exact not_forall.mpr ⟨u, huv.isUnit.smul_eq_zero.not.mpr hu⟩ | ||
| set T := apply' _ (.id 𝕜) z ∘L f.toContinuousAlgHom.toContinuousLinearMap ∘L smulRightL 𝕜 _ _ v | ||
| have hT x : T x = f (smulRight v x) z := rfl | ||
| have this A x : T (A x) = f A (T x) := by | ||
| simp only [hT, ← mul_apply, ← map_mul] | ||
| congr; ext; simp | ||
| have ⟨d, hd⟩ := SeparatingDual.exists_eq_one (R := 𝕜) hz | ||
| have surj : Function.Surjective T := fun w ↦ ⟨f.symm (smulRight d w) u, by simp [T, this, hd]⟩ | ||
| have inj : Function.Injective T := fun x y hxy ↦ by | ||
| have h_smul : smulRight v x = smulRight v y := by | ||
| apply f.injective <| ContinuousLinearMap.ext fun z ↦ ?_ | ||
| obtain ⟨w, rfl⟩ := surj z | ||
| simp [← this, hxy] | ||
| simpa [huv.isUnit.smul_left_cancel] using congr((fun f ↦ f u) $h_smul) | ||
| set Tₗ : V ≃ₗ[𝕜] W := .ofBijective T.toLinearMap ⟨inj, surj⟩ | ||
| set T' := apply' _ (.id 𝕜) u ∘L f.symm.toContinuousAlgHom.toContinuousLinearMap ∘L | ||
| smulRightL 𝕜 _ _ d | ||
| set TL : V ≃L[𝕜] W := { Tₗ with | ||
| continuous_toFun := T.continuous | ||
| continuous_invFun := by | ||
| change Continuous Tₗ.symm.toLinearMap | ||
| suffices T'.toLinearMap = Tₗ.symm from this ▸ T'.continuous | ||
| simp [LinearMap.ext_iff, ← Tₗ.injective.eq_iff, T', this, hT, hd, Tₗ] } | ||
| exact ⟨TL, fun A ↦ (ContinuousLinearMap.ext <| this A).symm⟩ | ||
This file contains hidden or 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 hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.