Undergraduate → Algebra → Linear Algebra ↓
Linear Transformations
Linear transformations are a key concept in linear algebra, which itself is a fundamental area of mathematics. Understanding linear transformations involves figuring out how functions map vectors from one vector space to another while preserving the linear structure of the spaces.
What is a linear transformation?
A linear transformation is a function between two vector spaces that preserves the operations of vector addition and scalar multiplication. If T
is a linear transformation from a vector space V
to another vector space W
, then it satisfies the following properties for all vectors u, v
and any scalar c
in V
:
- Additivity:
T(u + v) = T(u) + T(v)
- Scalar multiplication:
T(c * u) = c * T(u)
Basic examples of linear transformations
Let's start with simple examples. Consider the function T
that maps every vector from ℝ²
onto itself:
Example 1: Rotation
A common example of a linear transformation is rotation. Suppose we have a 2D vector (x, y)
, and we want to rotate it by an angle θ. The transformation can be defined by the matrix:
T(x, y) = [[cos(θ), -sin(θ)], [sin(θ), cos(θ)]] * [[x], [y]]
T(x, y) = [[cos(θ), -sin(θ)], [sin(θ), cos(θ)]] * [[x], [y]]
When applied, this transformation rotates the vector counterclockwise by an angle θ around the origin.
Example 2: Scaling
Scaling is another type of linear transformation. Consider a scaling transformation S
that multiplies each vector by a scalar factor. If we apply it to a vector (x, y)
in ℝ²
, we can define it as:
S(x, y) = [[a, 0], [0, b]] * [[x], [y]]
S(x, y) = [[a, 0], [0, b]] * [[x], [y]]
Here a
and b
are constants, scaling the vector along the x-axis and y-axis, respectively.
Properties of linear transformations
Linear transformations have several important properties that often help simplify problems in linear algebra:
Linearity
The defining property of linear transformations is linearity. They preserve the structure of vector addition and scalar multiplication, which are important for analysis and computation.
Matrix representation
Any linear transformation can be represented by a matrix. If you have a transformation T
from ℝ^n
to ℝ^m
, then there exists a mxn
matrix A
such that T(v) = A * v
for all vectors v
in ℝ^n
.
For example, if A
is a matrix representing a linear transformation, and v
is a vector:
A = [[2, 0], [0, 3]] v = [[x], [y]] T(v) = A * v = [[2x], [3y]]
A = [[2, 0], [0, 3]] v = [[x], [y]] T(v) = A * v = [[2x], [3y]]
In this case, the transformation scales the x-component by 2 and the y-component by 3.
Kernel and image
Two important concepts for understanding the nature of linear transformations are the kernel and the image. The kernel of a linear transformation is the set of all vectors that map to the zero vector, and the image is the set of all possible outputs of the transformation.
Reversibility
A linear transformation is invertible if there exists another transformation that can reverse it. If T
is from V
to W
and is invertible, then there exists a transformation T-1
from W
to V
such that T(T-1 (w)) = w
for all w
in W
and T-1 (T(v)) = v
for all v
in V
Visualizing linear transformations
Visual examples can help explain how linear transformations work. Consider stretching along an axis:
In this view, the rectangle represents a set of vectors. The transformation stretches the vectors along the x-axis, changing the shape without moving the base point (the origin).
Conclusion
Linear transformations are fundamental in mathematics because they provide a structural and analytical route to understanding vector spaces and matrices. By preserving the vector operations of addition and scalar multiplication, linear transformations allow vast simplifications in calculations. They facilitate the translation of geometric insights and real-world phenomena into mathematical expressions.
The power of linear transformations lies in their ability to represent complex processes in a variety of applications - from computer graphics and engineering to physics and data analysis - unifying diverse fields through mathematical abstraction and representation.