-
Notifications
You must be signed in to change notification settings - Fork 2
feat: the limit of the norm of the evaluation of f at any increasing approximate unit is the norm of f
#77
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
Merged
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
c6bf643
nonunital version, wip
themathqueen 16d850d
move and more sorries
themathqueen 57384db
one sorry left
themathqueen 9991e7b
finish
themathqueen 9fa5b1f
some refactor
themathqueen 5783ea6
docstrings
themathqueen 0ce8605
use the coercion instead of .toCLM
themathqueen de8549e
fix
themathqueen fb22dc7
cauchy-schwarz for one variable
themathqueen 0171019
cleanup
themathqueen 386ff1f
generalize to nnrpow
themathqueen 6f33999
cleanup]
themathqueen ee53f22
add lemma back
themathqueen 196b588
fix docstring
themathqueen 5db79c5
change to PCLM
themathqueen 2bca433
CoeTC -> Coe
themathqueen 4884c34
cleanup
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
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
20 changes: 17 additions & 3 deletions
20
LeanOA/Mathlib/Analysis/CStarAlgebra/PositiveLinearMap.lean
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 |
|---|---|---|
| @@ -1,15 +1,29 @@ | ||
| import LeanOA.PositiveContinuousLinearMap | ||
| import Mathlib.Analysis.CStarAlgebra.PositiveLinearMap | ||
|
|
||
| namespace PositiveLinearMap | ||
| variable {A₁ A₂ : Type*} [NonUnitalCStarAlgebra A₁] [NonUnitalCStarAlgebra A₂] [PartialOrder A₁] | ||
| [StarOrderedRing A₁] [PartialOrder A₂] [StarOrderedRing A₂] (f : A₁ →ₚ[ℂ] A₂) | ||
|
|
||
| /-- Lift a positive linear map between C⋆-algebras to a continuous linear map. -/ | ||
| def toContinuousLinearMap : A₁ →L[ℂ] A₂ := { f with cont := map_continuous f } | ||
| /-- Lift a positive linear map between C⋆-algebras to a positive continuous linear map. -/ | ||
| def toPositiveContinuousLinearMap : A₁ →P[ℂ] A₂ where __ := f | ||
|
|
||
| @[simp] theorem toPositiveContinuousLinearMap_apply (x : A₁) : | ||
| f.toPositiveContinuousLinearMap x = f x := rfl | ||
| @[simp] theorem toPositiveContinuousLinearMap_zero : | ||
| (0 : A₁ →ₚ[ℂ] A₂).toPositiveContinuousLinearMap = 0 := rfl | ||
| @[simp] lemma toPositiveContinuousLinearMap_id : | ||
| (PositiveLinearMap.id ℂ A₁).toPositiveContinuousLinearMap = .id ℂ A₁ := rfl | ||
|
|
||
| @[simp] theorem toContinuousLinearMap_apply (x : A₁) : f.toContinuousLinearMap x = f x := rfl | ||
| -- maybe remove the following? | ||
| /-- Lift a positive linear map between C⋆-algebras to a continuous linear map. -/ | ||
| abbrev toContinuousLinearMap : A₁ →L[ℂ] A₂ := f.toPositiveContinuousLinearMap.toContinuousLinearMap | ||
|
|
||
| theorem toContinuousLinearMap_apply (x : A₁) : f.toContinuousLinearMap x = f x := rfl | ||
| @[simp] theorem toContinuousLinearMap_zero : (0 : A₁ →ₚ[ℂ] A₂).toContinuousLinearMap = 0 := rfl | ||
| @[simp] theorem toLinearMap_toContinuousLinearMap : | ||
| f.toContinuousLinearMap.toLinearMap = f.toLinearMap := rfl | ||
| @[simp] lemma toContinuousLinearMap_id : | ||
| (PositiveLinearMap.id ℂ A₁).toContinuousLinearMap = .id ℂ A₁ := rfl | ||
|
|
||
| end PositiveLinearMap |
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Important note: in Mathlib,
unitClosedBallis used. So we should change all forms ofclosedUnitBallin LeanOA to that.I think
closedBall 0 1should be an abbreviation since it's used a lot, it would at least allow for consistent naming.