-3

Linear Transformation is a term used often in physics. For example, we are told here that a tensor is a generalization of a linear transformation. I've never actually learned what they are, though. Could someone explain?

Gordon
  • 120

1 Answers1

5

A linear transformation $A:V\to W$ is a map between vector spaces $V$ and $W$ such that for any two vectors $v_1, v_2 \in V$,

$$A(v_1+v_2) = A(v_1) + A(v_2),$$

and for any scalar $\lambda$,

$$ A(\lambda v_1) = \lambda A(v_1).$$

In other words a linear transformation is a map between vector spaces that respects the linear structure of both vector spaces.

TimRias
  • 166