The difference of linear maps between left modules over commutative rings
Content created by Louis Wasserman.
Created on 2026-02-24.
Last modified on 2026-02-24.
module linear-algebra.difference-linear-maps-left-modules-commutative-rings where
Imports
open import commutative-algebra.commutative-rings open import foundation.universe-levels open import group-theory.abelian-groups open import linear-algebra.addition-linear-maps-left-modules-commutative-rings open import linear-algebra.left-modules-commutative-rings open import linear-algebra.linear-maps-left-modules-commutative-rings
Idea
The
difference¶
of two linear maps f and
g between two left modules over a
commutative ring is the linear map
x ↦ (f x - g x).
Definition
module _ {l1 l2 l3 : Level} (R : Commutative-Ring l1) (M : left-module-Commutative-Ring l2 R) (N : left-module-Commutative-Ring l3 R) where diff-linear-map-left-module-Commutative-Ring : linear-map-left-module-Commutative-Ring R M N → linear-map-left-module-Commutative-Ring R M N → linear-map-left-module-Commutative-Ring R M N diff-linear-map-left-module-Commutative-Ring = right-subtraction-Ab (ab-add-linear-map-left-module-Commutative-Ring R M N)
Recent changes
- 2026-02-24. Louis Wasserman. Eigenvalues, eigenvectors, and eigenspaces of linear endomaps (#1765).