This repository was archived by the owner on Jul 24, 2024. It is now read-only.
refactor(analysis/normed_space/operator_norm): extend from R to any field#821
Closed
sgouezel wants to merge 5 commits intoleanprover-community:masterfrom
Closed
refactor(analysis/normed_space/operator_norm): extend from R to any field#821sgouezel wants to merge 5 commits intoleanprover-community:masterfrom
sgouezel wants to merge 5 commits intoleanprover-community:masterfrom
Conversation
jcommelin
reviewed
Mar 16, 2019
Collaborator
Author
|
Rebased. Should be ready for merging. |
Member
|
It's nice to see some of these proofs simplify! Looks good to me. Let's get this merged. |
Member
|
@sgouezel Travis is unhappy. I think you need to bump up the type class search depth in some places. |
Collaborator
Author
|
Done. |
Collaborator
|
Merged ae8a1fb, but with the wrong commit message. Sorry about that. |
Collaborator
|
@avigad your merge is broken because of type classes. Are you working on that? Otherwise, I would delete that commit from master. |
Collaborator
|
@cipher1024 I tested it on my machine. Maybe it is the instance depth issue. How can I see the error message from Travis? |
Collaborator
|
I see the fix by @ChrisHughes24 now. Chris, thanks for fixing it. |
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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
In the current version, the operator norm of a bounded linear map is defined as its supremum on the unit ball. This does not work if there are points in the space that can not be rescaled to be on the unit sphere. Therefore the definition is currently restricted to vector spaces over R.
We redefine the operator norm as the sup of ||A x||/||x|| for all x, extend to any normed field, and simplify some proofs.