top of page
Inaugurated by IN-SPACe
ISRO Registered Space Tutor

S7-SA2-0330

What is the Composition of Linear Transformations?

Grade Level:

Class 12

AI/ML, Physics, Biotechnology, FinTech, EVs, Space Technology, Climate Science, Blockchain, Medicine, Engineering, Law, Economics

Definition
What is it?

The composition of linear transformations is like doing one transformation after another. Imagine you stretch a rubber band, and then you rotate it; you've applied two transformations in sequence. It results in a single new transformation that does both jobs.

Simple Example
Quick Example

Think of ordering food online. First, the delivery app calculates the shortest path from the restaurant to your home (Transformation 1: path finding). Then, the app applies a discount coupon (Transformation 2: price reduction). The final price you pay is the result of these two transformations composed together.

Worked Example
Step-by-Step

Let's say we have two linear transformations in 2D space.

Transformation 1 (T1) stretches points by doubling the x-coordinate: T1(x, y) = (2x, y).

---Transformation 2 (T2) rotates points by swapping coordinates: T2(x, y) = (y, x).

---We want to find the composition T2 o T1 (meaning T1 first, then T2) for a point (3, 4).

---Step 1: Apply T1 to (3, 4). T1(3, 4) = (2 * 3, 4) = (6, 4).

---Step 2: Now, take the result from Step 1, which is (6, 4), and apply T2 to it. T2(6, 4) = (4, 6).

---So, the composition T2 o T1 of the point (3, 4) is (4, 6).

Why It Matters

Understanding composition helps in AI/ML to layer neural networks for complex tasks like image recognition, where multiple transformations are applied to data. In computer graphics, it's used to move, scale, and rotate objects on screen. Engineers use it to design everything from car parts to satellite trajectories, making careers in AI, game development, and space technology exciting.

Common Mistakes

MISTAKE: Assuming T1 o T2 is always the same as T2 o T1. | CORRECTION: Composition of transformations is generally not commutative. The order matters, just like putting on socks then shoes is different from shoes then socks.

MISTAKE: Applying the transformations in the wrong order (e.g., doing T2 first for T2 o T1). | CORRECTION: The notation T2 o T1 means you apply T1 first, then apply T2 to the result of T1. Always work from right to left in the notation.

MISTAKE: Confusing composition with addition of transformations. | CORRECTION: Composition means applying one transformation after another. Addition means summing the results of transformations applied to the same input, which is a different operation.

Practice Questions
Try It Yourself

QUESTION: If T1(x, y) = (x+1, y) and T2(x, y) = (x, 2y), find T2 o T1 for the point (2, 3). | ANSWER: (3, 6)

QUESTION: Let T1(x, y) = (3x, y) and T2(x, y) = (x-y, x+y). Find the general form of T2 o T1 (i.e., T2 o T1 (x, y)). | ANSWER: (3x-y, 3x+y)

QUESTION: Consider T1(x, y) = (y, -x) (a 90-degree clockwise rotation) and T2(x, y) = (x+y, x-y). Calculate T1 o T2 for the point (1, 2) and then T2 o T1 for the same point. Are the results the same? | ANSWER: T1 o T2 (1, 2) = (-1, -3); T2 o T1 (1, 2) = (3, -1). No, the results are not the same.

MCQ
Quick Quiz

If L1(x, y) = (x, 2y) and L2(x, y) = (y, x), what is L1 o L2 (3, 5)?

(3, 10)

(5, 6)

(10, 3)

(6, 5)

The Correct Answer Is:

B

First, apply L2 to (3, 5) which gives (5, 3). Then, apply L1 to (5, 3) which gives (5, 2*3) = (5, 6). So, option B is correct.

Real World Connection
In the Real World

In animation for movies or games, when a character jumps and spins, multiple linear transformations (translation for jump, rotation for spin) are composed. For example, a game developer at a studio in Bengaluru uses this to make characters move smoothly across the screen, making the game experience immersive.

Key Vocabulary
Key Terms

TRANSFORMATION: A function that changes the position or shape of an object | LINEAR TRANSFORMATION: A special type of transformation that preserves straight lines and the origin | COMPOSITION: Applying one function after another | MATRIX MULTIPLICATION: A mathematical operation used to represent and calculate the composition of linear transformations | DOMAIN: The set of all possible input values for a function

What's Next
What to Learn Next

Next, you can explore the 'Matrix Representation of Linear Transformations'. This will show you how to write these transformations as matrices and how composition translates to multiplying these matrices, making calculations much faster and easier.

bottom of page