-
Notifications
You must be signed in to change notification settings - Fork 946
[Merged by Bors] - feat(LinearAlgebra/AffineSpace/AffineSubspace/Basic): map_inf lemmas
#32015
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
Conversation
Add two lemmas about affine maps applied to the infimum of two
subspaces, similar to lemmas that exist for various other subobject
types.
```lean
lemma map_inf_le (s₁ s₂ : AffineSubspace k P₁) : (s₁ ⊓ s₂).map f ≤ s₁.map f ⊓ s₂.map f :=
```
```lean
lemma map_inf_eq (hf : Function.Injective f) (s₁ s₂ : AffineSubspace k P₁) :
(s₁ ⊓ s₂).map f = s₁.map f ⊓ s₂.map f := by
```
PR summary f7702fa2d1Import changes for modified filesNo significant changes to the import graph Import changes for all files
Declarations diff
You can run this locally as follows## summary with just the declaration names:
./scripts/declarations_diff.sh <optional_commit>
## more verbose report:
./scripts/declarations_diff.sh long <optional_commit>The doc-module for No changes to technical debt.You can run this locally as
|
Ruben-VandeVelde
left a comment
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.
maintainer merge
|
🚀 Pull request has been placed on the maintainer queue by Ruben-VandeVelde. |
jcommelin
left a comment
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 🎉
bors merge
#32015) Add two lemmas about affine maps applied to the infimum of two subspaces, similar to lemmas that exist for various other subobject types. ```lean lemma map_inf_le (s₁ s₂ : AffineSubspace k P₁) : (s₁ ⊓ s₂).map f ≤ s₁.map f ⊓ s₂.map f := ``` ```lean lemma map_inf_eq (hf : Function.Injective f) (s₁ s₂ : AffineSubspace k P₁) : (s₁ ⊓ s₂).map f = s₁.map f ⊓ s₂.map f := by ```
|
Pull request successfully merged into master. Build succeeded: |
map_inf lemmasmap_inf lemmas
Add two lemmas about affine maps applied to the infimum of two subspaces, similar to lemmas that exist for various other subobject types.