theorem
proved
wrapper
AApply_neg
show as:
view Lean formalization →
formal statement (Lean)
91theorem AApply_neg {n : ℕ}
92 (lam : ℝ) (hInv : Fin n → Fin n → ℝ) (β w : Vec n) :
93 AApply lam hInv β (-w) = -AApply lam hInv β w := by
proof body
One-line wrapper that applies simpa.
94 simpa using AApply_smul lam hInv β (-1) w
95