Linear Transformatio1
Linear Transformatio1
Definition
A linear transformation is a function between two vector spaces that preserves the operations of
vector addition and scalar multiplication.
Formally, a transformation T: V → W is linear if for all vectors u, v in V and scalars c, the following
hold:
2. T(cu) = cT(u)
Key Objectives:
1. Preserve Linearity:
• Ensure operations like addition and scalar multiplication behave consistently after
transformation:
In graph theory, adjacency matrices are used, and applying a linear transformation (like
multiplying by a vector) can help determine reachable paths or update network states efficiently.
Applications in the IT Industry:
1. Computer Graphics:
2. Machine Learning:
3. Data Compression:
• Linear transforms like the Discrete Cosine Transform (DCT) used in JPEG.
4. Computer Vision:
5. Cryptography:
Exercise 1 :
A . Let T: R² → R² be a transformation defined by
Is T a linear transformation?
Solution:
Then:
T(u + v) = T(x₁ + x₂, y₁ + y₂) = (2(x₁ + x₂) + (y₁ + y₂), 3(x₁ + x₂) − (y₁ + y₂))
= T(u) + T(v)
Given vectors:
• u = (1, 2)
• v = (2, 3)
1. Compute T(u):
u = (1, 2)
2. Compute T(v):
v = (2, 3)
u + v = (1 + 2, 2 + 3) = (3, 5)
B . For scalar c,
T(cu) = T(cx₁, cy₁) = (2cx₁ + cy₁, 3cx₁ − cy₁)
T(x, y) = (2x + y, 3x − y)
Let scalar c = 3
Solution:
1. Compute cu = 3u:
cu = 3 × (1, 2) = (3, 6)
From before,
Then,
T is a linear transformation.
Audience Exercises:
Exercise 2:
Question:
Let T: R² → R² be defined by
B. T(cu) = cT(u)
Then:
• u + v = (3, 5)
Since these two results are not equal, the transformation T(x, y) = (x², y) violates the additivity
property of linear transformations.
T is not linear.
This happens because of the x² term, which breaks linearity (not closed under addition or scalar
multiplication).
Exercise B:
Let T: R² → R² be defined by T(x, y) = (x + y, x − y).
T(2, 3) = (2 + 3, 2 − 3)
= (5, -1)
• The red arrow represents the transformed vector (5, -1) after applying the
transformation T(x, y) = (x + y, x − y).
This visual shows how linear transformations can change the direction and length of a vector while
maintaining the structure of the space (e.g., preserving straight lines and origin alignment). Let me
know if you’d like to visualize other transformations or vectors
Conclusion:
Linear transformations are powerful tools in mathematics and the IT industry, providing the
backbone for systems that deal with structured data, visual transformations, and algorithmic
modeling. Understanding their properties helps in building robust solutions across machine
learning, graphics, and software engineering.