Skip to content

Commit

Permalink
feat: port Data.Polynomial.Derivative (#2725)
Browse files Browse the repository at this point in the history
Co-authored-by: Johan Commelin <johan@commelin.net>
  • Loading branch information
ChrisHughes24 and jcommelin committed Mar 9, 2023
1 parent 43fb515 commit 1e41088
Show file tree
Hide file tree
Showing 3 changed files with 694 additions and 1 deletion.
1 change: 1 addition & 0 deletions Mathlib.lean
Expand Up @@ -726,6 +726,7 @@ import Mathlib.Data.Polynomial.Coeff
import Mathlib.Data.Polynomial.Degree.Definitions
import Mathlib.Data.Polynomial.Degree.Lemmas
import Mathlib.Data.Polynomial.Degree.TrailingDegree
import Mathlib.Data.Polynomial.Derivative
import Mathlib.Data.Polynomial.EraseLead
import Mathlib.Data.Polynomial.Eval
import Mathlib.Data.Polynomial.Induction
Expand Down
2 changes: 1 addition & 1 deletion Mathlib/Algebra/Ring/Basic.lean
Expand Up @@ -69,7 +69,7 @@ def mulLeft [NonUnitalNonAssocSemiring R] (r : R) :

@[simp]
theorem coe_mul_left [NonUnitalNonAssocSemiring R] (r : R) :
(mulLeft r) = (r * ·) :=
(mulLeft r : R → R) = HMul.hMul r :=
rfl
#align add_monoid_hom.coe_mul_left AddMonoidHom.coe_mul_left

Expand Down

0 comments on commit 1e41088

Please sign in to comment.