Zulip Chat Archive
Stream: new members
Topic: No theorem Matrix.mulVec_sub
Adrian Wüthrich (Mar 14 2024 at 15:49):
I found no theorem
theorem mulVec_sub [Fintype n] (A : Matrix m n α) (x y : n → α) :
A *ᵥ (x - y) = A *ᵥ x - A *ᵥ y := by
ext
apply dotProduct_sub
there only is docs#Matrix.mulVec_add. Should I create a pull request for this?
Kevin Buzzard (Mar 15 2024 at 00:54):
At first glance it does indeed seem to be missing. Sure make a PR! Thanks!
Adrian Wüthrich (Mar 15 2024 at 07:44):
https://github.com/leanprover-community/mathlib4/pull/11392
Last updated: May 02 2025 at 03:31 UTC