Condition_for_Linear_Transformation
Provedlinear-transformationsmodule-theoryproofwiki
Let be a unitary -module, and let be an -module. Let be a mapping. Then is a linear transformation
Preamble
import Mathlib.Analysis.Complex.Basic
Formal statement
theorem Condition_for_Linear_Transformation {R : Type _} [Ring R] {M N : Type _} [AddCommGroup M] [AddCommGroup N] [Module R M] [Module R N] (f : M → N) (hf_add : ∀ x y : M, f (x + y) = f x + f y) (hf_smul : ∀ (r : R) (x : M), f (r • x) = r • f x) : ∃ g : M →ₗ[R] N, (g : M → N) = f := by sorrySource