Skip to content

Commit 01da082

Browse files
committed
Extra Activity 2 | Maths 2 | IITM
1 parent 07ff2e0 commit 01da082

4 files changed

Lines changed: 271 additions & 0 deletions

File tree

124 KB
Loading
40.2 KB
Loading
113 KB
Loading
Lines changed: 271 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,271 @@
1+
---
2+
title: Extra Activity 2
3+
date: 2025-10-08
4+
weight: 1.1
5+
image: https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSHyWPE5fdL5Mt-K-yvbaceSS7gbUBprr0-QA&s
6+
emoji: 🦾
7+
series_order: 1.1
8+
---
9+
10+
## Exercise Questions 🔥
11+
12+
![alt text](image.png)
13+
![alt text](image-1.png)
14+
![alt text](image-2.png)
15+
16+
## Exercise Solutions 🔬
17+
18+
Here are the detailed solutions and concept explanations for each question from your images.
19+
20+
{{< border >}}
21+
22+
### ❓ Question 1
23+
24+
> 1) Consider the linear transformation T which scales each of the standard basis vectors by a non-zero constant $\lambda$. In the geogebra project, this corresponds to moving the vectors $\mathbf{Te1}$ and $\mathbf{Te2}$ so that the arrowheads are on $(\lambda, 0)$ and $(0, \lambda)$, respectively, for some $\lambda \in \mathbb{R} \setminus \{0\}$ of your choice. Which of the following statements are true for such a linear transformation?
25+
>
26+
> * $\Box$ The matrix of T with respect to the standard bases for the domain and codomain is a scalar matrix.
27+
> * $\Box$ If $\lambda < 0$, the angle between $\mathbf{u}$ and $T(\mathbf{u})$ is $180^\circ$, for all $\mathbf{u} \in \mathbb{R}^2 \setminus \{(0, 0)\}$.
28+
> * $\Box$ If P is the square with vertices $(0, 0), (1, 0), (1, 1)$ and $(0, 1)$, then its image T P has area equal to $\lambda$ square units.
29+
> * $\Box$ If $\lambda > 0$, then there is a non-zero vector $\mathbf{u}$ such that $T(\mathbf{u}) = \mathbf{u}$.
30+
31+
---
32+
33+
### 💡 Answer and Concepts
34+
35+
The **correct statements** are the first two:
36+
* **[TRUE]** The matrix of T... is a scalar matrix.
37+
* **[TRUE]** If $\lambda < 0$, the angle between $\mathbf{u}$ and $T(\mathbf{u})$ is $180^\circ$...
38+
39+
---
40+
41+
### 🧠 Detailed Breakdown
42+
43+
#### 1. Setting up the Matrix
44+
First, let's find the matrix $A$ for this transformation $T$. The context image tells us that the columns of the matrix are the images of the standard basis vectors, $\mathbf{e1} = \begin{bmatrix} 1 \\ 0 \end{bmatrix}$ and $\mathbf{e2} = \begin{bmatrix} 0 \\ 1 \end{bmatrix}$.
45+
46+
* The image of $\mathbf{e1}$ is $\mathbf{Te1} = (\lambda, 0) = \begin{bmatrix} \lambda \\ 0 \end{bmatrix}$. This is the first column.
47+
* The image of $\mathbf{e2}$ is $\mathbf{Te2} = (0, \lambda) = \begin{bmatrix} 0 \\ \lambda \end{bmatrix}$. This is the second column.
48+
49+
So, the matrix of transformation $T$ is:
50+
$$A = \begin{bmatrix} \lambda & 0 \\ 0 & \lambda \end{bmatrix}$$
51+
This transformation is called a **scaling** (or dilation). It scales every vector by a factor of $\lambda$. Let's check this:
52+
$T(\mathbf{u}) = A\mathbf{u} = \begin{bmatrix} \lambda & 0 \\ 0 & \lambda \end{bmatrix} \begin{bmatrix} x \\ y \end{bmatrix} = \begin{bmatrix} \lambda x \\ \lambda y \end{bmatrix} = \lambda \begin{bmatrix} x \\ y \end{bmatrix} = \lambda\mathbf{u}$
53+
54+
Now let's evaluate each statement.
55+
56+
#### 2. Evaluating the Statements
57+
58+
* **Statement 1: "The matrix ... is a scalar matrix."**
59+
* **Concept:** A **scalar matrix** is a special type of diagonal matrix where all the main diagonal entries are equal. It has the form $kI$, where $k$ is a scalar and $I$ is the identity matrix.
60+
* **Analysis:** Our matrix is $A = \begin{bmatrix} \lambda & 0 \\ 0 & \lambda \end{bmatrix} = \lambda \begin{bmatrix} 1 & 0 \\ 0 & 1 \end{bmatrix} = \lambda I$.
61+
* **Conclusion:** This perfectly matches the definition of a scalar matrix. **This statement is TRUE.**
62+
63+
* **Statement 2: "If $\lambda < 0$, the angle between $\mathbf{u}$ and $T(\mathbf{u})$ is $180^\circ$..."**
64+
* **Concept:** When you multiply a vector $\mathbf{u}$ by a negative scalar (like $\lambda < 0$), the resulting vector $\lambda\mathbf{u}$ has the same magnitude (scaled by $|\lambda|$) but points in the exact opposite direction.
65+
* **Analysis:** We found that $T(\mathbf{u}) = \lambda\mathbf{u}$. If $\lambda$ is negative, $T(\mathbf{u})$ is a vector pointing in the opposite direction to $\mathbf{u}$. The angle between two vectors pointing in opposite directions is $180^\circ$.
66+
* **Conclusion:** **This statement is TRUE.**
67+
68+
* **Statement 3: "...its image T P has area equal to $\lambda$ square units."**
69+
* **Concept:** For any linear transformation $T$ with matrix $A$, the area of a transformed shape is the *original area* multiplied by the *absolute value of the determinant* of the matrix $A$.
70+
* $\text{Area}(TP) = |\det(A)| \times \text{Area}(P)$
71+
* **Analysis:**
72+
* The original shape $P$ is a unit square (vertices (0,0), (1,0), (1,1), (0,1)). Its area is $1 \times 1 = 1$ square unit.
73+
* The determinant of our matrix $A$ is:
74+
$\det(A) = \det \begin{bmatrix} \lambda & 0 \\ 0 & \lambda \end{bmatrix} = (\lambda \times \lambda) - (0 \times 0) = \lambda^2$
75+
* The new area is $\text{Area}(TP) = |\lambda^2| \times 1 = \lambda^2$ (since $\lambda^2$ is always non-negative).
76+
* **Conclusion:** The statement says the area is $\lambda$. The correct area is $\lambda^2$. These are not the same (unless $\lambda=1$). For example, if $\lambda=3$, the area is $9$, not $3$. If $\lambda=-2$, the area is $4$, not $-2$. **This statement is FALSE.**
77+
78+
* **Statement 4: "If $\lambda > 0$, then there is a non-zero vector $\mathbf{u}$ such that $T(\mathbf{u}) = \mathbf{u}$."**
79+
* **Concept:** A non-zero vector $\mathbf{u}$ such that $T(\mathbf{u}) = \mathbf{u}$ is called an **eigenvector** of $T$ with an **eigenvalue** of $1$. We need to see if $1$ is an eigenvalue of $A$.
80+
* **Analysis:** We are looking for a non-zero $\mathbf{u}$ that solves the equation $T(\mathbf{u}) = \mathbf{u}$.
81+
* We already know $T(\mathbf{u}) = \lambda\mathbf{u}$.
82+
* So, we need to solve $\lambda\mathbf{u} = \mathbf{u}$.
83+
* Rearranging gives: $\lambda\mathbf{u} - \mathbf{u} = \mathbf{0} \implies (\lambda - 1)\mathbf{u} = \mathbf{0}$.
84+
* Since we need a *non-zero* vector $\mathbf{u}$, the only way this equation can be true is if the scalar part is zero: $\lambda - 1 = 0 \implies \lambda = 1$.
85+
* **Conclusion:** A non-zero vector $\mathbf{u}$ with $T(\mathbf{u})=\mathbf{u}$ exists *only if* $\lambda=1$. The statement claims it's true for *any* $\lambda > 0$ (like $\lambda=2, 3, 0.5$, etc.). This is not true. **This statement is FALSE.**
86+
87+
{{< /border >}}
88+
89+
{{< border >}}
90+
91+
### ❓ Question 2
92+
93+
> 2) It is known that the matrix of a transformation T which rotates every vector counter-clockwise by an angle of $\theta$ is given by
94+
> $$\begin{bmatrix} \cos\theta & -\sin\theta \\ \sin\theta & \cos\theta \end{bmatrix}$$
95+
> In the geogebra project, set $a = 0.6$, $b = -0.8$, $c = 0.8$, $d = 0.6$.
96+
> This gives a transformation which rotates every vector in the plane. Consider the sector S whose vertices are $(0, 0), (1, 2)$ and $(2, 1)$. Under the above transformation, the image of S is a sector TS, which is rotated counter-clockwise by an angle $\sin^{-1}(0.8)$. If the vertices of TS are $(0, 0), (-1, 2)$ and $(0.4, k)$, find the value of $k$.
97+
98+
---
99+
100+
### 💡 Answer and Concepts
101+
102+
The value of **$k$ is $2.2$**.
103+
104+
---
105+
106+
### 🧠 Detailed Breakdown
107+
108+
#### 1. Identify the Transformation
109+
We are given $a = 0.6$, $b = -0.8$, $c = 0.8$, and $d = 0.6$. The matrix $A$ is:
110+
$$A = \begin{bmatrix} a & b \\ c & d \end{bmatrix} = \begin{bmatrix} 0.6 & -0.8 \\ 0.8 & 0.6 \end{bmatrix}$$
111+
This matches the rotation matrix form with $\cos\theta = 0.6$ and $\sin\theta = 0.8$.
112+
113+
#### 2. Identify the Original Vertices
114+
The vertices of the original sector $S$ are:
115+
* $\mathbf{v}_1 = (0, 0)$
116+
* $\mathbf{v}_2 = (1, 2)$
117+
* $\mathbf{v}_3 = (2, 1)$
118+
119+
#### 3. Identify the Transformed Vertices
120+
The vertices of the image sector $TS$ are the *images* of the original vertices under the transformation $T$.
121+
* $T(\mathbf{v}_1) = T(0, 0)$
122+
* $T(\mathbf{v}_2) = T(1, 2)$
123+
* $T(\mathbf{v}_3) = T(2, 1)$
124+
125+
The problem states these transformed vertices are $(0, 0)$, $(-1, 2)$, and $(0.4, k)$.
126+
127+
#### 4. Calculate the Transformed Vertices
128+
We use matrix multiplication ($T(\mathbf{u}) = A\mathbf{u}$) to find the images.
129+
130+
* **Image of $\mathbf{v}_1$:**
131+
$T(0, 0) = \begin{bmatrix} 0.6 & -0.8 \\ 0.8 & 0.6 \end{bmatrix} \begin{bmatrix} 0 \\ 0 \end{bmatrix} = \begin{bmatrix} 0 \\ 0 \end{bmatrix}$.
132+
This is $(0, 0)$. This matches the first vertex given for $TS$.
133+
134+
* **Image of $\mathbf{v}_2$:**
135+
$T(1, 2) = \begin{bmatrix} 0.6 & -0.8 \\ 0.8 & 0.6 \end{bmatrix} \begin{bmatrix} 1 \\ 2 \end{bmatrix} = \begin{bmatrix} (0.6 \times 1) + (-0.8 \times 2) \\ (0.8 \times 1) + (0.6 \times 2) \end{bmatrix} = \begin{bmatrix} 0.6 - 1.6 \\ 0.8 + 1.2 \end{bmatrix} = \begin{bmatrix} -1.0 \\ 2.0 \end{bmatrix}$.
136+
This is $(-1, 2)$. This matches the second vertex given for $TS$.
137+
138+
* **Image of $\mathbf{v}_3$:**
139+
$T(2, 1) = \begin{bmatrix} 0.6 & -0.8 \\ 0.8 & 0.6 \end{bmatrix} \begin{bmatrix} 2 \\ 1 \end{bmatrix} = \begin{bmatrix} (0.6 \times 2) + (-0.8 \times 1) \\ (0.8 \times 2) + (0.6 \times 1) \end{bmatrix} = \begin{bmatrix} 1.2 - 0.8 \\ 1.6 + 0.6 \end{bmatrix} = \begin{bmatrix} 0.4 \\ 2.2 \end{bmatrix}$.
140+
This is $(0.4, 2.2)$.
141+
142+
#### 5. Find k
143+
The problem states that the third vertex of $TS$ is $(0.4, k)$. By comparing this with our calculation, we can see:
144+
$(0.4, k) = (0.4, 2.2)$
145+
Therefore, **$k = 2.2$**.
146+
147+
{{< /border >}}
148+
149+
{{< border >}}
150+
151+
### ❓ Question 3
152+
153+
> 3) Move the head of the vector $\mathbf{Te1}$ to $(1, -1)$. Observe the image T P of the polygon P as you vary the vector $\mathbf{Te2}$ such that its head lies on the line $x = -2$. There is exactly one point $(-2, y_0)$ such that T P is a line segment. For all other points, the image of P is a quadrilateral. Find the value of $y_0$.
154+
155+
---
156+
157+
### 💡 Answer and Concepts
158+
159+
The value of **$y_0$ is $2$**.
160+
161+
---
162+
163+
### 🧠 Detailed Breakdown
164+
165+
#### 1. Concept: When does a 2D shape collapse to a line?
166+
A linear transformation $T: \mathbb{R}^2 \to \mathbb{R}^2$ maps the *entire plane* onto a *line* (or a single point) if and only if its matrix $A$ is **singular**.
167+
* A matrix is **singular** if its determinant is zero ($\det(A) = 0$).
168+
* If $\det(A) = 0$, the columns of the matrix are linearly dependent. This means one column is a scalar multiple of the other.
169+
* This also means the transformation is not invertible and it "collapses" 2D space into a lower dimension (a 1D line or 0D point).
170+
171+
The question states that the image $TP$ (which is normally a 2D quadrilateral) becomes a 1D **line segment**. This tells us we must find the value of $y_0$ that makes the transformation matrix $A$ singular, i.e., $\det(A) = 0$.
172+
173+
#### 2. Set up the Matrix
174+
* We are told to move $\mathbf{Te1}$ to $(1, -1)$. This gives us the first column of $A$:
175+
$\mathbf{c}_1 = \begin{bmatrix} 1 \\ -1 \end{bmatrix}$
176+
* We are told $\mathbf{Te2}$ is a point $(-2, y_0)$. This gives us the second column of $A$:
177+
$\mathbf{c}_2 = \begin{bmatrix} -2 \\ y_0 \end{bmatrix}$
178+
179+
* The full matrix $A$ is:
180+
$$A = \begin{bmatrix} 1 & -2 \\ -1 & y_0 \end{bmatrix}$$
181+
182+
#### 3. Solve for $y_0$
183+
Now, we set the determinant of $A$ to zero and solve for $y_0$.
184+
185+
* $\det(A) = (1 \times y_0) - (-2 \times -1)$
186+
* $\det(A) = y_0 - 2$
187+
188+
* Set the determinant to zero:
189+
$y_0 - 2 = 0$
190+
$y_0 = 2$
191+
192+
#### 4. Verification (Optional)
193+
If $y_0 = 2$, the matrix is $A = \begin{bmatrix} 1 & -2 \\ -1 & 2 \end{bmatrix}$.
194+
Notice that the second column $\begin{bmatrix} -2 \\ 2 \end{bmatrix}$ is exactly $-2$ times the first column $\begin{bmatrix} 1 \\ -1 \end{bmatrix}$. They are linearly dependent, confirming the matrix is singular.
195+
196+
This matrix will map *any* vector $\mathbf{u} = (x, y)$ onto the line $v = -u$.
197+
$T(x, y) = \begin{bmatrix} 1 & -2 \\ -1 & 2 \end{bmatrix} \begin{bmatrix} x \\ y \end{bmatrix} = \begin{bmatrix} x - 2y \\ -x + 2y \end{bmatrix} = (x - 2y) \begin{bmatrix} 1 \\ -1 \end{bmatrix}$.
198+
Since $(x - 2y)$ is just a scalar, every output vector is a multiple of $(1, -1)$, which describes the line $v = -u$. Thus, the entire square $P$ is squashed onto a segment of this line.
199+
200+
{{< /border >}}
201+
202+
{{< border >}}
203+
204+
### ❓ Question 4
205+
206+
> 4) Consider the transformation in the previous question for which the image of P is a line segment. Which of the following statements are true about the transformation?
207+
>
208+
> * $\Box$ The image of the transformation is a line through the origin.
209+
> * $\Box$ The set $\{(1, 1)\}$ is a basis for the Kernel of the transformation.
210+
> * $\Box$ The matrix of the transformation is invertible.
211+
> * $\Box$ There is exactly one line through the origin whose image under the transformation is the singleton set $\{(0, 0)\}$.
212+
> * $\Box$ The set $\{(-1, 1)\}$ is a basis for the image of the transformation.
213+
214+
---
215+
216+
### 💡 Answer and Concepts
217+
218+
From the previous question, we are using the transformation $T$ defined by the matrix $A = \begin{bmatrix} 1 & -2 \\ -1 & 2 \end{bmatrix}$.
219+
220+
The **correct statements** are:
221+
* **[TRUE]** The image of the transformation is a line through the origin.
222+
* **[TRUE]** There is exactly one line through the origin whose image under the transformation is the singleton set $\{(0, 0)\}$.
223+
* **[TRUE]** The set $\{(-1, 1)\}$ is a basis for the image of the transformation.
224+
225+
---
226+
227+
### 🧠 Detailed Breakdown
228+
229+
Let's analyze our matrix $A = \begin{bmatrix} 1 & -2 \\ -1 & 2 \end{bmatrix}$.
230+
231+
* **Statement 1: "The image ... is a line through the origin."**
232+
* **Concept:** The **Image** (also called the Range or Column Space) of a transformation $T$ is the set of all possible output vectors. It is the span of the columns of its matrix $A$.
233+
* **Analysis:** The columns of $A$ are $\mathbf{c}_1 = \begin{bmatrix} 1 \\ -1 \end{bmatrix}$ and $\mathbf{c}_2 = \begin{bmatrix} -2 \\ 2 \end{bmatrix}$.
234+
* Since $\mathbf{c}_2 = -2 \times \mathbf{c}_1$, the two vectors are linearly dependent. They point along the same line.
235+
* The span of these two vectors is just the span of one of them, e.g., $\text{span}(\begin{bmatrix} 1 \\ -1 \end{bmatrix})$.
236+
* The set of all vectors $k \begin{bmatrix} 1 \\ -1 \end{bmatrix}$ (for any scalar $k$) describes the line $y = -x$.
237+
* **Conclusion:** A line $y = -x$ is, by definition, a line through the origin. **This statement is TRUE.**
238+
239+
* **Statement 2: "The set $\{(1, 1)\}$ is a basis for the Kernel..."**
240+
* **Concept:** The **Kernel** (or Null Space) of $T$ is the set of all input vectors $\mathbf{u}$ that get mapped to the zero vector: $T(\mathbf{u}) = \mathbf{0}$. We find it by solving $A\mathbf{u} = \mathbf{0}$.
241+
* **Analysis:** We need to solve $\begin{bmatrix} 1 & -2 \\ -1 & 2 \end{bmatrix} \begin{bmatrix} x \\ y \end{bmatrix} = \begin{bmatrix} 0 \\ 0 \end{bmatrix}$.
242+
* This gives the system:
243+
$x - 2y = 0$
244+
$-x + 2y = 0$
245+
* Both equations simplify to $x = 2y$.
246+
* Any vector in the kernel must have the form $\begin{bmatrix} x \\ y \end{bmatrix} = \begin{bmatrix} 2y \\ y \end{bmatrix} = y \begin{bmatrix} 2 \\ 1 \end{bmatrix}$.
247+
* The kernel is the line spanned by the vector $(2, 1)$. A basis for the kernel is $\{(2, 1)\}$.
248+
* **Conclusion:** The statement says the basis is $\{(1, 1)\}$. This is incorrect. The vector $(1, 1)$ isn't even in the kernel (since $1 \neq 2 \times 1$). **This statement is FALSE.**
249+
250+
* **Statement 3: "The matrix ... is invertible."**
251+
* **Concept:** A matrix is **invertible** if and only if its determinant is non-zero.
252+
* **Analysis:** We found in Q3 that this matrix is singular.
253+
$\det(A) = (1)(2) - (-2)(-1) = 2 - 2 = 0$.
254+
* **Conclusion:** Since the determinant is 0, the matrix is *not* invertible. **This statement is FALSE.**
255+
256+
* **Statement 4: "There is exactly one line through the origin whose image ... is ... $\{(0, 0)\}$."**
257+
* **Concept:** This is just a rephrasing of the definition of the Kernel. The set of *all* vectors whose image is $\{(0, 0)\}$ *is* the kernel.
258+
* **Analysis:** In our analysis for Statement 2, we found that the kernel is the set of vectors $y \begin{bmatrix} 2 \\ 1 \end{bmatrix}$. This is the line $y = (1/2)x$.
259+
* **Conclusion:** The kernel is indeed a single, unique line passing through the origin. **This statement is TRUE.**
260+
261+
* **Statement 5: "The set $\{(-1, 1)\}$ is a basis for the image..."**
262+
* **Concept:** A **basis** for a space is a set of linearly independent vectors that span that space. For a 1D space (a line), any single non-zero vector on that line is a valid basis.
263+
* **Analysis:** In Statement 1, we found the image is the line $y = -x$, spanned by the vector $(1, -1)$.
264+
* The vector given is $(-1, 1)$.
265+
* Does $(-1, 1)$ lie on the line $y = -x$? Yes, $1 = -(-1)$.
266+
* Is $(-1, 1)$ a scalar multiple of our original basis vector $(1, -1)$? Yes, $(-1, 1) = -1 \times (1, -1)$.
267+
* **Conclusion:** Since $\{(-1, 1)\}$ is a non-zero vector that spans the exact same line (the image), it is a valid basis for the image. **This statement is TRUE.**
268+
269+
{{< /border >}}
270+
271+
I hope this detailed breakdown helps you understand the concepts of linear transformations! Would you like to explore any of these concepts, like "kernel" or "determinant," in more detail?

0 commit comments

Comments
 (0)