-
Notifications
You must be signed in to change notification settings - Fork 335
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
feat(LinearAlgebra/PiTensorProduct): dependent version of tmulEquiv #18534
base: master
Are you sure you want to change the base?
Conversation
PR summary ae054f4591Import changes for modified filesNo significant changes to the import graph Import changes for all files
|
variable {ι₁ ι₂ : Type*} {α : ι₁ ⊕ ι₂ → Type*} | ||
(f : ∀ i₁, α (.inl i₁)) (g : ∀ i₂, α (.inr i₂)) | ||
|
||
def _root_.Sum.desc : (i : ι₁ ⊕ ι₂) → α i |
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.
Isn't this Sum.rec
?
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.
Thanks! I am fixing this.
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Given a family of
R
-modulesN
indexed byι ⊕ ι'
, we obtain a linear equivalencetmulEquivDep : (⨂[R] i₁, N (.inl i₁)) ⊗[R] (⨂[R] i₂, N (.inr i₂)) ≃ₗ[R] ⨂[R] i, N i
, which generalizestmulEquiv
(which is the case allN i
are the same module).This will be used in #18527.