-
Notifications
You must be signed in to change notification settings - Fork 4
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
Base change (and complexification) of quadratic forms #31
Open
eric-wieser
wants to merge
24
commits into
master
Choose a base branch
from
eric-wieser/tensor_base_change
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
eric-wieser
temporarily deployed
to
documentation
July 20, 2023 22:35
— with
GitHub Actions
Inactive
eric-wieser
temporarily deployed
to
documentation
July 20, 2023 22:36
— with
GitHub Actions
Inactive
eric-wieser
had a problem deploying
to
documentation
July 20, 2023 22:54
— with
GitHub Actions
Failure
eric-wieser
temporarily deployed
to
documentation
July 21, 2023 01:11
— with
GitHub Actions
Inactive
eric-wieser
temporarily deployed
to
documentation
July 21, 2023 01:45
— with
GitHub Actions
Inactive
eric-wieser
temporarily deployed
to
documentation
July 21, 2023 10:07
— with
GitHub Actions
Inactive
eric-wieser
temporarily deployed
to
documentation
July 21, 2023 13:37
— with
GitHub Actions
Inactive
eric-wieser
temporarily deployed
to
documentation
July 21, 2023 13:59
— with
GitHub Actions
Inactive
eric-wieser
temporarily deployed
to
documentation
July 21, 2023 22:12
— with
GitHub Actions
Inactive
eric-wieser
temporarily deployed
to
documentation
July 21, 2023 22:34
— with
GitHub Actions
Inactive
eric-wieser
temporarily deployed
to
documentation
July 22, 2023 10:22
— with
GitHub Actions
Inactive
3 tasks
eric-wieser
temporarily deployed
to
documentation
August 3, 2023 20:56
— with
GitHub Actions
Inactive
But not trivially proven!
eric-wieser
had a problem deploying
to
documentation
August 4, 2023 08:55
— with
GitHub Actions
Failure
eric-wieser
had a problem deploying
to
documentation
August 4, 2023 11:19
— with
GitHub Actions
Failure
eric-wieser
temporarily deployed
to
documentation
August 4, 2023 11:30
— with
GitHub Actions
Inactive
eric-wieser
temporarily deployed
to
documentation
August 4, 2023 11:32
— with
GitHub Actions
Inactive
bors bot
pushed a commit
to leanprover-community/mathlib4
that referenced
this pull request
Aug 17, 2023
…ar forms (#6306) This generalizes the existing `BilinForm.tensorDistrib` to be heterogenous in the rings it uses, such that a base change, ```lean protected def baseChange (B : BilinForm R M₂) : BilinForm A (A ⊗[R] M₂) := ``` falls out as a special case. I do not attempt to generalize `BilinForm.tensorDistribEquiv`. Unfortunately, this changes the defeq as ```diff -(B₁.tmul B₂) (m₁ ⊗ₜ m₂) (m₁' ⊗ₜ m₂') = B₁ m₁ m₁' * B₂ m₂ m₂' +(B₁.tmul B₂) (m₁ ⊗ₜ m₂) (m₁' ⊗ₜ m₂') = B₂ m₂ m₂' • B₁ m₁ m₁' ``` We could fix this by using the right action instead, but that's a lot of work for a very minorly annoying defeq. This also breaks the defeq of `tensorDistribEquiv B = tensorDistrib B`; though the reason is more complicated than the scalar action issue above. It would be fixed if we defined all the homogenous operations on tensor products as special cases of the heterogenous ones, but that's also a lot of work for a very small win. This is a port of work from pygae/lean-ga#31, and almost at the end of the path to a base change of quadratic forms and clifford algebras. This was independently developed at the Leiden workshop as [`BilinForm.baseChange`](https://github.com/alexjbest/ant-lorentz/blob/1f97add294b2d50f99537c15583666d78b0d7e24/AntLorentz/BaseChange.lean#L75-L85), though the results there are not sorry-free.
bors bot
pushed a commit
to leanprover-community/mathlib4
that referenced
this pull request
Aug 17, 2023
…ar forms (#6306) This generalizes the existing `BilinForm.tensorDistrib` to be heterogenous in the rings it uses, such that a base change, ```lean protected def baseChange (B : BilinForm R M₂) : BilinForm A (A ⊗[R] M₂) := ``` falls out as a special case. I do not attempt to generalize `BilinForm.tensorDistribEquiv`. Unfortunately, this changes the defeq as ```diff -(B₁.tmul B₂) (m₁ ⊗ₜ m₂) (m₁' ⊗ₜ m₂') = B₁ m₁ m₁' * B₂ m₂ m₂' +(B₁.tmul B₂) (m₁ ⊗ₜ m₂) (m₁' ⊗ₜ m₂') = B₂ m₂ m₂' • B₁ m₁ m₁' ``` We could fix this by using the right action instead, but that's a lot of work for a very minorly annoying defeq. This also breaks the defeq of `tensorDistribEquiv B = tensorDistrib B`; though the reason is more complicated than the scalar action issue above. It would be fixed if we defined all the homogenous operations on tensor products as special cases of the heterogenous ones, but that's also a lot of work for a very small win. This is a port of work from pygae/lean-ga#31, and almost at the end of the path to a base change of quadratic forms and clifford algebras. This was independently developed at the Leiden workshop as [`BilinForm.baseChange`](https://github.com/alexjbest/ant-lorentz/blob/1f97add294b2d50f99537c15583666d78b0d7e24/AntLorentz/BaseChange.lean#L75-L85), though the results there are not sorry-free.
eric-wieser
temporarily deployed
to
documentation
October 25, 2023 15:12
— with
GitHub Actions
Inactive
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This is now fully covered by leanprover-community/mathlib4#6778