100% FREE Updated: Mar 2026 Algebra Linear Algebra

Linear Transformations and Matrices

Comprehensive study notes on Linear Transformations and Matrices for CUET PG Mathematics preparation. This chapter covers key concepts, formulas, and examples needed for your exam.

Linear Transformations and Matrices

This chapter delves into linear transformations and their essential matrix representations, fundamental concepts for understanding mappings between vector spaces. A strong grasp of these topics, including range space, null space, and the Rank-Nullity Theorem, is critical for success in the Algebra section of the CUET PG examination.

---

Chapter Contents

| # | Topic |
|---|-------|
| 1 | Linear Transformations |
| 2 | Range Space and Null Space |
| 3 | Rank-Nullity Theorem |
| 4 | Matrix Representation |

---

We begin with Linear Transformations.

Part 1: Linear Transformations

Linear transformations are fundamental mappings between vector spaces that preserve the operations of vector addition and scalar multiplication. We explore their properties, matrix representations, and implications for understanding vector space structures, which are critical for various applications in mathematics and related fields.

---

Core Concepts

1. Definition of a Linear Transformation

A mapping T:VWT: V \rightarrow W between two vector spaces VV and WW (over the same field FF) is defined as a linear transformation if it satisfies two conditions:

  • Additivity: For all u,vVu, v \in V, T(u+v)=T(u)+T(v)T(u + v) = T(u) + T(v).

  • Homogeneity (Scalar Multiplication): For all uVu \in V and cFc \in F, T(cu)=cT(u)T(cu) = cT(u).
  • These two conditions can be combined into a single condition: for all u,vVu, v \in V and c1,c2Fc_1, c_2 \in F, T(c1u+c2v)=c1T(u)+c2T(v)T(c_1 u + c_2 v) = c_1 T(u) + c_2 T(v).

    📖 Linear Transformation

    A function T:VWT: V \rightarrow W is a linear transformation if for any u,vVu,v \in V and scalar cc, we have T(u+v)=T(u)+T(v)T(u+v) = T(u)+T(v) and T(cu)=cT(u)T(cu) = cT(u).

    Quick Example: Determine if T:R2R2T: \mathbf{R}^2 \rightarrow \mathbf{R}^2 defined by T(x,y)=(x+y,x)T(x, y) = (x + y, x) is a linear transformation.

    Step 1: Check additivity. Let u=(x1,y1)u = (x_1, y_1) and v=(x2,y2)v = (x_2, y_2).

    T(u+v)=T(x1+x2,y1+y2)=((x1+x2)+(y1+y2),(x1+x2))=(x1+y1+x2+y2,x1+x2)\begin{aligned}T(u+v) & = T(x_1+x_2, y_1+y_2) \\ & = ((x_1+x_2) + (y_1+y_2), (x_1+x_2)) \\ & = (x_1+y_1 + x_2+y_2, x_1 + x_2)\end{aligned}
    And
    T(u)+T(v)=(x1+y1,x1)+(x2+y2,x2)=(x1+y1+x2+y2,x1+x2)\begin{aligned}T(u) + T(v) & = (x_1+y_1, x_1) + (x_2+y_2, x_2) \\ & = (x_1+y_1+x_2+y_2, x_1+x_2)\end{aligned}

    We observe T(u+v)=T(u)+T(v)T(u+v) = T(u) + T(v).

    Step 2: Check homogeneity. Let cc be a scalar.

    T(cu)=T(cx1,cy1)=(cx1+cy1,cx1)=c(x1+y1,x1)\begin{aligned}T(cu) & = T(cx_1, cy_1) \\ & = (cx_1 + cy_1, cx_1) \\ & = c(x_1+y_1, x_1)\end{aligned}
    And
    cT(u)=c(x1+y1,x1)cT(u) = c(x_1+y_1, x_1)

    We observe T(cu)=cT(u)T(cu) = cT(u).

    Answer: Since both conditions are satisfied, T(x,y)=(x+y,x)T(x, y) = (x + y, x) is a linear transformation.

    :::question type="MCQ" question="Which of the following functions T:R2R2T: \mathbf{R}^2 \rightarrow \mathbf{R}^2 is a linear transformation?" options=["T(x,y)=(x2,y)T(x, y) = (x^2, y)","T(x,y)=(x+1,y)T(x, y) = (x+1, y)","T(x,y)=(xy,x)T(x, y) = (xy, x)","T(x,y)=(2xy,x+3y)T(x, y) = (2x - y, x + 3y)"] answer="T(x,y)=(2xy,x+3y)T(x, y) = (2x - y, x + 3y)" hint="Test both additivity and homogeneity. Functions with constant terms, products of variables, or non-linear powers are generally not linear." solution="Let u=(x1,y1)u=(x_1, y_1) and v=(x2,y2)v=(x_2, y_2), and cc be a scalar.
    For T(x,y)=(2xy,x+3y)T(x, y) = (2x - y, x + 3y):

  • Additivity:

  • T(u+v)=T(x1+x2,y1+y2)=(2(x1+x2)(y1+y2),(x1+x2)+3(y1+y2))T(u+v) = T(x_1+x_2, y_1+y_2) = (2(x_1+x_2) - (y_1+y_2), (x_1+x_2) + 3(y_1+y_2))
    =(2x1y1+2x2y2,x1+3y1+x2+3y2)= (2x_1-y_1 + 2x_2-y_2, x_1+3y_1 + x_2+3y_2)
    T(u)+T(v)=(2x1y1,x1+3y1)+(2x2y2,x2+3y2)T(u)+T(v) = (2x_1-y_1, x_1+3y_1) + (2x_2-y_2, x_2+3y_2)
    =(2x1y1+2x2y2,x1+3y1+x2+3y2)= (2x_1-y_1+2x_2-y_2, x_1+3y_1+x_2+3y_2).
    Additivity holds.

  • Homogeneity:

  • T(cu)=T(cx1,cy1)=(2cx1cy1,cx1+3cy1)=c(2x1y1,x1+3y1)T(cu) = T(cx_1, cy_1) = (2cx_1 - cy_1, cx_1 + 3cy_1) = c(2x_1 - y_1, x_1 + 3y_1).
    cT(u)=c(2x1y1,x1+3y1)cT(u) = c(2x_1 - y_1, x_1 + 3y_1).
    Homogeneity holds.
    Thus, T(x,y)=(2xy,x+3y)T(x, y) = (2x - y, x + 3y) is a linear transformation.

    The other options fail one or both conditions:

    • T(x,y)=(x2,y)T(x, y) = (x^2, y): T(2(1,0))=T(2,0)=(4,0)T(2(1,0)) = T(2,0) = (4,0), but 2T(1,0)=2(1,0)=(2,0)2T(1,0) = 2(1,0) = (2,0). Fails homogeneity.

    • T(x,y)=(x+1,y)T(x, y) = (x+1, y): T(0,0)=(1,0)(0,0)T(0,0) = (1,0) \neq (0,0). For any linear transformation, T(0)=0T(0)=0. Fails this property.

    • T(x,y)=(xy,x)T(x, y) = (xy, x): T((1,1)+(1,1))=T(2,2)=(4,2)T((1,1)+(1,1)) = T(2,2) = (4,2). T(1,1)+T(1,1)=(1,1)+(1,1)=(2,2)T(1,1)+T(1,1) = (1,1)+(1,1) = (2,2). Fails additivity.

    Answer: \boxed{T(x,y)=(2xy,x+3y)T(x, y) = (2x - y, x + 3y)}"
    :::

    ---

    2. Properties of Linear Transformations

    Several essential properties follow directly from the definition of a linear transformation. These properties are often useful in proofs and problem-solving.

    Key Properties

    Given a linear transformation T:VWT: V \rightarrow W:

    • T(0V)=0WT(0_V) = 0_W. The zero vector in VV maps to the zero vector in WW.

    • T(v)=T(v)T(-v) = -T(v) for any vVv \in V.

    • T(v1v2)=T(v1)T(v2)T(v_1 - v_2) = T(v_1) - T(v_2) for any v1,v2Vv_1, v_2 \in V.

    • T(i=1kcivi)=i=1kciT(vi)T(\sum_{i=1}^k c_i v_i) = \sum_{i=1}^k c_i T(v_i) for any scalars cic_i and vectors viv_i. This is the generalized linearity property.

    Quick Example: Let T:R2R2T: \mathbf{R}^2 \rightarrow \mathbf{R}^2 be a linear transformation such that T(1,0)=(2,3)T(1,0) = (2,3) and T(0,1)=(1,1)T(0,1) = (-1,1). Find T(3,2)T(3, -2).

    Step 1: Express (3,2)(3, -2) as a linear combination of the basis vectors (1,0)(1,0) and (0,1)(0,1).

    (3,2)=3(1,0)+(2)(0,1)(3, -2) = 3(1,0) + (-2)(0,1)

    Step 2: Apply the linearity property T(c1v1+c2v2)=c1T(v1)+c2T(v2)T(c_1 v_1 + c_2 v_2) = c_1 T(v_1) + c_2 T(v_2).

    T(3,2)=T(3(1,0)+(2)(0,1))=3T(1,0)+(2)T(0,1)=3(2,3)2(1,1)=(6,9)(2,2)=(6(2),92)=(8,7)\begin{aligned}T(3, -2) & = T(3(1,0) + (-2)(0,1)) \\ & = 3T(1,0) + (-2)T(0,1) \\ & = 3(2,3) - 2(-1,1) \\ & = (6,9) - (-2,2) \\ & = (6 - (-2), 9 - 2) \\ & = (8,7)\end{aligned}

    Answer: T(3,2)=(8,7)T(3, -2) = (8,7).

    :::question type="MCQ" question="Let T:R3R2T: \mathbf{R}^3 \rightarrow \mathbf{R}^2 be a linear transformation defined by T(1,0,0)=(1,2)T(1,0,0) = (1,2), T(0,1,0)=(3,1)T(0,1,0) = (3,-1), and T(0,0,1)=(0,4)T(0,0,1) = (0,4). What is T(2,1,3)T(2, -1, 3)?" options=["(1,17)(-1, 17)","(2,12)(2, 12)","(1,15)(1, 15)","(7,10)(7, 10)"] answer="(1,17)(-1, 17)" hint="Express the input vector as a linear combination of the standard basis vectors and apply the linearity property." solution="Step 1: Express (2,1,3)(2, -1, 3) as a linear combination of the standard basis vectors.

    (2,1,3)=2(1,0,0)+(1)(0,1,0)+3(0,0,1)(2, -1, 3) = 2(1,0,0) + (-1)(0,1,0) + 3(0,0,1)

    Step 2: Apply the linear transformation TT.

    T(2,1,3)=T(2(1,0,0)+(1)(0,1,0)+3(0,0,1))=2T(1,0,0)1T(0,1,0)+3T(0,0,1)=2(1,2)(3,1)+3(0,4)=(2,4)(3,1)+(0,12)=(23+0,4(1)+12)=(1,5+12)=(1,17)\begin{aligned}T(2, -1, 3) & = T(2(1,0,0) + (-1)(0,1,0) + 3(0,0,1)) \\
    & = 2T(1,0,0) - 1T(0,1,0) + 3T(0,0,1) \\
    & = 2(1,2) - (3,-1) + 3(0,4) \\
    & = (2,4) - (3,-1) + (0,12) \\
    & = (2-3+0, 4-(-1)+12) \\
    & = (-1, 5+12) \\
    & = (-1, 17)\end{aligned}

    So, T(2,1,3)=(1,17)T(2, -1, 3) = (-1, 17).
    Answer: \boxed{(1,17)(-1, 17)}"
    :::

    ---

    3. Kernel and Range of a Linear Transformation

    For a linear transformation T:VWT: V \rightarrow W, two crucial subspaces are defined: the kernel and the range.

    📖 Kernel (Null Space)

    The kernel (or null space) of TT, denoted ker(T)\operatorname{ker}(T) or N(T)N(T), is the set of all vectors vVv \in V such that T(v)=0WT(v) = 0_W.

    ker(T)={vVT(v)=0W}\operatorname{ker}(T) = \{v \in V \mid T(v) = 0_W\}

    The kernel is a subspace of VV.

    📖 Range (Image)

    The range (or image) of TT, denoted Im(T)\operatorname{Im}(T) or R(T)R(T), is the set of all vectors wWw \in W such that w=T(v)w = T(v) for some vVv \in V.

    Im(T)={wWw=T(v) for some vV}\operatorname{Im}(T) = \{w \in W \mid w = T(v) \text{ for some } v \in V\}

    The range is a subspace of WW.

    Quick Example: Let T:R3R2T: \mathbf{R}^3 \rightarrow \mathbf{R}^2 be defined by T(x,y,z)=(x+y,yz)T(x, y, z) = (x+y, y-z). Find a basis for ker(T)\operatorname{ker}(T).

    Step 1: Set T(x,y,z)=(0,0)T(x, y, z) = (0,0) to find vectors in the kernel.

    (x+y,yz)=(0,0)(x+y, y-z) = (0,0)

    This yields a system of linear equations:

    x+y=0yz=0\begin{aligned}x+y & = 0 \\
    y-z & = 0\end{aligned}

    Step 2: Solve the system. From the equations, we have y=xy = -x and y=zy = z.
    So, z=y=xz = y = -x.
    The general form of a vector in the kernel is (x,x,x)(x, -x, -x).

    Step 3: Express the general form as a scalar multiple of a basis vector.

    (x,x,x)=x(1,1,1)(x, -x, -x) = x(1, -1, -1)

    Answer: A basis for ker(T)\operatorname{ker}(T) is {(1,1,1)}\{(1, -1, -1)\}.

    :::question type="MCQ" question="Let T:R3R2T: \mathbf{R}^3 \rightarrow \mathbf{R}^2 be defined by T(x,y,z)=(xy,yz)T(x, y, z) = (x-y, y-z). Which of the following vectors is in ker(T)\operatorname{ker}(T)?" options=["(1,1,0)(1, 1, 0)","(1,0,1)(1, 0, 1)","(0,1,1)(0, 1, 1)","(1,1,1)(1, 1, 1)"] answer="(1,1,1)(1, 1, 1)" hint="A vector vv is in ker(T)\operatorname{ker}(T) if T(v)=0WT(v) = 0_W. Substitute each option into T(x,y,z)T(x,y,z) and check if it results in (0,0)(0,0)." solution="For a vector (x,y,z)(x,y,z) to be in ker(T)\operatorname{ker}(T), we must have T(x,y,z)=(xy,yz)=(0,0)T(x,y,z) = (x-y, y-z) = (0,0).
    This implies:

  • xy=0x=yx-y = 0 \Rightarrow x = y

  • yz=0y=zy-z = 0 \Rightarrow y = z

  • Thus, for a vector to be in the kernel, all its components must be equal: x=y=zx=y=z.
    Checking the options:
    • (1,1,0)(1, 1, 0): x=1,y=1,z=0x=1, y=1, z=0. x=yx=y but yzy \neq z. Not in ker(T)\operatorname{ker}(T).

    • (1,0,1)(1, 0, 1): x=1,y=0,z=1x=1, y=0, z=1. xyx \neq y. Not in ker(T)\operatorname{ker}(T).

    • (0,1,1)(0, 1, 1): x=0,y=1,z=1x=0, y=1, z=1. xyx \neq y. Not in ker(T)\operatorname{ker}(T).

    • (1,1,1)(1, 1, 1): x=1,y=1,z=1x=1, y=1, z=1. x=y=zx=y=z. This vector is in ker(T)\operatorname{ker}(T).


    Therefore, (1,1,1)(1, 1, 1) is in ker(T)\operatorname{ker}(T).
    Answer: \boxed{(1,1,1)(1, 1, 1)}"
    :::

    ---

    4. Rank-Nullity Theorem

    The Rank-Nullity Theorem establishes a fundamental relationship between the dimensions of the domain, kernel, and range of a linear transformation.

    📐 Rank-Nullity Theorem

    For a linear transformation T:VWT: V \rightarrow W, where VV is a finite-dimensional vector space,

    dim(V)=dim(ker(T))+dim(Im(T))\dim(V) = \dim(\operatorname{ker}(T)) + \dim(\operatorname{Im}(T))

    dim(V)=nullity(T)+rank(T)\dim(V) = \operatorname{nullity}(T) + \operatorname{rank}(T)

    Where:
    nullity(T)=dim(ker(T))\operatorname{nullity}(T) = \dim(\operatorname{ker}(T)) is the dimension of the kernel (nullity).
    rank(T)=dim(Im(T))\operatorname{rank}(T) = \dim(\operatorname{Im}(T)) is the dimension of the range (rank).
    When to use: To find the dimension of the kernel or range if the other is known, or to verify consistency.

    Quick Example: Let T:R4R3T: \mathbf{R}^4 \rightarrow \mathbf{R}^3 be a linear transformation. If rank(T)=2\operatorname{rank}(T) = 2, find nullity(T)\operatorname{nullity}(T).

    Step 1: Identify the dimension of the domain VV.
    Here, V=R4V = \mathbf{R}^4, so dim(V)=4\dim(V) = 4.

    Step 2: Apply the Rank-Nullity Theorem.

    dim(V)=nullity(T)+rank(T)\dim(V) = \operatorname{nullity}(T) + \operatorname{rank}(T)
    4=nullity(T)+24 = \operatorname{nullity}(T) + 2

    Step 3: Solve for nullity(T)\operatorname{nullity}(T).

    nullity(T)=42\operatorname{nullity}(T) = 4 - 2
    nullity(T)=2\operatorname{nullity}(T) = 2

    Answer: nullity(T)=2\operatorname{nullity}(T) = 2.

    :::question type="NAT" question="A linear transformation T:R5R3T: \mathbf{R}^5 \rightarrow \mathbf{R}^3 has a kernel with dimension 3. What is the dimension of its range?" answer="2" hint="Apply the Rank-Nullity Theorem: dim(V)=nullity(T)+rank(T)\dim(V) = \operatorname{nullity}(T) + \operatorname{rank}(T)." solution="Given T:R5R3T: \mathbf{R}^5 \rightarrow \mathbf{R}^3.
    The dimension of the domain VV is dim(R5)=5\dim(\mathbf{R}^5) = 5.
    The dimension of the kernel, nullity(T)\operatorname{nullity}(T), is given as 3.
    Using the Rank-Nullity Theorem:

    dim(V)=nullity(T)+rank(T)\dim(V) = \operatorname{nullity}(T) + \operatorname{rank}(T)

    5=3+rank(T)5 = 3 + \operatorname{rank}(T)

    rank(T)=53\operatorname{rank}(T) = 5 - 3

    rank(T)=2\operatorname{rank}(T) = 2

    The dimension of the range is 2.
    Answer: \boxed{2}"
    :::

    ---

    ---

    5. Matrix Representation of Linear Transformations

    Any linear transformation T:VWT: V \rightarrow W between finite-dimensional vector spaces can be represented by a matrix. If B={v1,,vn}B = \{v_1, \dots, v_n\} is a basis for VV and C={w1,,wm}C = \{w_1, \dots, w_m\} is a basis for WW, then the matrix representation of TT with respect to bases BB and CC, denoted [T]CB[T]_{C \leftarrow B}, is an m×nm \times n matrix whose columns are the coordinate vectors of T(vj)T(v_j) with respect to basis CC.

    Specifically, if T(vj)=a1jw1+a2jw2++amjwmT(v_j) = a_{1j}w_1 + a_{2j}w_2 + \dots + a_{mj}w_m, then the jj-th column of [T]CB[T]_{C \leftarrow B} is

    [a1ja2jamj]\begin{bmatrix} a_{1j} \\ a_{2j} \\ \vdots \\ a_{mj} \end{bmatrix}
    .

    📐 Matrix Representation

    If T:VWT: V \rightarrow W is a linear transformation, B={v1,,vn}B = \{v_1, \dots, v_n\} is a basis for VV, and C={w1,,wm}C = \{w_1, \dots, w_m\} is a basis for WW, then the matrix [T]CB[T]_{C \leftarrow B} is given by:

    [T]CB=[[T(v1)]C[T(v2)]C[T(vn)]C][T]_{C \leftarrow B} = \left[ [T(v_1)]_C \quad [T(v_2)]_C \quad \dots \quad [T(v_n)]_C \right]

    For any vVv \in V, the image T(v)T(v) can be computed by:
    [T(v)]C=[T]CB[v]B[T(v)]_C = [T]_{C \leftarrow B} [v]_B

    Where:
    [v]B[v]_B is the coordinate vector of vv with respect to basis BB.
    [T(v)]C[T(v)]_C is the coordinate vector of T(v)T(v) with respect to basis CC.
    When to use: To convert a linear transformation into a matrix operation, which is useful for computations and analysis.

    Quick Example: Let T:R2R3T: \mathbf{R}^2 \rightarrow \mathbf{R}^3 be defined by T(x,y)=(x+y,xy,2x)T(x, y) = (x+y, x-y, 2x). Find the matrix representation of TT with respect to the standard bases B={(1,0),(0,1)}B = \{(1,0), (0,1)\} for R2\mathbf{R}^2 and C={(1,0,0),(0,1,0),(0,0,1)}C = \{(1,0,0), (0,1,0), (0,0,1)\} for R3\mathbf{R}^3.

    Step 1: Apply TT to each basis vector of BB.

    >

    T(1,0)=(1+0,10,2(1))=(1,1,2)T(0,1)=(0+1,01,2(0))=(1,1,0)\begin{aligned} T(1,0) & = (1+0, 1-0, 2(1)) = (1,1,2) \\ T(0,1) & = (0+1, 0-1, 2(0)) = (1,-1,0) \end{aligned}

    Step 2: Express these images as coordinate vectors with respect to basis CC. Since CC is the standard basis, the coordinate vectors are the vectors themselves.

    >

    [T(1,0)]C=[112][T(1,0)]_C = \begin{bmatrix} 1 \\ 1 \\ 2 \end{bmatrix}

    >

    [T(0,1)]C=[110][T(0,1)]_C = \begin{bmatrix} 1 \\ -1 \\ 0 \end{bmatrix}

    Step 3: Form the matrix [T]CB[T]_{C \leftarrow B} by using these coordinate vectors as columns.

    >

    [T]CB=[111120][T]_{C \leftarrow B} = \begin{bmatrix} 1 & 1 \\ 1 & -1 \\ 2 & 0 \end{bmatrix}

    Answer: The matrix representation is

    [111120]\boxed{\begin{bmatrix} 1 & 1 \\ 1 & -1 \\ 2 & 0 \end{bmatrix}}
    .

    :::question type="MCQ" question="Let T:R2R2T: \mathbf{R}^2 \rightarrow \mathbf{R}^2 be defined by T(x,y)=(2x+y,x3y)T(x,y) = (2x+y, x-3y). Find the matrix representation of TT with respect to the standard basis B={(1,0),(0,1)}B = \{(1,0), (0,1)\} for R2\mathbf{R}^2." options=["

    [2113]\begin{bmatrix} 2 & 1 \\ 1 & -3 \end{bmatrix}
    ", "
    [2131]\begin{bmatrix} 2 & 1 \\ 3 & 1 \end{bmatrix}
    ", "
    [1321]\begin{bmatrix} 1 & -3 \\ 2 & 1 \end{bmatrix}
    ", "
    [2113]\begin{bmatrix} 2 & 1 \\ 1 & 3 \end{bmatrix}
    "] answer="
    [2113]\begin{bmatrix} 2 & 1 \\ 1 & -3 \end{bmatrix}
    " hint="Apply the transformation to each standard basis vector. The images form the columns of the matrix." solution="Step 1: Apply TT to the first standard basis vector (1,0)(1,0).
    >
    T(1,0)=(2(1)+0,13(0))=(2,1)T(1,0) = (2(1)+0, 1-3(0)) = (2,1)

    The first column of the matrix will be
    [21]\begin{bmatrix} 2 \\ 1 \end{bmatrix}
    .

    Step 2: Apply TT to the second standard basis vector (0,1)(0,1).
    >

    T(0,1)=(2(0)+1,03(1))=(1,3)T(0,1) = (2(0)+1, 0-3(1)) = (1,-3)

    The second column of the matrix will be
    [13]\begin{bmatrix} 1 \\ -3 \end{bmatrix}
    .

    Step 3: Form the matrix.
    >

    [T]B=[2113][T]_B = \begin{bmatrix} 2 & 1 \\ 1 & -3 \end{bmatrix}

    Answer:
    [2113]\boxed{\begin{bmatrix} 2 & 1 \\ 1 & -3 \end{bmatrix}}
    "
    :::

    ---

    6. Composition of Linear Transformations

    If T1:UVT_1: U \rightarrow V and T2:VWT_2: V \rightarrow W are linear transformations, their composition T2T1:UWT_2 \circ T_1: U \rightarrow W is also a linear transformation. The matrix representation of the composite transformation is the product of their individual matrix representations.

    📐 Composition of Transformations

    If T1:UVT_1: U \rightarrow V and T2:VWT_2: V \rightarrow W are linear transformations, and A,B,CA, B, C are bases for U,V,WU, V, W respectively, then:

    [T2T1]CA=[T2]CB[T1]BA[T_2 \circ T_1]_{C \leftarrow A} = [T_2]_{C \leftarrow B} [T_1]_{B \leftarrow A}

    Where: The order of matrix multiplication is crucial: the matrix for T2T_2 (the second transformation) comes first, followed by the matrix for T1T_1.
    When to use: To represent sequential linear transformations as a single matrix operation.

    Quick Example: Let T1:R2R2T_1: \mathbf{R}^2 \rightarrow \mathbf{R}^2 be T1(x,y)=(x+y,x)T_1(x,y) = (x+y, x) and T2:R2R2T_2: \mathbf{R}^2 \rightarrow \mathbf{R}^2 be T2(x,y)=(2x,yx)T_2(x,y) = (2x, y-x). Find the matrix representation of T2T1T_2 \circ T_1 with respect to the standard basis.

    Step 1: Find the matrix representation for T1T_1.
    T1(1,0)=(1,1)T_1(1,0) = (1,1), T1(0,1)=(1,0)T_1(0,1) = (1,0).
    >

    [T1]=[1110][T_1] = \begin{bmatrix} 1 & 1 \\ 1 & 0 \end{bmatrix}

    Step 2: Find the matrix representation for T2T_2.
    T2(1,0)=(2,1)T_2(1,0) = (2, -1), T2(0,1)=(0,1)T_2(0,1) = (0,1).
    >

    [T2]=[2011][T_2] = \begin{bmatrix} 2 & 0 \\ -1 & 1 \end{bmatrix}

    Step 3: Compute the product [T2][T1][T_2][T_1] to find [T2T1][T_2 \circ T_1].

    >

    [T2T1]=[T2][T1]=[2011][1110]=[(2)(1)+(0)(1)(2)(1)+(0)(0)(1)(1)+(1)(1)(1)(1)+(1)(0)]=[2201]\begin{aligned} [T_2 \circ T_1] & = [T_2][T_1] \\ & = \begin{bmatrix} 2 & 0 \\ -1 & 1 \end{bmatrix} \begin{bmatrix} 1 & 1 \\ 1 & 0 \end{bmatrix} \\ & = \begin{bmatrix} (2)(1)+(0)(1) & (2)(1)+(0)(0) \\ (-1)(1)+(1)(1) & (-1)(1)+(1)(0) \end{bmatrix} \\ & = \begin{bmatrix} 2 & 2 \\ 0 & -1 \end{bmatrix} \end{aligned}

    Answer: The matrix representation of T2T1T_2 \circ T_1 is

    [2201]\boxed{\begin{bmatrix} 2 & 2 \\ 0 & -1 \end{bmatrix}}
    .

    :::question type="MCQ" question="Let T1:R2R2T_1: \mathbf{R}^2 \rightarrow \mathbf{R}^2 be defined by T1(x,y)=(xy,y)T_1(x,y) = (x-y, y) and T2:R2R2T_2: \mathbf{R}^2 \rightarrow \mathbf{R}^2 be defined by T2(x,y)=(2x,x+y)T_2(x,y) = (2x, x+y). Find the matrix representation of T1T2T_1 \circ T_2 with respect to the standard basis." options=["

    [1111]\begin{bmatrix} 1 & -1 \\ 1 & 1 \end{bmatrix}
    ", "
    [2131]\begin{bmatrix} 2 & 1 \\ 3 & 1 \end{bmatrix}
    ", "
    [1321]\begin{bmatrix} 1 & -3 \\ 2 & 1 \end{bmatrix}
    ", "
    [2113]\begin{bmatrix} 2 & 1 \\ 1 & 3 \end{bmatrix}
    "] answer="
    [1111]\begin{bmatrix} 1 & -1 \\ 1 & 1 \end{bmatrix}
    " hint="First find the matrix representations for T1T_1 and T2T_2 individually. Then multiply them in the correct order for T1T2T_1 \circ T_2." solution="Step 1: Find the matrix representation for T1T_1.
    T1(1,0)=(10,0)=(1,0)T_1(1,0) = (1-0, 0) = (1,0).
    T1(0,1)=(01,1)=(1,1)T_1(0,1) = (0-1, 1) = (-1,1).
    >
    [T1]=[1101][T_1] = \begin{bmatrix} 1 & -1 \\ 0 & 1 \end{bmatrix}

    Step 2: Find the matrix representation for T2T_2.
    T2(1,0)=(2(1),1+0)=(2,1)T_2(1,0) = (2(1), 1+0) = (2,1).
    T2(0,1)=(2(0),0+1)=(0,1)T_2(0,1) = (2(0), 0+1) = (0,1).
    >

    [T2]=[2011][T_2] = \begin{bmatrix} 2 & 0 \\ 1 & 1 \end{bmatrix}

    Step 3: Compute the product [T1][T2][T_1][T_2] for T1T2T_1 \circ T_2.
    >

    [T1T2]=[T1][T2]=[1101][2011]=[(1)(2)+(1)(1)(1)(0)+(1)(1)(0)(2)+(1)(1)(0)(0)+(1)(1)]=[21010+10+1]=[1111]\begin{aligned} [T_1 \circ T_2] & = [T_1][T_2] \\ & = \begin{bmatrix} 1 & -1 \\ 0 & 1 \end{bmatrix} \begin{bmatrix} 2 & 0 \\ 1 & 1 \end{bmatrix} \\ & = \begin{bmatrix} (1)(2)+(-1)(1) & (1)(0)+(-1)(1) \\ (0)(2)+(1)(1) & (0)(0)+(1)(1) \end{bmatrix} \\ & = \begin{bmatrix} 2-1 & 0-1 \\ 0+1 & 0+1 \end{bmatrix} \\ & = \begin{bmatrix} 1 & -1 \\ 1 & 1 \end{bmatrix} \end{aligned}

    Answer:
    [1111]\boxed{\begin{bmatrix} 1 & -1 \\ 1 & 1 \end{bmatrix}}
    "
    :::

    ---

    7. Inverse Linear Transformations and Isomorphisms

    An invertible linear transformation is a bijection between vector spaces. If such a transformation exists, the vector spaces are said to be isomorphic.

    📖 Invertible Linear Transformation

    A linear transformation T:VWT: V \rightarrow W is invertible if there exists a linear transformation T1:WVT^{-1}: W \rightarrow V such that T1T=IVT^{-1} \circ T = I_V and TT1=IWT \circ T^{-1} = I_W, where IVI_V and IWI_W are the identity transformations on VV and WW respectively.
    A linear transformation TT is invertible if and only if:

    • TT is one-to-one (injective): ker(T)={0V}\operatorname{ker}(T) = \{0_V\}.

    • TT is onto (surjective): Im(T)=W\operatorname{Im}(T) = W.

    📖 Isomorphism

    A linear transformation T:VWT: V \rightarrow W that is both one-to-one and onto is called an isomorphism. If an isomorphism exists between VV and WW, then VV and WW are said to be isomorphic, denoted VWV \cong W.
    Two finite-dimensional vector spaces are isomorphic if and only if they have the same dimension.

    Quick Example: Determine if T:R2R2T: \mathbf{R}^2 \rightarrow \mathbf{R}^2 defined by T(x,y)=(x+y,xy)T(x,y) = (x+y, x-y) is an isomorphism.

    Step 1: Check if TT is one-to-one by finding ker(T)\operatorname{ker}(T).
    Set T(x,y)=(0,0)T(x,y) = (0,0):
    >

    x+y=0xy=0\begin{aligned} x+y & = 0 \\ x-y & = 0 \end{aligned}

    Adding the two equations yields 2x=0x=02x=0 \Rightarrow x=0. Substituting x=0x=0 into the first equation yields y=0y=0.
    So, ker(T)={(0,0)}\operatorname{ker}(T) = \{(0,0)\}. Since the kernel contains only the zero vector, TT is one-to-one.

    Step 2: Check if TT is onto by comparing dimensions.
    Since T:R2R2T: \mathbf{R}^2 \rightarrow \mathbf{R}^2, dim(V)=2\dim(V) = 2 and dim(W)=2\dim(W) = 2.
    From the Rank-Nullity Theorem: dim(R2)=nullity(T)+rank(T)\dim(\mathbf{R}^2) = \operatorname{nullity}(T) + \operatorname{rank}(T).
    2=0+rank(T)rank(T)=22 = 0 + \operatorname{rank}(T) \Rightarrow \operatorname{rank}(T) = 2.
    Since rank(T)=dim(Im(T))=2\operatorname{rank}(T) = \dim(\operatorname{Im}(T)) = 2, and dim(W)=2\dim(W) = 2, we have Im(T)=W\operatorname{Im}(T) = W. Thus, TT is onto.

    Answer: Since TT is both one-to-one and onto, it is an isomorphism.

    Isomorphism\boxed{\text{Isomorphism}}
    .

    :::question type="MCQ" question="Let T:R3R3T: \mathbf{R}^3 \rightarrow \mathbf{R}^3 be a linear transformation defined by T(x,y,z)=(x+y,y+z,x+z)T(x,y,z) = (x+y, y+z, x+z). Is TT an isomorphism?" options=["Yes, because det([T])0\operatorname{det}([T]) \neq 0", "No, because ker(T){0}\operatorname{ker}(T) \neq \{0\}", "Yes, because rank(T)<3\operatorname{rank}(T) < 3", "No, because Im(T)=R2\operatorname{Im}(T) = \mathbf{R}^2"] answer="Yes, because det([T])0\operatorname{det}([T]) \neq 0" hint="An isomorphism is both one-to-one and onto. For a transformation from VV to VV, this is equivalent to the kernel being trivial or the determinant of its matrix representation being non-zero." solution="Step 1: Find the matrix representation of TT with respect to the standard basis.
    T(1,0,0)=(1,0,1)T(1,0,0) = (1,0,1)
    T(0,1,0)=(1,1,0)T(0,1,0) = (1,1,0)
    T(0,0,1)=(0,1,1)T(0,0,1) = (0,1,1)
    >

    [T]=[110011101][T] = \begin{bmatrix} 1 & 1 & 0 \\ 0 & 1 & 1 \\ 1 & 0 & 1 \end{bmatrix}

    Step 2: Calculate the determinant of [T][T].
    >

    det([T])=1(1110)1(0111)+0(0011)=1(1)1(1)+0=1+1=2\begin{aligned} \det([T]) & = 1(1 \cdot 1 - 1 \cdot 0) - 1(0 \cdot 1 - 1 \cdot 1) + 0(0 \cdot 0 - 1 \cdot 1) \\ & = 1(1) - 1(-1) + 0 \\ & = 1 + 1 \\ & = 2 \end{aligned}

    Step 3: Interpret the determinant.
    Since det([T])=20\det([T]) = 2 \neq 0, the matrix is invertible. An invertible matrix corresponds to an invertible linear transformation. An invertible linear transformation is an isomorphism.
    Alternatively, since det([T])0\det([T]) \neq 0, the nullity of the matrix is 0, meaning ker(T)={0}\operatorname{ker}(T) = \{0\}, so TT is one-to-one. By Rank-Nullity Theorem, rank(T)=dim(R3)nullity(T)=30=3\operatorname{rank}(T) = \dim(\mathbf{R}^3) - \operatorname{nullity}(T) = 3 - 0 = 3. Since rank(T)=dim(R3)\operatorname{rank}(T) = \dim(\mathbf{R}^3), TT is onto.
    Since TT is both one-to-one and onto, it is an isomorphism.
    Answer:

    Yes, because det([T])0\boxed{\text{Yes, because } \det([T]) \neq 0}
    "
    :::

    ---

    Advanced Applications

    Example: Consider the linear transformation T:P2(R)P2(R)T: P_2(\mathbf{R}) \rightarrow P_2(\mathbf{R}) defined by T(p(x))=p(x)+p(x)T(p(x)) = p(x) + p'(x), where P2(R)P_2(\mathbf{R}) is the space of polynomials of degree at most 2. Find the matrix representation of TT with respect to the standard basis B={1,x,x2}B = \{1, x, x^2\}.

    Step 1: Apply TT to each basis vector in BB.
    For p(x)=1p(x) = 1: T(1)=1+0=1T(1) = 1 + 0 = 1.
    For p(x)=xp(x) = x: T(x)=x+1T(x) = x + 1.
    For p(x)=x2p(x) = x^2: T(x2)=x2+2xT(x^2) = x^2 + 2x.

    Step 2: Express the images as coordinate vectors with respect to basis BB.

    [T(1)]B=[100][T(1)]_B = \begin{bmatrix} 1 \\ 0 \\ 0 \end{bmatrix}

    [T(x)]B=[110][T(x)]_B = \begin{bmatrix} 1 \\ 1 \\ 0 \end{bmatrix}

    [T(x2)]B=[021][T(x^2)]_B = \begin{bmatrix} 0 \\ 2 \\ 1 \end{bmatrix}

    Step 3: Form the matrix [T]B[T]_B.

    >

    [T]B=[110012001][T]_B = \begin{bmatrix} 1 & 1 & 0 \\ 0 & 1 & 2 \\ 0 & 0 & 1 \end{bmatrix}

    Answer: The matrix representation is

    [110012001]\boxed{\begin{bmatrix} 1 & 1 & 0 \\ 0 & 1 & 2 \\ 0 & 0 & 1 \end{bmatrix}}
    .

    :::question type="NAT" question="Let T:M2×2(R)RT: M_{2 \times 2}(\mathbf{R}) \rightarrow \mathbf{R} be a linear transformation defined by T(A)=tr(A)T(A) = \operatorname{tr}(A), where tr(A)\operatorname{tr}(A) is the trace of matrix AA. If A=[abcd]A = \begin{bmatrix} a & b \\ c & d \end{bmatrix}, then T(A)=a+dT(A) = a+d. What is the nullity of TT?" answer="3" hint="First determine the dimension of the domain space M2×2(R)M_{2 \times 2}(\mathbf{R}). Then find the rank of TT by identifying the range, and finally use the Rank-Nullity Theorem." solution="Step 1: Determine the dimension of the domain space.
    The domain is M2×2(R)M_{2 \times 2}(\mathbf{R}), the space of 2×22 \times 2 matrices. A basis for this space is

    {[1000],[0100],[0010],[0001]}\left\{ \begin{bmatrix} 1 & 0 \\ 0 & 0 \end{bmatrix}, \begin{bmatrix} 0 & 1 \\ 0 & 0 \end{bmatrix}, \begin{bmatrix} 0 & 0 \\ 1 & 0 \end{bmatrix}, \begin{bmatrix} 0 & 0 \\ 0 & 1 \end{bmatrix} \right\}

    Thus, dim(M2×2(R))=4\dim(M_{2 \times 2}(\mathbf{R})) = 4.

    Step 2: Determine the range of TT.
    The transformation T(A)=a+dT(A) = a+d maps a 2×22 \times 2 matrix to a real number. The range Im(T)\operatorname{Im}(T) is a subspace of R\mathbf{R}.
    Can we get any real number kk in the range? Yes, for example, T([k000])=kT\left(\begin{bmatrix} k & 0 \\ 0 & 0 \end{bmatrix}\right) = k.
    So, Im(T)=R\operatorname{Im}(T) = \mathbf{R}.
    The dimension of the range, rank(T)\operatorname{rank}(T), is dim(R)=1\dim(\mathbf{R}) = 1.

    Step 3: Apply the Rank-Nullity Theorem.
    >

    dim(Domain)=nullity(T)+rank(T)\dim(\text{Domain}) = \operatorname{nullity}(T) + \operatorname{rank}(T)

    >
    4=nullity(T)+14 = \operatorname{nullity}(T) + 1

    >
    nullity(T)=41\operatorname{nullity}(T) = 4 - 1

    >
    nullity(T)=3\operatorname{nullity}(T) = 3

    The nullity of TT is 3. Answer:
    3\boxed{3}
    "
    :::

    ---

    Problem-Solving Strategies

    💡 CUET PG Strategy

    When checking if a transformation is linear, first check if T(0)=0T(0)=0. If T(0)0T(0) \neq 0, it is immediately not linear (e.g., T(x,y)=(x+1,y)T(x,y)=(x+1,y)). This is a quick initial filter. For transformations involving products (e.g., xyxy) or absolute values (x|x|), they usually fail the homogeneity condition.

    💡 CUET PG Strategy: Isomorphism Checks

    For T:VVT: V \rightarrow V (same dimension domain and codomain), checking if TT is an isomorphism simplifies significantly. It is sufficient to show TT is one-to-one OR onto.

      • One-to-one: ker(T)={0}\operatorname{ker}(T) = \{0\}.

      • Onto: Im(T)=V\operatorname{Im}(T) = V.

    These are equivalent conditions for T:VVT: V \rightarrow V. If a matrix representation [T][T] exists, det([T])0\det([T]) \neq 0 is also an equivalent condition.

    ---

    Common Mistakes

    ⚠️ Common Mistake

    ❌ Assuming T(0)=0T(0)=0 is sufficient to prove linearity.
    T(0)=0T(0)=0 is a necessary condition, but not sufficient. One must still verify T(u+v)=T(u)+T(v)T(u+v)=T(u)+T(v) and T(cu)=cT(u)T(cu)=cT(u).

    ⚠️ Common Mistake

    ❌ Incorrect order of matrix multiplication for composition.
    ✅ For T2T1T_2 \circ T_1, the matrix product is [T2][T1][T_2][T_1]. The matrix for the transformation applied second (i.e., T2T_2) comes first in the product.

    ⚠️ Common Mistake

    ❌ Confusing the domain of the transformation with the codomain when applying the Rank-Nullity Theorem.
    ✅ The Rank-Nullity Theorem states dim(Domain V)=nullity(T)+rank(T)\dim(\text{Domain } V) = \operatorname{nullity}(T) + \operatorname{rank}(T). The dimension of the codomain WW dictates the maximum possible rank, but is not dim(V)\dim(V).

    ---

    Practice Questions

    :::question type="MCQ" question="Let T:R2R3T: \mathbf{R}^2 \rightarrow \mathbf{R}^3 be a linear transformation defined by T(x,y)=(x+2y,y,xy)T(x,y) = (x+2y, y, x-y). What is the dimension of the range of TT?" options=["0","1","2","3"] answer="2" hint="Find the images of the standard basis vectors of R2\mathbf{R}^2. These images span the range. Determine the number of linearly independent vectors among them." solution="Step 1: Find the images of the standard basis vectors of R2\mathbf{R}^2.
    T(1,0)=(1+2(0),0,10)=(1,0,1)T(1,0) = (1+2(0), 0, 1-0) = (1,0,1)
    T(0,1)=(0+2(1),1,01)=(2,1,1)T(0,1) = (0+2(1), 1, 0-1) = (2,1,-1)

    Step 2: The range of TT is spanned by these image vectors: Im(T)=span{(1,0,1),(2,1,1)}\operatorname{Im}(T) = \operatorname{span}\{(1,0,1), (2,1,-1)\}.

    Step 3: Determine if these vectors are linearly independent.
    We check if c1(1,0,1)+c2(2,1,1)=(0,0,0)c_1(1,0,1) + c_2(2,1,-1) = (0,0,0) implies c1=c2=0c_1=c_2=0.

    c1+2c2=00c1+1c2=0c1c2=0\begin{aligned} c_1 + 2c_2 & = 0 \\ 0c_1 + 1c_2 & = 0 \\ c_1 - c_2 & = 0 \end{aligned}

    From the second equation, c2=0c_2 = 0.
    Substituting c2=0c_2=0 into the first equation, c1+2(0)=0c1=0c_1 + 2(0) = 0 \Rightarrow c_1 = 0.
    Since both c1=0c_1=0 and c2=0c_2=0, the vectors (1,0,1)(1,0,1) and (2,1,1)(2,1,-1) are linearly independent.

    Step 4: The dimension of the range is the number of linearly independent vectors in its spanning set.
    rank(T)=2\operatorname{rank}(T) = 2.
    Alternatively, dim(domain)=dim(R2)=2\dim(\text{domain}) = \dim(\mathbf{R}^2) = 2.
    ker(T)\operatorname{ker}(T) for T(x,y)=(x+2y,y,xy)=(0,0,0)T(x,y) = (x+2y, y, x-y) = (0,0,0):
    y=0y=0.
    x+2(0)=0x=0x+2(0)=0 \Rightarrow x=0.
    xy=000=0x-y=0 \Rightarrow 0-0=0.
    So ker(T)={(0,0)}\operatorname{ker}(T) = \{(0,0)\}, meaning nullity(T)=0\operatorname{nullity}(T) = 0.
    By Rank-Nullity Theorem: dim(R2)=nullity(T)+rank(T)\dim(\mathbf{R}^2) = \operatorname{nullity}(T) + \operatorname{rank}(T)
    2=0+rank(T)rank(T)=22 = 0 + \operatorname{rank}(T) \Rightarrow \operatorname{rank}(T) = 2.
    Answer: 2\boxed{2}"
    :::

    :::question type="NAT" question="Consider the vector space V={(x,y,z)R3xy+z=0}V = \{ (x,y,z) \in \mathbf{R}^3 \mid x-y+z=0 \}. Let T:VR2T: V \rightarrow \mathbf{R}^2 be a linear transformation defined by T(x,y,z)=(x,z)T(x,y,z) = (x,z). What is the nullity of TT?" answer="0" hint="First find a basis for VV to determine dim(V)\dim(V). Then find the kernel of TT for vectors in VV." solution="Step 1: Determine the dimension of the domain space VV.
    The condition xy+z=0x-y+z=0 defines a plane in R3\mathbf{R}^3. We can express yy in terms of xx and zz: y=x+zy = x+z.
    A vector in VV is of the form (x,x+z,z)(x, x+z, z).

    (x,x+z,z)=x(1,1,0)+z(0,1,1)(x, x+z, z) = x(1,1,0) + z(0,1,1)

    The vectors (1,1,0)(1,1,0) and (0,1,1)(0,1,1) are linearly independent and span VV.
    Thus, dim(V)=2\dim(V) = 2.

    Step 2: Determine the kernel of TT.
    A vector (x,y,z)V(x,y,z) \in V is in ker(T)\operatorname{ker}(T) if T(x,y,z)=(0,0)T(x,y,z) = (0,0).
    Given T(x,y,z)=(x,z)T(x,y,z) = (x,z), this implies x=0x=0 and z=0z=0.
    Since (x,y,z)(x,y,z) must also be in VV, it must satisfy xy+z=0x-y+z=0.
    Substituting x=0x=0 and z=0z=0 into the equation for VV:
    0y+0=0y=00 - y + 0 = 0 \Rightarrow y = 0.
    Therefore, the only vector in ker(T)\operatorname{ker}(T) is (0,0,0)(0,0,0).
    So, nullity(T)=dim(ker(T))=0\operatorname{nullity}(T) = \dim(\operatorname{ker}(T)) = 0.
    Answer: 0\boxed{0}"
    :::

    :::question type="MSQ" question="Let T:R3R2T: \mathbf{R}^3 \rightarrow \mathbf{R}^2 be a linear transformation given by T(x,y,z)=(x+y,yz)T(x,y,z) = (x+y, y-z). Which of the following statements are true?" options=["TT is one-to-one.","The range of TT is R2\mathbf{R}^2.","The nullity of TT is 1.","The matrix representation of TT with respect to standard bases is

    [110011]\begin{bmatrix} 1 & 1 & 0 \\ 0 & 1 & -1 \end{bmatrix}
    "] answer="The range of TT is R2\mathbf{R}^2,The nullity of TT is 1,The matrix representation of TT with respect to standard bases is [110011]\begin{bmatrix} 1 & 1 & 0 \\ 0 & 1 & -1 \end{bmatrix}" hint="Determine the kernel and range of TT. Calculate the matrix representation using standard basis vectors. Use the Rank-Nullity Theorem." solution="Step 1: Find the matrix representation of TT with respect to the standard bases.
    T(1,0,0)=(1,0)T(1,0,0) = (1,0)
    T(0,1,0)=(1,1)T(0,1,0) = (1,1)
    T(0,0,1)=(0,1)T(0,0,1) = (0,-1)
    [T]=[110011][T] = \begin{bmatrix} 1 & 1 & 0 \\ 0 & 1 & -1 \end{bmatrix}

    So, option D is true.

    Step 2: Find the kernel of TT.
    Set T(x,y,z)=(0,0)T(x,y,z) = (0,0):

    x+y=0yz=0\begin{aligned} x+y & = 0 \\ y-z & = 0 \end{aligned}

    From these, y=xy = -x and z=yz = y. So z=xz = -x.
    The vectors in the kernel are of the form (x,x,x)=x(1,1,1)(x, -x, -x) = x(1, -1, -1).
    A basis for ker(T)\operatorname{ker}(T) is {(1,1,1)}\{(1,-1,-1)\}.
    The dimension of the kernel, nullity(T)\operatorname{nullity}(T), is 1. So, option C is true.

    Step 3: Check if TT is one-to-one.
    Since ker(T){0}\operatorname{ker}(T) \neq \{0\}, TT is not one-to-one. So, option A is false.

    Step 4: Find the dimension of the range using the Rank-Nullity Theorem.
    dim(Domain)=dim(R3)=3\dim(\text{Domain}) = \dim(\mathbf{R}^3) = 3.
    nullity(T)=1\operatorname{nullity}(T) = 1.
    dim(Domain)=nullity(T)+rank(T)\dim(\text{Domain}) = \operatorname{nullity}(T) + \operatorname{rank}(T)
    3=1+rank(T)3 = 1 + \operatorname{rank}(T)
    rank(T)=2\operatorname{rank}(T) = 2.
    Since the codomain is R2\mathbf{R}^2 and dim(R2)=2\dim(\mathbf{R}^2) = 2, and rank(T)=2\operatorname{rank}(T) = 2, the range of TT is R2\mathbf{R}^2. So, option B is true.

    Therefore, the true statements are B, C, and D.
    Answer: B, C, and D\boxed{\text{B, C, and D}}"
    :::

    :::question type="MCQ" question="Let P1(R)P_1(\mathbf{R}) be the vector space of polynomials of degree at most 1. Consider T:P1(R)RT: P_1(\mathbf{R}) \rightarrow \mathbf{R} defined by T(p(x))=01p(x)dxT(p(x)) = \int_0^1 p(x) dx. Which of the following is true?" options=["TT is not a linear transformation.","ker(T)={0}\operatorname{ker}(T) = \{0\}.","rank(T)=1\operatorname{rank}(T) = 1.","The range of TT is {0}\{0\}.""] answer="rank(T)=1\operatorname{rank}(T) = 1." hint="First, verify linearity. Then find the kernel by setting the integral to zero. Use Rank-Nullity." solution="Step 1: Verify linearity.
    Let p(x)=ax+bp(x) = ax+b and q(x)=cx+dq(x) = cx+d. Let kk be a scalar.
    T(p(x)+q(x))=T((a+c)x+(b+d))T(p(x)+q(x)) = T((a+c)x + (b+d))

    =01((a+c)x+(b+d))dx=[(a+c)x22+(b+d)x]01=a+c2+(b+d)= \int_0^1 ((a+c)x + (b+d)) dx = \left[ \frac{(a+c)x^2}{2} + (b+d)x \right]_0^1 = \frac{a+c}{2} + (b+d)

    T(p(x))+T(q(x))=01(ax+b)dx+01(cx+d)dxT(p(x)) + T(q(x)) = \int_0^1 (ax+b) dx + \int_0^1 (cx+d) dx
    =[ax22+bx]01+[cx22+dx]01=(a2+b)+(c2+d)=a+c2+(b+d)= \left[ \frac{ax^2}{2} + bx \right]_0^1 + \left[ \frac{cx^2}{2} + dx \right]_0^1 = \left( \frac{a}{2}+b \right) + \left( \frac{c}{2}+d \right) = \frac{a+c}{2} + (b+d)

    Additivity holds.
    T(kp(x))=T(k(ax+b))T(kp(x)) = T(k(ax+b))
    =01k(ax+b)dx=k01(ax+b)dx=k(a2+b)= \int_0^1 k(ax+b) dx = k \int_0^1 (ax+b) dx = k\left(\frac{a}{2}+b\right)

    kT(p(x))=k(a2+b)kT(p(x)) = k(\frac{a}{2}+b).
    Homogeneity holds.
    So, TT is a linear transformation. Option A is false.

    Step 2: Determine the kernel of TT.
    Let p(x)=ax+bp(x) = ax+b. We need T(p(x))=0T(p(x))=0.

    01(ax+b)dx=0\int_0^1 (ax+b) dx = 0

    [ax22+bx]01=0\left[ \frac{ax^2}{2} + bx \right]_0^1 = 0

    a2+b=0    b=a2\frac{a}{2} + b = 0 \implies b = -\frac{a}{2}

    So, polynomials in ker(T)\operatorname{ker}(T) are of the form axa2=a(x12)ax - \frac{a}{2} = a(x - \frac{1}{2}).
    Since aa can be any real number, ker(T)\operatorname{ker}(T) is not {0}\{0\}. For example, x12x - \frac{1}{2} is in ker(T)\operatorname{ker}(T). Option B is false.

    Step 3: Determine the rank of TT.
    The domain is P1(R)P_1(\mathbf{R}), which has a basis {1,x}\{1, x\}, so dim(P1(R))=2\dim(P_1(\mathbf{R})) = 2.
    The nullity is dim(ker(T))\dim(\operatorname{ker}(T)). Since ker(T)=span{x12}\operatorname{ker}(T) = \operatorname{span}\{x - \frac{1}{2}\}, nullity(T)=1\operatorname{nullity}(T) = 1.
    Using the Rank-Nullity Theorem:
    dim(P1(R))=nullity(T)+rank(T)\dim(P_1(\mathbf{R})) = \operatorname{nullity}(T) + \operatorname{rank}(T)
    2=1+rank(T)2 = 1 + \operatorname{rank}(T)
    rank(T)=1\operatorname{rank}(T) = 1.
    Option C is true.

    Step 4: Determine the range of TT.
    The codomain is R\mathbf{R}. Since rank(T)=1\operatorname{rank}(T) = 1, the range of TT is R\mathbf{R} (any real number can be obtained). For example, T(2x)=012xdx=[x2]01=1T(2x) = \int_0^1 2x dx = [x^2]_0^1 = 1. T(4x)=2T(4x) = 2. So the range is not {0}\{0\}. Option D is false.
    Answer: Option C\boxed{\text{Option C}}"
    :::

    :::question type="MSQ" question="Let T:R2R2T: \mathbf{R}^2 \rightarrow \mathbf{R}^2 be a linear transformation represented by the matrix

    A=[1111]A = \begin{bmatrix} 1 & -1 \\ -1 & 1 \end{bmatrix}
    with respect to the standard basis. Which of the following statements are true?" options=["TT is invertible.","The kernel of TT is span{(1,1)}\operatorname{span}\{(1,1)\}.","The range of TT is span{(1,1)}\operatorname{span}\{(1,-1)\}.","The nullity of TT is 1.""] answer="The kernel of TT is span{(1,1)}\operatorname{span}\{(1,1)\},The range of TT is span{(1,1)}\operatorname{span}\{(1,-1)\},The nullity of TT is 1." hint="Calculate the determinant of the matrix to check invertibility. Find the null space of the matrix to determine the kernel and its dimension. Find the column space of the matrix to determine the range." solution="Step 1: Check if TT is invertible.
    Calculate the determinant of AA:
    det(A)=(1)(1)(1)(1)=11=0\det(A) = (1)(1) - (-1)(-1) = 1 - 1 = 0

    Since det(A)=0\det(A) = 0, the matrix AA is not invertible, and thus TT is not invertible. So, option A is false.

    Step 2: Find the kernel of TT.
    We need to find vectors (x,y)(x,y) such that

    A[xy]=[00]A\begin{bmatrix} x \\ y \end{bmatrix} = \begin{bmatrix} 0 \\ 0 \end{bmatrix}

    [1111][xy]=[00]\begin{bmatrix} 1 & -1 \\ -1 & 1 \end{bmatrix} \begin{bmatrix} x \\ y \end{bmatrix} = \begin{bmatrix} 0 \\ 0 \end{bmatrix}

    This gives the system:
    xy=0x+y=0\begin{aligned} x - y & = 0 \\ -x + y & = 0 \end{aligned}

    Both equations simplify to x=yx=y.
    So, vectors in the kernel are of the form (x,x)=x(1,1)(x,x) = x(1,1).
    Thus, ker(T)=span{(1,1)}\operatorname{ker}(T) = \operatorname{span}\{(1,1)\}. So, option B is true.

    Step 3: Find the nullity of TT.
    Since ker(T)=span{(1,1)}\operatorname{ker}(T) = \operatorname{span}\{(1,1)\}, the dimension of the kernel is 1.
    So, nullity(T)=1\operatorname{nullity}(T) = 1. So, option D is true.

    Step 4: Find the range of TT.
    The range of TT is the column space of AA. The columns of AA are [11]\begin{bmatrix} 1 \\ -1 \end{bmatrix} and [11]\begin{bmatrix} -1 \\ 1 \end{bmatrix}.
    These two columns are linearly dependent, as [11]=1[11]\begin{bmatrix} -1 \\ 1 \end{bmatrix} = -1 \begin{bmatrix} 1 \\ -1 \end{bmatrix}.
    Thus, the column space is spanned by a single vector, e.g., [11]\begin{bmatrix} 1 \\ -1 \end{bmatrix}.
    So, Im(T)=span{(1,1)}\operatorname{Im}(T) = \operatorname{span}\{(1,-1)\}. So, option C is true.

    Alternatively, using Rank-Nullity Theorem:
    dim(R2)=nullity(T)+rank(T)\dim(\mathbf{R}^2) = \operatorname{nullity}(T) + \operatorname{rank}(T)
    2=1+rank(T)2 = 1 + \operatorname{rank}(T)
    rank(T)=1\operatorname{rank}(T) = 1.
    A basis for the range is a single non-zero vector from the image, e.g., T(1,0)=(1,1)T(1,0)=(1,-1). So, Im(T)=span{(1,1)}\operatorname{Im}(T) = \operatorname{span}\{(1,-1)\}.

    Therefore, the true statements are B, C, and D.
    Answer: B, C, and D\boxed{\text{B, C, and D}}"
    :::

    ---

    Summary

    Key Formulas & Takeaways

    | # | Formula/Concept | Expression |
    |---|----------------|------------|
    | 1 | Linear Transformation | T(c1u+c2v)=c1T(u)+c2T(v)T(c_1 u + c_2 v) = c_1 T(u) + c_2 T(v) |
    | 2 | Kernel (Null Space) | ker(T)={vVT(v)=0W}\operatorname{ker}(T) = \{v \in V \mid T(v) = 0_W\} |
    | 3 | Range (Image) | Im(T)={T(v)vV}\operatorname{Im}(T) = \{T(v) \mid v \in V\} |
    | 4 | Rank-Nullity Theorem | dim(V)=nullity(T)+rank(T)\dim(V) = \operatorname{nullity}(T) + \operatorname{rank}(T) |
    | 5 | Matrix Representation | [T(v)]C=[T]CB[v]B[T(v)]_C = [T]_{C \leftarrow B} [v]_B |
    | 6 | Composition | [T2T1]CA=[T2]CB[T1]BA[T_2 \circ T_1]_{C \leftarrow A} = [T_2]_{C \leftarrow B} [T_1]_{B \leftarrow A} |
    | 7 | Isomorphism Condition (T:VVT:V \to V) | ker(T)={0}\operatorname{ker}(T) = \{0\} or Im(T)=V\operatorname{Im}(T) = V or det([T])0\det([T]) \neq 0 |

    ---

    What's Next?

    💡 Continue Learning

    This topic connects to:

      • Eigenvalues and Eigenvectors: Linear transformations are often analyzed by their eigenvalues and eigenvectors, which represent directions that are merely scaled by the transformation.

      • Diagonalization: Understanding if a linear transformation can be represented by a diagonal matrix simplifies many computations and reveals structural properties.

      • Change of Basis: The matrix representation of a linear transformation changes with respect to different bases, a concept crucial for understanding similarity transformations.

      • Inner Product Spaces: In these spaces, linear transformations can be further classified as orthogonal, symmetric, etc., with specific properties related to geometry.

    ---

    💡 Next Up

    Proceeding to Range Space and Null Space.

    ---

    Part 2: Range Space and Null Space

    Linear transformations are fundamental to linear algebra, mapping vectors from one vector space to another while preserving vector addition and scalar multiplication. The range space and null space are two critical subspaces associated with any linear transformation, providing insight into its structure and behavior. We examine these concepts for their direct utility in analyzing linear systems and their prevalence in competitive examinations.

    ---

    Core Concepts

    1. Range Space of a Linear Transformation

    The range space, also known as the image, of a linear transformation T:VWT: V \to W is the set of all possible output vectors in WW that result from applying TT to vectors in the domain VV. It is a subspace of the codomain WW.

    📖 Range Space (Image)

    For a linear transformation T:VWT: V \to W, the range space of TT, denoted Im(T)\operatorname{Im}(T) or R(T)R(T), is defined as:

    Im(T)={T(v)vV}\operatorname{Im}(T) = \{ T(v) \mid v \in V \}

    If TT is represented by a matrix AA, then the range space of TT is equivalent to the column space of AA. The dimension of the range space is called the rank of the transformation or matrix.

    📐 Rank of a Linear Transformation

    rank(T)=dim(Im(T))\operatorname{rank}(T) = \dim(\operatorname{Im}(T))

    Where: Im(T)\operatorname{Im}(T) is the range space of TT.
    When to use: To determine the dimension of the output space spanned by the transformation.

    Quick Example: Determine the range space and rank of the linear transformation T:R2R3T: \mathbb{R}^2 \to \mathbb{R}^3 defined by T(x,y)=(x,x+y,y)T(x,y) = (x, x+y, y).

    Step 1: Find the matrix representation of TT.
    We apply TT to the standard basis vectors of R2\mathbb{R}^2:
    T(1,0)=(1,1+0,0)=(1,1,0)T(1,0) = (1, 1+0, 0) = (1,1,0)
    T(0,1)=(0,0+1,1)=(0,1,1)T(0,1) = (0, 0+1, 1) = (0,1,1)

    The matrix AA whose columns are these image vectors is:

    A=[101101]A = \begin{bmatrix} 1 & 0 \\ 1 & 1 \\ 0 & 1 \end{bmatrix}

    Step 2: Find a basis for the column space of AA.
    The columns of AA are

    c1=[110]c_1 = \begin{bmatrix} 1 \\ 1 \\ 0 \end{bmatrix}

    and
    c2=[011]c_2 = \begin{bmatrix} 0 \\ 1 \\ 1 \end{bmatrix}

    We check for linear independence.
    If k1c1+k2c2=0k_1 c_1 + k_2 c_2 = 0, then:
    k1[110]+k2[011]=[000]k_1 \begin{bmatrix} 1 \\ 1 \\ 0 \end{bmatrix} + k_2 \begin{bmatrix} 0 \\ 1 \\ 1 \end{bmatrix} = \begin{bmatrix} 0 \\ 0 \\ 0 \end{bmatrix}

    [k1k1+k2k2]=[000]\begin{bmatrix} k_1 \\ k_1+k_2 \\ k_2 \end{bmatrix} = \begin{bmatrix} 0 \\ 0 \\ 0 \end{bmatrix}

    This implies k1=0k_1=0 and k2=0k_2=0, so the columns are linearly independent.

    Step 3: State the range space and rank.
    The range space Im(T)\operatorname{Im}(T) is the span of these linearly independent column vectors.

    Im(T)=span{[110],[011]}\operatorname{Im}(T) = \operatorname{span}\left\{ \begin{bmatrix} 1 \\ 1 \\ 0 \end{bmatrix}, \begin{bmatrix} 0 \\ 1 \\ 1 \end{bmatrix} \right\}

    The rank of TT is the dimension of its range space, which is the number of linearly independent vectors in its basis.
    Answer: rank(T)=2\operatorname{rank}(T) = 2.

    :::question type="MCQ" question="Let T:R3R2T: \mathbb{R}^3 \to \mathbb{R}^2 be a linear transformation defined by T(x,y,z)=(x+y,yz)T(x,y,z) = (x+y, y-z). What is the rank of TT?" options=["00","11","22","33"] answer="22" hint="Find the matrix representation of TT and determine the dimension of its column space." solution="Step 1: Find the matrix representation of TT.
    Apply TT to the standard basis vectors of R3\mathbb{R}^3:
    T(1,0,0)=(1+0,00)=(1,0)T(1,0,0) = (1+0, 0-0) = (1,0)
    T(0,1,0)=(0+1,10)=(1,1)T(0,1,0) = (0+1, 1-0) = (1,1)
    T(0,0,1)=(0+0,01)=(0,1)T(0,0,1) = (0+0, 0-1) = (0,-1)

    The matrix AA is formed by these column vectors:

    A=[110011]A = \begin{bmatrix} 1 & 1 & 0 \\ 0 & 1 & -1 \end{bmatrix}

    Step 2: Determine the rank of AA.
    The rank of AA is the number of linearly independent columns (or rows). We can perform row operations to find the row echelon form or observe linear independence.
    The first two columns

    [10]\begin{bmatrix} 1 \\ 0 \end{bmatrix}

    and
    [11]\begin{bmatrix} 1 \\ 1 \end{bmatrix}

    are clearly linearly independent. Since the maximum possible rank for a 2×32 \times 3 matrix is 2, the rank of AA is 2.
    Alternatively, the row echelon form is already achieved or easily obtained.
    [110011]\begin{bmatrix} 1 & 1 & 0 \\ 0 & 1 & -1 \end{bmatrix}

    There are two non-zero rows, so rank(A)=2\operatorname{rank}(A)=2.

    Step 3: The rank of TT is the rank of its matrix representation.
    Answer: 2\boxed{2}"
    :::

    ---

    2. Null Space of a Linear Transformation

    The null space, also known as the kernel, of a linear transformation T:VWT: V \to W is the set of all vectors in the domain VV that are mapped to the zero vector in the codomain WW. It is a subspace of the domain VV.

    📖 Null Space (Kernel)

    For a linear transformation T:VWT: V \to W, the null space of TT, denoted Ker(T)\operatorname{Ker}(T) or N(T)N(T), is defined as:

    Ker(T)={vVT(v)=0W}\operatorname{Ker}(T) = \{ v \in V \mid T(v) = 0_W \}

    If TT is represented by a matrix AA, then the null space of TT is the solution space of the homogeneous system Ax=0Ax=0. The dimension of the null space is called the nullity of the transformation or matrix.

    📐 Nullity of a Linear Transformation
    nullity(T)=dim(Ker(T))\operatorname{nullity}(T) = \dim(\operatorname{Ker}(T))

    Where: Ker(T)\operatorname{Ker}(T) is the null space of TT.
    When to use: To determine the dimension of the set of vectors that are 'collapsed' to the zero vector by the transformation.

    Quick Example: Determine the null space and nullity of the linear transformation T:R3R2T: \mathbb{R}^3 \to \mathbb{R}^2 defined by T(x,y,z)=(x+y,yz)T(x,y,z) = (x+y, y-z).

    Step 1: Find the matrix representation of TT.
    As derived in the previous example, the matrix AA for TT is:

    A=[110011]A = \begin{bmatrix} 1 & 1 & 0 \\ 0 & 1 & -1 \end{bmatrix}

    Step 2: Find the null space by solving Ax=0Ax=0.
    We set Ax=0Ax=0:

    [110011][xyz]=[00]\begin{bmatrix} 1 & 1 & 0 \\ 0 & 1 & -1 \end{bmatrix} \begin{bmatrix} x \\ y \\ z \end{bmatrix} = \begin{bmatrix} 0 \\ 0 \end{bmatrix}

    This gives the system of equations:

    x+y=0yz=0\begin{aligned}x + y & = 0 \\
    y - z & = 0\end{aligned}

    From the second equation, y=zy=z.
    Substitute y=zy=z into the first equation: x+z=0x+z=0, so x=zx=-z.

    Step 3: Express the general solution and find a basis for the null space.
    Let z=tz=t be a free variable. Then y=ty=t and x=tx=-t.
    Any vector in the null space is of the form:

    [xyz]=[ttt]=t[111]\begin{bmatrix} x \\ y \\ z \end{bmatrix} = \begin{bmatrix} -t \\ t \\ t \end{bmatrix} = t \begin{bmatrix} -1 \\ 1 \\ 1 \end{bmatrix}

    The null space Ker(T)\operatorname{Ker}(T) is the span of the vector [111]\begin{bmatrix} -1 \\ 1 \\ 1 \end{bmatrix}.

    Ker(T)=span{[111]}\operatorname{Ker}(T) = \operatorname{span}\left\{ \begin{bmatrix} -1 \\ 1 \\ 1 \end{bmatrix} \right\}

    The nullity of TT is the dimension of its null space.
    Answer: nullity(T)=1\operatorname{nullity}(T) = 1.

    :::question type="MCQ" question="Let T:R3R3T: \mathbb{R}^3 \to \mathbb{R}^3 be a linear transformation defined by T(x,y,z)=(xy+z,2x2y+2z,x+yz)T(x,y,z) = (x-y+z, 2x-2y+2z, -x+y-z). What is the nullity of TT?" options=["00","11","22","33"] answer="22" hint="Form the matrix AA for TT and solve the homogeneous system Ax=0Ax=0 to find the basis for the null space." solution="Step 1: Find the matrix representation of TT.
    Apply TT to the standard basis vectors of R3\mathbb{R}^3:
    T(1,0,0)=(1,2,1)T(1,0,0) = (1, 2, -1)
    T(0,1,0)=(1,2,1)T(0,1,0) = (-1, -2, 1)
    T(0,0,1)=(1,2,1)T(0,0,1) = (1, 2, -1)

    The matrix AA for TT is:

    A=[111222111]A = \begin{bmatrix} 1 & -1 & 1 \\ 2 & -2 & 2 \\ -1 & 1 & -1 \end{bmatrix}

    Step 2: Find the null space by solving Ax=0Ax=0.
    We row-reduce the matrix AA:

    [111222111]R2R22R1,R3R3+R1[111000000]\begin{bmatrix} 1 & -1 & 1 \\ 2 & -2 & 2 \\ -1 & 1 & -1 \end{bmatrix} \xrightarrow{R_2 \to R_2 - 2R_1, R_3 \to R_3 + R_1} \begin{bmatrix} 1 & -1 & 1 \\ 0 & 0 & 0 \\ 0 & 0 & 0 \end{bmatrix}

    The system Ax=0Ax=0 is equivalent to the single equation:

    xy+z=0x - y + z = 0

    We have two free variables. Let y=sy=s and z=tz=t.
    Then x=yz=stx = y - z = s - t.

    Step 3: Express the general solution and find a basis for the null space.
    Any vector in the null space is of the form:

    [xyz]=[stst]=s[110]+t[101]\begin{bmatrix} x \\ y \\ z \end{bmatrix} = \begin{bmatrix} s-t \\ s \\ t \end{bmatrix} = s \begin{bmatrix} 1 \\ 1 \\ 0 \end{bmatrix} + t \begin{bmatrix} -1 \\ 0 \\ 1 \end{bmatrix}

    The null space Ker(T)\operatorname{Ker}(T) is spanned by the linearly independent vectors [110]\begin{bmatrix} 1 \\ 1 \\ 0 \end{bmatrix} and [101]\begin{bmatrix} -1 \\ 0 \\ 1 \end{bmatrix}.

    Ker(T)=span{[110],[101]}\operatorname{Ker}(T) = \operatorname{span}\left\{ \begin{bmatrix} 1 \\ 1 \\ 0 \end{bmatrix}, \begin{bmatrix} -1 \\ 0 \\ 1 \end{bmatrix} \right\}

    The nullity of TT is the dimension of this null space.
    Answer: 2\boxed{2}."
    :::

    ---

    3. Rank-Nullity Theorem

    The Rank-Nullity Theorem establishes a fundamental relationship between the dimension of the domain, the rank, and the nullity of a linear transformation. This theorem is crucial for understanding the properties of linear maps.

    📐 Rank-Nullity Theorem

    For a linear transformation T:VWT: V \to W, where VV is a finite-dimensional vector space:

    dim(V)=rank(T)+nullity(T)\dim(V) = \operatorname{rank}(T) + \operatorname{nullity}(T)

    Where: dim(V)\dim(V) is the dimension of the domain VV.
    rank(T)\operatorname{rank}(T) is the dimension of the range space Im(T)\operatorname{Im}(T).
    nullity(T)\operatorname{nullity}(T) is the dimension of the null space Ker(T)\operatorname{Ker}(T).
    When to use: To find one of the three quantities when the other two are known, or to verify relationships between them.

    Quick Example: Let T:R4R3T: \mathbb{R}^4 \to \mathbb{R}^3 be a linear transformation whose range space Im(T)\operatorname{Im}(T) has dimension 3. What is the nullity of TT?

    Step 1: Identify the known quantities.
    The domain V=R4V = \mathbb{R}^4, so dim(V)=4\dim(V) = 4.
    The rank of TT is given as rank(T)=dim(Im(T))=3\operatorname{rank}(T) = \dim(\operatorname{Im}(T)) = 3.

    Step 2: Apply the Rank-Nullity Theorem.

    dim(V)=rank(T)+nullity(T)\dim(V) = \operatorname{rank}(T) + \operatorname{nullity}(T)

    4=3+nullity(T)4 = 3 + \operatorname{nullity}(T)

    Step 3: Solve for nullity(T)\operatorname{nullity}(T).

    nullity(T)=43=1\operatorname{nullity}(T) = 4 - 3 = 1

    Answer: The nullity of TT is 11.

    :::question type="NAT" question="A linear transformation T:R5R4T: \mathbb{R}^5 \to \mathbb{R}^4 is given by a 4×54 \times 5 matrix AA. If the column space of AA has dimension 3, what is the dimension of the solution space to Ax=0Ax=0?" answer="2" hint="Recall that the dimension of the column space is the rank, and the dimension of the solution space to Ax=0Ax=0 is the nullity. Apply the Rank-Nullity Theorem." solution="Step 1: Identify the given information in terms of the Rank-Nullity Theorem.
    The domain of the transformation is R5\mathbb{R}^5, so dim(V)=5\dim(V) = 5.
    The dimension of the column space of AA is 3. The dimension of the column space is precisely the rank of the matrix AA, and thus the rank of the transformation TT. So, rank(T)=3\operatorname{rank}(T) = 3.
    The dimension of the solution space to Ax=0Ax=0 is the nullity of TT, nullity(T)\operatorname{nullity}(T).

    Step 2: Apply the Rank-Nullity Theorem.
    The theorem states: dim(V)=rank(T)+nullity(T)\dim(V) = \operatorname{rank}(T) + \operatorname{nullity}(T).
    Substitute the known values:

    5=3+nullity(T)5 = 3 + \operatorname{nullity}(T)

    Step 3: Solve for nullity(T)\operatorname{nullity}(T).

    nullity(T)=53=2\operatorname{nullity}(T) = 5 - 3 = 2

    Answer: The dimension of the solution space to Ax=0Ax=0 is 2\boxed{2}."
    :::

    ---

    4. Injectivity and Surjectivity

    The null space and range space provide direct criteria for determining whether a linear transformation is injective (one-to-one) or surjective (onto).

    📖 Injectivity and Null Space

    A linear transformation T:VWT: V \to W is injective if and only if its null space contains only the zero vector:

    Ker(T)={0V}\operatorname{Ker}(T) = \{0_V\}

    This implies nullity(T)=0\operatorname{nullity}(T) = 0.

    📖 Surjectivity and Range Space

    A linear transformation T:VWT: V \to W is surjective if and only if its range space is equal to the entire codomain:

    Im(T)=W\operatorname{Im}(T) = W

    This implies rank(T)=dim(W)\operatorname{rank}(T) = \dim(W).

    Quick Example: Consider T:R2R2T: \mathbb{R}^2 \to \mathbb{R}^2 defined by T(x,y)=(x+y,xy)T(x,y) = (x+y, x-y). Is TT injective? Is TT surjective?

    Step 1: Determine the null space for injectivity.
    We solve T(x,y)=(0,0)T(x,y) = (0,0):

    x+y=0xy=0\begin{aligned}x+y & =0 \\
    x-y & =0\end{aligned}

    Adding the two equations yields 2x=0    x=02x=0 \implies x=0.
    Substituting x=0x=0 into the first equation yields y=0y=0.
    Thus, Ker(T)={(0,0)}\operatorname{Ker}(T) = \{(0,0)\}.

    Step 2: Conclude on injectivity.
    Since Ker(T)={(0,0)}\operatorname{Ker}(T) = \{(0,0)\}, TT is injective.

    Step 3: Determine the range space for surjectivity.
    The matrix for TT is:

    A=[1111]A = \begin{bmatrix} 1 & 1 \\ 1 & -1 \end{bmatrix}

    The columns are [11]\begin{bmatrix} 1 \\ 1 \end{bmatrix} and [11]\begin{bmatrix} 1 \\ -1 \end{bmatrix}. These are linearly independent, so rank(T)=2\operatorname{rank}(T) = 2.
    The codomain is R2\mathbb{R}^2, and dim(R2)=2\dim(\mathbb{R}^2) = 2.

    Step 4: Conclude on surjectivity.
    Since rank(T)=dim(R2)\operatorname{rank}(T) = \dim(\mathbb{R}^2), TT is surjective.

    Answer: TT is both injective and surjective.

    :::question type="MSQ" question="Let T:R3R2T: \mathbb{R}^3 \to \mathbb{R}^2 be a linear transformation defined by T(x,y,z)=(x+yz,y+z)T(x,y,z) = (x+y-z, y+z). Select ALL correct statements regarding TT." options=["TT is injective.","nullity(T)=1\operatorname{nullity}(T) = 1.","TT is surjective.","rank(T)=2\operatorname{rank}(T) = 2."] answer="nullity(T)=1\operatorname{nullity}(T) = 1.,TT is surjective.,rank(T)=2\operatorname{rank}(T) = 2." hint="First, find the matrix representation of TT. Then, determine its rank and nullity using row reduction and the Rank-Nullity Theorem. Finally, evaluate injectivity and surjectivity." solution="Step 1: Find the matrix representation of TT.
    Apply TT to the standard basis vectors of R3\mathbb{R}^3:
    T(1,0,0)=(1,0)T(1,0,0) = (1,0)
    T(0,1,0)=(1,1)T(0,1,0) = (1,1)
    T(0,0,1)=(1,1)T(0,0,1) = (-1,1)

    The matrix AA for TT is:

    A=[111011]A = \begin{bmatrix} 1 & 1 & -1 \\ 0 & 1 & 1 \end{bmatrix}

    Step 2: Determine the rank of TT.
    The matrix AA is already in row echelon form. There are two non-zero rows, so the rank of AA is 2.
    Thus, rank(T)=2\operatorname{rank}(T) = 2. (Statement D is correct)

    Step 3: Determine the nullity of TT using the Rank-Nullity Theorem.
    The domain is R3\mathbb{R}^3, so dim(R3)=3\dim(\mathbb{R}^3) = 3.

    dim(R3)=rank(T)+nullity(T)\dim(\mathbb{R}^3) = \operatorname{rank}(T) + \operatorname{nullity}(T)

    3=2+nullity(T)3 = 2 + \operatorname{nullity}(T)

    nullity(T)=1\operatorname{nullity}(T) = 1
    (Statement B is correct)

    Step 4: Evaluate injectivity.
    For TT to be injective, nullity(T)\operatorname{nullity}(T) must be 0. Since nullity(T)=1\operatorname{nullity}(T) = 1, TT is not injective. (Statement A is incorrect)

    Step 5: Evaluate surjectivity.
    For TT to be surjective, rank(T)\operatorname{rank}(T) must be equal to the dimension of the codomain. The codomain is R2\mathbb{R}^2, and dim(R2)=2\dim(\mathbb{R}^2) = 2.
    Since rank(T)=2=dim(R2)\operatorname{rank}(T) = 2 = \dim(\mathbb{R}^2), TT is surjective. (Statement C is correct)

    Answer: nullity(T)=1\operatorname{nullity}(T) = 1.,TT is surjective.,rank(T)=2\operatorname{rank}(T) = 2."
    :::

    ---

    Advanced Applications

    We consider a more complex example combining multiple concepts.

    Quick Example: Let AA be a 3×43 \times 4 matrix given by:

    A=[121024113621]A = \begin{bmatrix} 1 & 2 & 1 & 0 \\ 2 & 4 & 1 & 1 \\ 3 & 6 & 2 & 1 \end{bmatrix}

    Find a basis for the range space of AA and a basis for the null space of AA.

    Step 1: Row-reduce AA to find its row echelon form.

    [121024113621]R2R22R1[121000113621]R3R33R1[121000110011]R3R3R2[121000110000]R2R2[121000110000]\begin{aligned}\begin{bmatrix} 1 & 2 & 1 & 0 \\ 2 & 4 & 1 & 1 \\ 3 & 6 & 2 & 1 \end{bmatrix} & \xrightarrow{R_2 \to R_2 - 2R_1} \begin{bmatrix} 1 & 2 & 1 & 0 \\ 0 & 0 & -1 & 1 \\ 3 & 6 & 2 & 1 \end{bmatrix} \\
    & \xrightarrow{R_3 \to R_3 - 3R_1} \begin{bmatrix} 1 & 2 & 1 & 0 \\ 0 & 0 & -1 & 1 \\ 0 & 0 & -1 & 1 \end{bmatrix} \\
    & \xrightarrow{R_3 \to R_3 - R_2} \begin{bmatrix} 1 & 2 & 1 & 0 \\ 0 & 0 & -1 & 1 \\ 0 & 0 & 0 & 0 \end{bmatrix} \\
    & \xrightarrow{R_2 \to -R_2} \begin{bmatrix} 1 & 2 & 1 & 0 \\ 0 & 0 & 1 & -1 \\ 0 & 0 & 0 & 0 \end{bmatrix}\end{aligned}

    This is the row echelon form.

    Step 2: Find a basis for the range space (column space).
    The pivot columns in the row echelon form are the 1st and 3rd columns.
    Thus, the corresponding columns from the original matrix AA form a basis for the range space.

    Basis for Im(A)={[123],[112]}\text{Basis for } \operatorname{Im}(A) = \left\{ \begin{bmatrix} 1 \\ 2 \\ 3 \end{bmatrix}, \begin{bmatrix} 1 \\ 1 \\ 2 \end{bmatrix} \right\}

    The rank of AA is 2.

    Step 3: Find a basis for the null space.
    From the row echelon form, the system Ax=0Ax=0 is equivalent to:

    x1+2x2+x3=0x3x4=0\begin{aligned}x_1 + 2x_2 + x_3 & = 0 \\
    x_3 - x_4 & = 0\end{aligned}

    From the second equation, x3=x4x_3 = x_4.
    Substitute x3x_3 into the first equation: x1+2x2+x4=0    x1=2x2x4x_1 + 2x_2 + x_4 = 0 \implies x_1 = -2x_2 - x_4.
    The free variables are x2x_2 and x4x_4. Let x2=sx_2 = s and x4=tx_4 = t.
    Then x3=tx_3 = t and x1=2stx_1 = -2s - t.

    The general solution vector is:

    [x1x2x3x4]=[2ststt]=s[2100]+t[1011]\begin{bmatrix} x_1 \\ x_2 \\ x_3 \\ x_4 \end{bmatrix} = \begin{bmatrix} -2s - t \\ s \\ t \\ t \end{bmatrix} = s \begin{bmatrix} -2 \\ 1 \\ 0 \\ 0 \end{bmatrix} + t \begin{bmatrix} -1 \\ 0 \\ 1 \\ 1 \end{bmatrix}

    Step 4: State the basis for the null space.

    Basis for Ker(A)={[2100],[1011]}\text{Basis for } \operatorname{Ker}(A) = \left\{ \begin{bmatrix} -2 \\ 1 \\ 0 \\ 0 \end{bmatrix}, \begin{bmatrix} -1 \\ 0 \\ 1 \\ 1 \end{bmatrix} \right\}

    The nullity of AA is 2.

    Answer: Basis for Im(A)={[123],[112]}\operatorname{Im}(A) = \left\{ \begin{bmatrix} 1 \\ 2 \\ 3 \end{bmatrix}, \begin{bmatrix} 1 \\ 1 \\ 2 \end{bmatrix} \right\}, Basis for Ker(A)={[2100],[1011]}\operatorname{Ker}(A) = \left\{ \begin{bmatrix} -2 \\ 1 \\ 0 \\ 0 \end{bmatrix}, \begin{bmatrix} -1 \\ 0 \\ 1 \\ 1 \end{bmatrix} \right\}.
    We observe dim(V)=4\dim(V) = 4, rank(A)=2\operatorname{rank}(A) = 2, nullity(A)=2\operatorname{nullity}(A) = 2. This satisfies the Rank-Nullity Theorem: 4=2+24 = 2+2.

    ---

    Problem-Solving Strategies

    💡 CUET PG Strategy: Finding Basis and Dimension

    • For Range Space (Column Space):

    • Form the matrix AA for the linear transformation.
      Row-reduce AA to its row echelon form.
      Identify the pivot columns in the row echelon form.
      The corresponding columns in the original
      matrix AA form a basis for the range space.
      The number of pivot columns is the rank.
    • For Null Space (Kernel):

    Form the matrix AA.
    Solve the homogeneous system Ax=0Ax=0 by row-reducing AA to its reduced row echelon form.
    Express the basic variables in terms of the free variables.
    Write the general solution vector as a linear combination of vectors, where coefficients are the free variables. These vectors form a basis for the null space.
    The number of free variables is the nullity.

    ---

    Common Mistakes

    ⚠️ Watch Out

    ❌ Using pivot columns from the row-reduced matrix as a basis for the column space.
    ✅ The basis vectors for the column space (range space) must be the original columns of the matrix that correspond to the pivot columns in its row echelon form. This is crucial as row operations change the column space itself, but not the linear dependence relations between columns.

    ❌ Confusing the domain and codomain dimensions in the Rank-Nullity Theorem.
    ✅ The Rank-Nullity Theorem relates rank(T)\operatorname{rank}(T) and nullity(T)\operatorname{nullity}(T) to the dimension of the domain VV, not the codomain WW. dim(V)=rank(T)+nullity(T)\dim(V) = \operatorname{rank}(T) + \operatorname{nullity}(T). Surjectivity, however, compares rank(T)\operatorname{rank}(T) to dim(W)\dim(W).

    ---

    ---

    Practice Questions

    :::question type="MCQ" question="Let AA be a 5×75 \times 7 matrix with rank3\operatorname{rank} 3. What is the dimension of the null space of AA?" options=["22","33","44","55"] answer="44" hint="Apply the Rank-Nullity Theorem. The dimension of the domain is the number of columns of the matrix." solution="Step 1: Identify the dimensions.
    The matrix AA is 5×75 \times 7, meaning it defines a linear transformation from R7\mathbb{R}^7 to R5\mathbb{R}^5.
    The dimension of the domain VV is the number of columns, so dim(V)=7\dim(V) = 7.
    The rank of AA is given as rank(A)=3\operatorname{rank}(A) = 3.

    Step 2: Apply the Rank-Nullity Theorem.
    dim(V)=rank(A)+nullity(A)\dim(V) = \operatorname{rank}(A) + \operatorname{nullity}(A)

    7=3+nullity(A)7 = 3 + \operatorname{nullity}(A)

    Step 3: Solve for nullity(A)\operatorname{nullity}(A).

    nullity(A)=73=4\operatorname{nullity}(A) = 7 - 3 = 4

    Answer: The dimension of the null space of AA is 4\boxed{4}."
    :::

    :::question type="NAT" question="Let T:P2R2T: \mathbb{P}_2 \to \mathbb{R}^2 be a linear transformation defined by T(p(x))=(p(0),p(1))T(p(x)) = (p(0), p(1)). What is the nullity\operatorname{nullity} of TT?" answer="1" hint="First, find a basis for the domain P2\mathbb{P}_2 and determine its dimension. Then, find the matrix representation of TT with respect to these bases and calculate its rank." solution="Step 1: Determine the dimension of the domain.
    The domain is P2\mathbb{P}_2, the space of polynomials of degree at most 2. A standard basis for P2\mathbb{P}_2 is {1,x,x2}\{1, x, x^2\}.
    So, dim(P2)=3\dim(\mathbb{P}_2) = 3.

    Step 2: Find the matrix representation of TT.
    Apply TT to the basis vectors:

    T(1)=(1,1)T(1) = (1,1)

    T(x)=(0,1)T(x) = (0,1)

    T(x2)=(0,1)T(x^2) = (0,1)

    The matrix AA for TT (with respect to the standard basis of P2\mathbb{P}_2 and R2\mathbb{R}^2) is:

    A=[100111]A = \begin{bmatrix} 1 & 0 & 0 \\ 1 & 1 & 1 \end{bmatrix}

    Step 3: Determine the rank of TT.
    Row-reduce AA:

    [100111]R2R2R1[100011]\begin{bmatrix} 1 & 0 & 0 \\ 1 & 1 & 1 \end{bmatrix} \xrightarrow{R_2 \to R_2 - R_1} \begin{bmatrix} 1 & 0 & 0 \\ 0 & 1 & 1 \end{bmatrix}

    The row echelon form has two non-zero rows, so rank(A)=2\operatorname{rank}(A) = 2.

    Step 4: Apply the Rank-Nullity Theorem.
    dim(P2)=rank(T)+nullity(T)\dim(\mathbb{P}_2) = \operatorname{rank}(T) + \operatorname{nullity}(T)

    3=2+nullity(T)3 = 2 + \operatorname{nullity}(T)

    nullity(T)=1\operatorname{nullity}(T) = 1

    Answer: The nullity of TT is 1\boxed{1}."
    :::

    :::question type="MCQ" question="For a linear transformation T:VWT: V \to W, if dim(V)=5\dim(V) = 5 and Ker(T)\operatorname{Ker}(T) is spanned by two linearly independent vectors, then Im(T)\operatorname{Im}(T) has dimension:" options=["22","33","44","55"] answer="33" hint="The number of linearly independent vectors spanning the kernel is the nullity. Use the Rank-Nullity Theorem." solution="Step 1: Identify the given information.
    dim(V)=5\dim(V) = 5.
    The null space Ker(T)\operatorname{Ker}(T) is spanned by two linearly independent vectors, which means nullity(T)=2\operatorname{nullity}(T) = 2.

    Step 2: Apply the Rank-Nullity Theorem.
    dim(V)=rank(T)+nullity(T)\dim(V) = \operatorname{rank}(T) + \operatorname{nullity}(T)

    5=rank(T)+25 = \operatorname{rank}(T) + 2

    Step 3: Solve for rank(T)\operatorname{rank}(T).

    rank(T)=52=3\operatorname{rank}(T) = 5 - 2 = 3

    The dimension of Im(T)\operatorname{Im}(T) is the rank of TT.
    Answer: Im(T)\operatorname{Im}(T) has dimension 3\boxed{3}."
    :::

    :::question type="MSQ" question="Let AA be a 4×34 \times 3 matrix such that the system Ax=bAx=b has a unique solution for some bR4b \in \mathbb{R}^4. Which of the following statements MUST be true?" options=["rank(A)=3\operatorname{rank}(A) = 3.","nullity(A)=0\operatorname{nullity}(A) = 0.","The columns of AA are linearly independent.","The rows of AA are linearly independent."] answer="rank(A)=3\operatorname{rank}(A) = 3.,nullity(A)=0\operatorname{nullity}(A) = 0.,The columns of AA are linearly independent." hint="A unique solution to Ax=bAx=b implies that the null space of AA is trivial. Relate this to rank and linear independence of columns." solution="Step 1: Analyze the condition 'unique solution for some bb'.
    For a system Ax=bAx=b to have a unique solution, two conditions must be met:

  • The system must be consistent (i.e., bb must be in the column space of AA).

  • The null space of AA must be trivial, meaning Ker(A)={0}\operatorname{Ker}(A) = \{0\}. This ensures that if a solution exists, it is unique. If Ker(A)\operatorname{Ker}(A) were non-trivial, x0+vhx_0 + v_h (where vhKer(A)v_h \in \operatorname{Ker}(A)) would yield multiple solutions.
  • Step 2: Relate to nullity and rank.
    From condition 2, nullity(A)=dim(Ker(A))=0\operatorname{nullity}(A) = \dim(\operatorname{Ker}(A)) = 0. (Statement B is correct)
    Using the Rank-Nullity Theorem: dim(domain)=rank(A)+nullity(A)\dim(\text{domain}) = \operatorname{rank}(A) + \operatorname{nullity}(A).
    The domain for a 4×34 \times 3 matrix is R3\mathbb{R}^3, so dim(domain)=3\dim(\text{domain}) = 3.

    3=rank(A)+03 = \operatorname{rank}(A) + 0

    rank(A)=3\operatorname{rank}(A) = 3

    (Statement A is correct)

    Step 3: Relate to linear independence of columns and rows.
    Since rank(A)=3\operatorname{rank}(A) = 3, and AA is a 4×34 \times 3 matrix, the number of pivot columns is 3. This means all 3 columns of AA are pivot columns, which implies they are linearly independent. (Statement C is correct)
    The rank of a matrix is also the number of linearly independent rows. A 4×34 \times 3 matrix with rank 3 has 3 linearly independent rows. However, it has 4 rows in total. Therefore, the rows of AA cannot be linearly independent, as 4 vectors in R3\mathbb{R}^3 must be linearly dependent. (Statement D is incorrect)

    Answer: rank(A)=3\operatorname{rank}(A) = 3.,nullity(A)=0\operatorname{nullity}(A) = 0.,The columns of AA are linearly independent."
    :::

    ---

    Summary

    Key Formulas & Takeaways

    | # | Formula/Concept | Expression |
    |---|----------------|------------|
    | 1 | Range Space (Image) | Im(T)={T(v)vV}\operatorname{Im}(T) = \{ T(v) \mid v \in V \} |
    | 2 | Rank | rank(T)=dim(Im(T))\operatorname{rank}(T) = \dim(\operatorname{Im}(T)) |
    | 3 | Null Space (Kernel) | Ker(T)={vVT(v)=0W}\operatorname{Ker}(T) = \{ v \in V \mid T(v) = 0_W \} |
    | 4 | Nullity | nullity(T)=dim(Ker(T))\operatorname{nullity}(T) = \dim(\operatorname{Ker}(T)) |
    | 5 | Rank-Nullity Theorem | dim(V)=rank(T)+nullity(T)\dim(V) = \operatorname{rank}(T) + \operatorname{nullity}(T) |
    | 6 | Injectivity | T is injective     nullity(T)=0T \text{ is injective } \iff \operatorname{nullity}(T) = 0 |
    | 7 | Surjectivity | T is surjective     rank(T)=dim(W)T \text{ is surjective } \iff \operatorname{rank}(T) = \dim(W) |

    ---

    What's Next?

    💡 Continue Learning

    This topic connects to:

      • Matrix Invertibility: An n×nn \times n matrix AA is invertible if and only if rank(A)=n\operatorname{rank}(A) = n (full rank), which implies nullity(A)=0\operatorname{nullity}(A) = 0.

      • Eigenvalues and Eigenvectors: The null space of (AλI)(A - \lambda I) is the eigenspace corresponding to the eigenvalue λ\lambda.

      • Fundamental Subspaces: Range space and null space are two of the four fundamental subspaces of a matrix (along with row space and left null space), which are interconnected by orthogonality.

    ---

    💡 Next Up

    Proceeding to Rank-Nullity Theorem.

    ---

    Part 3: Rank-Nullity Theorem

    The Rank-Nullity Theorem is a fundamental result in linear algebra, establishing a crucial relationship between the dimensions of the null space (kernel) and the range space (image) of a linear transformation. We utilize this theorem extensively in determining properties of linear mappings and analyzing systems of linear equations, which are recurrent themes in the CUET PG examination.

    ---

    Core Concepts

    1. Linear Transformation

    A mapping T:VWT: V \to W between two vector spaces VV and WW over the same field FF is a linear transformation if, for all vectors u,vV\mathbf{u}, \mathbf{v} \in V and scalars cFc \in F, it satisfies two conditions:

  • T(u+v)=T(u)+T(v)T(\mathbf{u} + \mathbf{v}) = T(\mathbf{u}) + T(\mathbf{v}) (additivity)

  • T(cu)=cT(u)T(c\mathbf{u}) = cT(\mathbf{u}) (homogeneity)
  • We frequently represent linear transformations using matrices, where matrix multiplication corresponds to the transformation.

    Quick Example:

    Consider the transformation T:R2R2T: \mathbb{R}^2 \to \mathbb{R}^2 defined by T(x,y)=(x+y,xy)T(x,y) = (x+y, x-y). We verify its linearity.

    Step 1: Check additivity.
    Let u=(x1,y1)\mathbf{u} = (x_1, y_1) and v=(x2,y2)\mathbf{v} = (x_2, y_2).
    T(u+v)=T(x1+x2,y1+y2)T(\mathbf{u} + \mathbf{v}) = T(x_1+x_2, y_1+y_2)

    T(x1+x2,y1+y2)=((x1+x2)+(y1+y2),(x1+x2)(y1+y2))=(x1+y1+x2+y2,x1y1+x2y2)=(x1+y1,x1y1)+(x2+y2,x2y2)=T(u)+T(v)\begin{aligned} T(x_1+x_2, y_1+y_2) & = ((x_1+x_2)+(y_1+y_2), (x_1+x_2)-(y_1+y_2)) \\ & = (x_1+y_1+x_2+y_2, x_1-y_1+x_2-y_2) \\ & = (x_1+y_1, x_1-y_1) + (x_2+y_2, x_2-y_2) \\ & = T(\mathbf{u}) + T(\mathbf{v}) \end{aligned}

    Step 2: Check homogeneity.
    Let cRc \in \mathbb{R}.
    T(cu)=T(cx1,cy1)T(c\mathbf{u}) = T(cx_1, cy_1)

    T(cx1,cy1)=(cx1+cy1,cx1cy1)=c(x1+y1,x1y1)=cT(u)\begin{aligned} T(cx_1, cy_1) & = (cx_1+cy_1, cx_1-cy_1) \\ & = c(x_1+y_1, x_1-y_1) \\ & = cT(\mathbf{u}) \end{aligned}

    Answer: TT is a linear transformation.

    :::question type="MCQ" question="Let T:R2R2T: \mathbb{R}^2 \to \mathbb{R}^2 be a transformation defined by T(x,y)=(xy,x+y)T(x,y) = (xy, x+y). Is TT a linear transformation?" options=["Yes, because it maps from R2\mathbb{R}^2 to R2\mathbb{R}^2.","Yes, because it preserves vector addition.","No, because it does not preserve scalar multiplication.","No, because it does not preserve vector addition."] answer="No, because it does not preserve vector addition." hint="Test the additivity and homogeneity properties with specific vectors and scalars." solution="Let u=(1,0)\mathbf{u} = (1,0) and v=(0,1)\mathbf{v} = (0,1). Then u+v=(1,1)\mathbf{u} + \mathbf{v} = (1,1).

    T(u)=T(1,0)=(10,1+0)=(0,1)T(\mathbf{u}) = T(1,0) = (1 \cdot 0, 1+0) = (0,1)

    T(v)=T(0,1)=(01,0+1)=(0,1)T(\mathbf{v}) = T(0,1) = (0 \cdot 1, 0+1) = (0,1)

    T(u)+T(v)=(0,1)+(0,1)=(0,2)T(\mathbf{u}) + T(\mathbf{v}) = (0,1) + (0,1) = (0,2)

    However,
    T(u+v)=T(1,1)=(11,1+1)=(1,2)T(\mathbf{u} + \mathbf{v}) = T(1,1) = (1 \cdot 1, 1+1) = (1,2)

    Since T(u+v)T(u)+T(v)T(\mathbf{u} + \mathbf{v}) \neq T(\mathbf{u}) + T(\mathbf{v}), the transformation is not linear. Therefore, it does not preserve vector addition.
    Answer: No, because it does not preserve vector addition.\boxed{\text{No, because it does not preserve vector addition.}}"
    :::

    ---

    2. Null Space (Kernel)

    📖 Null Space (Kernel)

    For a linear transformation T:VWT: V \to W, the null space (or kernel) of TT, denoted Null(T)\operatorname{Null}(T) or ker(T)\operatorname{ker}(T), is the set of all vectors vV\mathbf{v} \in V such that T(v)=0WT(\mathbf{v}) = \mathbf{0}_W.

    Null(T)={vVT(v)=0W}\operatorname{Null}(T) = \{\mathbf{v} \in V \mid T(\mathbf{v}) = \mathbf{0}_W\}

    The null space is a subspace of VV.

    📖 Nullity

    The dimension of the null space, dim(Null(T))\dim(\operatorname{Null}(T)), is called the nullity of TT, denoted nullity(T)\operatorname{nullity}(T).

    For a matrix AA, its null space Null(A)\operatorname{Null}(A) is the set of all solutions to the homogeneous equation Ax=0A\mathbf{x} = \mathbf{0}. The nullity of AA is the dimension of this solution space.

    Quick Example:

    Find the null space and nullity of the matrix A=[1236]A = \begin{bmatrix} 1 & 2 \\ 3 & 6 \end{bmatrix}.

    Step 1: Set up the homogeneous system Ax=0A\mathbf{x} = \mathbf{0}.

    [1236][xy]=[00]\begin{bmatrix} 1 & 2 \\ 3 & 6 \end{bmatrix} \begin{bmatrix} x \\ y \end{bmatrix} = \begin{bmatrix} 0 \\ 0 \end{bmatrix}

    Step 2: Reduce the augmented matrix to row echelon form.

    [120360]R2R23R1[120000]\begin{aligned}\left[\begin{array}{cc|c} 1 & 2 & 0 \\ 3 & 6 & 0 \end{array}\right] & \xrightarrow{R_2 \to R_2 - 3R_1} \left[\begin{array}{cc|c} 1 & 2 & 0 \\ 0 & 0 & 0 \end{array}\right]\end{aligned}

    Step 3: Write the system of equations from the row echelon form.
    x+2y=0    x=2yx + 2y = 0 \implies x = -2y.
    Here yy is a free variable.

    Step 4: Express the general solution.
    Let y=ty = t for some scalar tRt \in \mathbb{R}.
    Then

    x=[xy]=[2tt]=t[21]\mathbf{x} = \begin{bmatrix} x \\ y \end{bmatrix} = \begin{bmatrix} -2t \\ t \end{bmatrix} = t \begin{bmatrix} -2 \\ 1 \end{bmatrix}

    Step 5: Identify the null space and nullity.
    The null space is

    Null(A)=span{[21]}\operatorname{Null}(A) = \operatorname{span}\left\{\begin{bmatrix} -2 \\ 1 \end{bmatrix}\right\}

    The nullity is the number of free variables, which is 1.
    Answer: Null(A)=span{[21]}\operatorname{Null}(A) = \operatorname{span}\left\{\begin{bmatrix} -2 \\ 1 \end{bmatrix}\right\}, nullity(A)=1\operatorname{nullity}(A) = 1.

    :::question type="NAT" question="Consider the linear transformation T:R3R2T: \mathbb{R}^3 \to \mathbb{R}^2 defined by T(x,y,z)=(xy,yz)T(x,y,z) = (x-y, y-z). What is the nullity of TT?" answer="1" hint="Find the matrix representation of TT and then its null space dimension. The null space consists of vectors (x,y,z)(x,y,z) such that xy=0x-y=0 and yz=0y-z=0." solution="The transformation T(x,y,z)=(xy,yz)T(x,y,z) = (x-y, y-z) can be represented by a matrix AA such that T(x)=AxT(\mathbf{x}) = A\mathbf{x}.

    A=[110011]A = \begin{bmatrix} 1 & -1 & 0 \\ 0 & 1 & -1 \end{bmatrix}

    To find the null space, we solve Ax=0A\mathbf{x} = \mathbf{0}:
    xy=0yz=0\begin{aligned} x - y & = 0 \\ y - z & = 0 \end{aligned}

    From the second equation, y=zy = z.
    Substitute into the first equation: xz=0    x=zx - z = 0 \implies x = z.
    So, any vector in the null space is of the form (z,z,z)(z, z, z).
    We can write this as z(1,1,1)z(1,1,1).
    Thus, the null space is span{(1,1,1)}\operatorname{span}\{(1,1,1)\}.
    The basis for the null space is {(1,1,1)}\{(1,1,1)\}, which contains one vector.
    Therefore, the nullity of TT is 1.
    Answer: \boxed{1}"
    :::

    ---

    3. Range Space (Image)

    📖 Range Space (Image)

    For a linear transformation T:VWT: V \to W, the range space (or image) of TT, denoted Range(T)\operatorname{Range}(T) or Im(T)\operatorname{Im}(T), is the set of all vectors wW\mathbf{w} \in W such that w=T(v)\mathbf{w} = T(\mathbf{v}) for some vV\mathbf{v} \in V.

    Range(T)={T(v)vV}\operatorname{Range}(T) = \{T(\mathbf{v}) \mid \mathbf{v} \in V\}

    The range space is a subspace of WW.

    📖 Rank

    The dimension of the range space, dim(Range(T))\dim(\operatorname{Range}(T)), is called the rank of TT, denoted rank(T)\operatorname{rank}(T).

    For a matrix AA, its range space Range(A)\operatorname{Range}(A) is the column space of AA, which is the span of its column vectors. The rank of AA is the dimension of its column space, which is also equal to the dimension of its row space. We typically find the rank by reducing the matrix to row echelon form and counting the number of non-zero rows (pivot positions).

    Quick Example:

    Find the range space and rank of the matrix A=[1236]A = \begin{bmatrix} 1 & 2 \\ 3 & 6 \end{bmatrix}.

    Step 1: The range space is the column space of AA.

    Range(A)=span{[13],[26]}\operatorname{Range}(A) = \operatorname{span}\left\{\begin{bmatrix} 1 \\ 3 \end{bmatrix}, \begin{bmatrix} 2 \\ 6 \end{bmatrix}\right\}

    Step 2: Determine a basis for the column space.
    We observe that the second column is 22 times the first column.

    [26]=2[13]\begin{bmatrix} 2 \\ 6 \end{bmatrix} = 2 \begin{bmatrix} 1 \\ 3 \end{bmatrix}

    The columns are linearly dependent. A basis for the column space is
    {[13]}\left\{\begin{bmatrix} 1 \\ 3 \end{bmatrix}\right\}

    Step 3: Identify the rank.
    The rank is the number of linearly independent column vectors, which is 1.
    Alternatively, we reduce AA to row echelon form:

    [1236]R2R23R1[1200]\begin{bmatrix} 1 & 2 \\ 3 & 6 \end{bmatrix} \xrightarrow{R_2 \to R_2 - 3R_1} \begin{bmatrix} 1 & 2 \\ 0 & 0 \end{bmatrix}

    The number of non-zero rows (pivot positions) is 1.
    Answer: Range(A)=span{[13]}\operatorname{Range}(A) = \operatorname{span}\left\{\begin{bmatrix} 1 \\ 3 \end{bmatrix}\right\}, rank(A)=1\operatorname{rank}(A) = 1.

    :::question type="MCQ" question="Let T:R3R3T: \mathbb{R}^3 \to \mathbb{R}^3 be defined by T(x,y,z)=(x+y,y+z,xz)T(x,y,z) = (x+y, y+z, x-z). What is the rank of TT?" options=["11","22","33","00"] answer="2" hint="Form the matrix for TT and find the number of pivot positions after row reduction." solution="The matrix representation of TT is:

    A=[110011101]A = \begin{bmatrix} 1 & 1 & 0 \\ 0 & 1 & 1 \\ 1 & 0 & -1 \end{bmatrix}

    We reduce AA to row echelon form:
    [110011101]R3R3R1[110011011]R3R3+R2[110011000]\begin{aligned} \begin{bmatrix} 1 & 1 & 0 \\ 0 & 1 & 1 \\ 1 & 0 & -1 \end{bmatrix} & \xrightarrow{R_3 \to R_3 - R_1} \begin{bmatrix} 1 & 1 & 0 \\ 0 & 1 & 1 \\ 0 & -1 & -1 \end{bmatrix} \\ & \xrightarrow{R_3 \to R_3 + R_2} \begin{bmatrix} 1 & 1 & 0 \\ 0 & 1 & 1 \\ 0 & 0 & 0 \end{bmatrix} \end{aligned}

    The row echelon form has two non-zero rows.
    Therefore, the rank of TT is 2.
    Answer: \boxed{2}"
    :::

    ---

    4. Rank-Nullity Theorem

    📐 Rank-Nullity Theorem

    For a linear transformation T:VWT: V \to W, where VV is a finite-dimensional vector space, the sum of the dimension of its range space (rank) and the dimension of its null space (nullity) is equal to the dimension of its domain space VV.

    dim(V)=rank(T)+nullity(T)\dim(V) = \operatorname{rank}(T) + \operatorname{nullity}(T)

    Where:
    dim(V)\dim(V) = dimension of the domain vector space VV.
    rank(T)\operatorname{rank}(T) = dimension of the range space Range(T)\operatorname{Range}(T).
    nullity(T)\operatorname{nullity}(T) = dimension of the null space Null(T)\operatorname{Null}(T).
    When to use: To relate the "size" of the input space to the "loss of information" (null space) and the "output space" (range space) of a linear transformation.

    This theorem applies equally to matrices, where rank(A)+nullity(A)=n\operatorname{rank}(A) + \operatorname{nullity}(A) = n, for an m×nm \times n matrix AA. Here nn is the number of columns (dimension of the domain space).

    Quick Example:

    Let T:R4R3T: \mathbb{R}^4 \to \mathbb{R}^3 be a linear transformation with rank(T)=2\operatorname{rank}(T) = 2. Find nullity(T)\operatorname{nullity}(T).

    Step 1: Identify the dimension of the domain space.
    The domain is R4\mathbb{R}^4, so dim(V)=4\dim(V) = 4.

    Step 2: Apply the Rank-Nullity Theorem.

    dim(V)=rank(T)+nullity(T)4=2+nullity(T)nullity(T)=42=2\begin{aligned}\dim(V) & = \operatorname{rank}(T) + \operatorname{nullity}(T) \\ 4 & = 2 + \operatorname{nullity}(T) \\ \operatorname{nullity}(T) & = 4 - 2 = 2\end{aligned}

    Answer: nullity(T)=2\operatorname{nullity}(T) = 2.

    :::question type="MCQ" question="A linear transformation T:P3(R)R3T: P_3(\mathbb{R}) \to \mathbb{R}^3 has a range space spanned by {(1,0,1),(0,1,1)}\{(1,0,1), (0,1,1)\}. What is the nullity of TT?" options=["11","22","33","44"] answer="2" hint="First, determine the dimension of the domain space P3(R)P_3(\mathbb{R}) and the rank of TT from the given span." solution="The domain space is P3(R)P_3(\mathbb{R}), the space of polynomials of degree at most 3. A basis for P3(R)P_3(\mathbb{R}) is {1,x,x2,x3}\{1, x, x^2, x^3\}, so dim(P3(R))=4\dim(P_3(\mathbb{R})) = 4.
    The range space is spanned by {(1,0,1),(0,1,1)}\{(1,0,1), (0,1,1)\}. These two vectors are linearly independent, so the dimension of the range space, rank(T)\operatorname{rank}(T), is 2.
    Applying the Rank-Nullity Theorem:

    dim(P3(R))=rank(T)+nullity(T)\dim(P_3(\mathbb{R})) = \operatorname{rank}(T) + \operatorname{nullity}(T)

    4=2+nullity(T)4 = 2 + \operatorname{nullity}(T)

    nullity(T)=42=2\operatorname{nullity}(T) = 4 - 2 = 2

    The nullity of TT is 2.
    Answer: \boxed{2}"
    :::

    ---

    Advanced Applications

    1. Rank and Nullity of a Matrix

    For an m×nm \times n matrix AA, we can view it as the matrix representation of a linear transformation T:RnRmT: \mathbb{R}^n \to \mathbb{R}^m.
    The rank of AA, denoted rank(A)\operatorname{rank}(A), is the dimension of its column space (or row space). This is equivalent to the number of pivot positions in its row echelon form.
    The nullity of AA, denoted nullity(A)\operatorname{nullity}(A), is the dimension of the solution space to Ax=0A\mathbf{x} = \mathbf{0}. This is equivalent to the number of free variables in the solution to Ax=0A\mathbf{x} = \mathbf{0}.

    📐 Rank-Nullity for Matrices

    For an m×nm \times n matrix AA:

    n=rank(A)+nullity(A)n = \operatorname{rank}(A) + \operatorname{nullity}(A)

    Where:
    nn = number of columns of AA (dimension of the domain space).
    rank(A)\operatorname{rank}(A) = number of pivot columns in the row echelon form of AA.
    nullity(A)\operatorname{nullity}(A) = number of non-pivot columns (free variables) in the row echelon form of AA.

    Worked Example:

    Find the rank and nullity of the matrix

    A=[123246369]A = \begin{bmatrix} 1 & 2 & 3 \\ 2 & 4 & 6 \\ 3 & 6 & 9 \end{bmatrix}

    Step 1: Reduce the matrix AA to row echelon form.

    [123246369]R2R22R1[123000369]R3R33R1[123000000]\begin{aligned}\begin{bmatrix} 1 & 2 & 3 \\ 2 & 4 & 6 \\ 3 & 6 & 9 \end{bmatrix} & \xrightarrow{R_2 \to R_2 - 2R_1} \begin{bmatrix} 1 & 2 & 3 \\ 0 & 0 & 0 \\ 3 & 6 & 9 \end{bmatrix} \\ & \xrightarrow{R_3 \to R_3 - 3R_1} \begin{bmatrix} 1 & 2 & 3 \\ 0 & 0 & 0 \\ 0 & 0 & 0 \end{bmatrix}\end{aligned}

    Step 2: Determine the rank.
    The row echelon form has one non-zero row.
    Therefore, rank(A)=1\operatorname{rank}(A) = 1.

    Step 3: Determine the nullity using the Rank-Nullity Theorem.
    The matrix AA is 3×33 \times 3, so n=3n=3.

    n=rank(A)+nullity(A)3=1+nullity(A)nullity(A)=31=2\begin{aligned}n & = \operatorname{rank}(A) + \operatorname{nullity}(A) \\ 3 & = 1 + \operatorname{nullity}(A) \\ \operatorname{nullity}(A) & = 3 - 1 = 2\end{aligned}

    Alternatively, from the row echelon form, x1+2x2+3x3=0x_1 + 2x_2 + 3x_3 = 0. Variables x2x_2 and x3x_3 are free variables. Thus, there are 2 free variables, so nullity(A)=2\operatorname{nullity}(A) = 2.
    Answer: rank(A)=1\operatorname{rank}(A) = 1, nullity(A)=2\operatorname{nullity}(A) = 2.

    :::question type="NAT" question="What is the nullity of the matrix M=[112022410003]M = \begin{bmatrix} 1 & -1 & 2 & 0 \\ 2 & -2 & 4 & 1 \\ 0 & 0 & 0 & 3 \end{bmatrix}?" answer="2" hint="Find the rank of the matrix first by row reduction, then use the Rank-Nullity Theorem." solution="We reduce the matrix MM to row echelon form:

    [112022410003]R2R22R1[112000010003]R3R33R2[112000010000]\begin{aligned} \begin{bmatrix} 1 & -1 & 2 & 0 \\ 2 & -2 & 4 & 1 \\ 0 & 0 & 0 & 3 \end{bmatrix} & \xrightarrow{R_2 \to R_2 - 2R_1} \begin{bmatrix} 1 & -1 & 2 & 0 \\ 0 & 0 & 0 & 1 \\ 0 & 0 & 0 & 3 \end{bmatrix} \\ & \xrightarrow{R_3 \to R_3 - 3R_2} \begin{bmatrix} 1 & -1 & 2 & 0 \\ 0 & 0 & 0 & 1 \\ 0 & 0 & 0 & 0 \end{bmatrix} \end{aligned}

    The number of non-zero rows (pivot positions) is 2. So, rank(M)=2\operatorname{rank}(M) = 2.
    The matrix MM is 3×43 \times 4, so the number of columns n=4n=4.
    Using the Rank-Nullity Theorem:
    n=rank(M)+nullity(M)n = \operatorname{rank}(M) + \operatorname{nullity}(M)

    4=2+nullity(M)4 = 2 + \operatorname{nullity}(M)

    nullity(M)=42=2\operatorname{nullity}(M) = 4 - 2 = 2

    Answer: \boxed{2}"
    :::

    2. Systems of Linear Equations

    For a homogeneous system of linear equations Ax=0A\mathbf{x} = \mathbf{0}, the solution set is precisely the null space of AA. Thus, the dimension of the solution space is nullity(A)\operatorname{nullity}(A).

    For a non-homogeneous system Ax=bA\mathbf{x} = \mathbf{b}, solutions exist if and only if b\mathbf{b} is in the column space (range) of AA. The number of free variables in the general solution corresponds to nullity(A)\operatorname{nullity}(A).

    Worked Example (PYQ 1 type):

    The dimension of the general solution space WW of the homogeneous system

    x1+2x23x3+2x44x5=02x1+4x25x3+x46x5=05x1+10x213x3+4x416x5=0\begin{aligned}x_1 + 2x_2 - 3x_3 + 2x_4 - 4x_5 & = 0 \\ 2x_1 + 4x_2 - 5x_3 + x_4 - 6x_5 & = 0 \\ 5x_1 + 10x_2 - 13x_3 + 4x_4 - 16x_5 & = 0\end{aligned}

    is required.

    Step 1: Form the coefficient matrix AA.

    A=[123242451651013416]A = \begin{bmatrix} 1 & 2 & -3 & 2 & -4 \\ 2 & 4 & -5 & 1 & -6 \\ 5 & 10 & -13 & 4 & -16 \end{bmatrix}

    Step 2: Reduce AA to row echelon form.

    [123242451651013416]R2R22R1[123240013251013416]R3R35R1[123240013200264]R3R32R2[123240013200000]\begin{aligned}\begin{bmatrix} 1 & 2 & -3 & 2 & -4 \\ 2 & 4 & -5 & 1 & -6 \\ 5 & 10 & -13 & 4 & -16 \end{bmatrix} & \xrightarrow{R_2 \to R_2 - 2R_1} \begin{bmatrix} 1 & 2 & -3 & 2 & -4 \\ 0 & 0 & 1 & -3 & 2 \\ 5 & 10 & -13 & 4 & -16 \end{bmatrix} \\ & \xrightarrow{R_3 \to R_3 - 5R_1} \begin{bmatrix} 1 & 2 & -3 & 2 & -4 \\ 0 & 0 & 1 & -3 & 2 \\ 0 & 0 & 2 & -6 & 4 \end{bmatrix} \\ & \xrightarrow{R_3 \to R_3 - 2R_2} \begin{bmatrix} 1 & 2 & -3 & 2 & -4 \\ 0 & 0 & 1 & -3 & 2 \\ 0 & 0 & 0 & 0 & 0 \end{bmatrix}\end{aligned}

    Step 3: Determine the rank of AA.
    The number of non-zero rows (pivot positions) is 2. So, rank(A)=2\operatorname{rank}(A) = 2.

    Step 4: Determine the nullity of AA using the Rank-Nullity Theorem.
    The number of columns n=5n=5.

    n=rank(A)+nullity(A)5=2+nullity(A)nullity(A)=52=3\begin{aligned}n & = \operatorname{rank}(A) + \operatorname{nullity}(A) \\ 5 & = 2 + \operatorname{nullity}(A) \\ \operatorname{nullity}(A) & = 5 - 2 = 3\end{aligned}

    The dimension of the general solution space WW is the nullity of the coefficient matrix.
    Answer: The dimension of the general solution space is 3.

    :::question type="MCQ" question="Consider the homogeneous system x2y+z=0x - 2y + z = 0 and 2x4y+2z=02x - 4y + 2z = 0. What is the dimension of its solution space?" options=["00","11","22","33"] answer="2" hint="Identify the coefficient matrix, find its rank, and then apply the Rank-Nullity Theorem." solution="The coefficient matrix AA for the system is:

    A=[121242]A = \begin{bmatrix} 1 & -2 & 1 \\ 2 & -4 & 2 \end{bmatrix}

    We reduce AA to row echelon form:
    [121242]R2R22R1[121000]\begin{aligned} \begin{bmatrix} 1 & -2 & 1 \\ 2 & -4 & 2 \end{bmatrix} & \xrightarrow{R_2 \to R_2 - 2R_1} \begin{bmatrix} 1 & -2 & 1 \\ 0 & 0 & 0 \end{bmatrix} \end{aligned}

    The rank of AA is 1 (one non-zero row).
    The number of columns (variables) n=3n=3.
    Using the Rank-Nullity Theorem:
    n=rank(A)+nullity(A)n = \operatorname{rank}(A) + \operatorname{nullity}(A)

    3=1+nullity(A)3 = 1 + \operatorname{nullity}(A)

    nullity(A)=2\operatorname{nullity}(A) = 2

    The dimension of the solution space is the nullity of the coefficient matrix.
    Answer: \boxed{2}"
    :::

    3. Properties of TT and T2T^2

    Consider a linear transformation T:VVT: V \to V on a finite-dimensional vector space VV. We can define T2=TTT^2 = T \circ T.

    Key Subspace Relationships

    We observe the following inclusions:

    • Null(T)Null(T2)Null(Tk)Null(Tk+1)\operatorname{Null}(T) \subseteq \operatorname{Null}(T^2) \subseteq \dots \subseteq \operatorname{Null}(T^k) \subseteq \operatorname{Null}(T^{k+1}) \subseteq \dots

    • Range(T)Range(T2)Range(Tk)Range(Tk+1)\operatorname{Range}(T) \supseteq \operatorname{Range}(T^2) \supseteq \dots \supseteq \operatorname{Range}(T^k) \supseteq \operatorname{Range}(T^{k+1}) \supseteq \dots

    These chains of subspaces must eventually stabilize due to finite dimensionality.

    If rank(T)=rank(T2)\operatorname{rank}(T) = \operatorname{rank}(T^2), this implies that the range space chain has stabilized at k=1k=1, i.e., Range(T)=Range(T2)\operatorname{Range}(T) = \operatorname{Range}(T^2).
    By the Rank-Nullity Theorem, if rank(T)=rank(T2)\operatorname{rank}(T) = \operatorname{rank}(T^2) and dim(V)\dim(V) is finite, then nullity(T)=nullity(T2)\operatorname{nullity}(T) = \operatorname{nullity}(T^2). This implies that the null space chain has also stabilized at k=1k=1, i.e., Null(T)=Null(T2)\operatorname{Null}(T) = \operatorname{Null}(T^2).

    ⚠️ Common Misconception

    rank(T)=rank(T2)\operatorname{rank}(T) = \operatorname{rank}(T^2) implies N(T)R(T)={0}N(T) \cap R(T) = \{\mathbf{0}\} or V=N(T)R(T)V = N(T) \oplus R(T).
    ✅ This condition implies N(T)R(T)={0}N(T) \cap R(T) = \{\mathbf{0}\} is true if and only if V=N(T)R(T)V = N(T) \oplus R(T).
    The condition rank(T)=rank(T2)\operatorname{rank}(T) = \operatorname{rank}(T^2) is equivalent to N(T)=N(T2)N(T) = N(T^2) and R(T)=R(T2)R(T) = R(T^2). A stronger result states that if rank(T)=rank(T2)\operatorname{rank}(T) = \operatorname{rank}(T^2), then V=Null(T)Range(T)V = \operatorname{Null}(T) \oplus \operatorname{Range}(T) is not always true. However, it does imply that Null(T)Range(T)={0}\operatorname{Null}(T) \cap \operatorname{Range}(T) = \{\mathbf{0}\} is a consequence of N(T)=N(T2)N(T) = N(T^2), because if vN(T)R(T)\mathbf{v} \in N(T) \cap R(T), then v=T(u)\mathbf{v} = T(\mathbf{u}) for some u\mathbf{u}, and T(v)=0T(\mathbf{v}) = \mathbf{0}. So T(T(u))=0T(T(\mathbf{u})) = \mathbf{0}, meaning uN(T2)\mathbf{u} \in N(T^2). Since N(T)=N(T2)N(T) = N(T^2), uN(T)\mathbf{u} \in N(T), so T(u)=0T(\mathbf{u}) = \mathbf{0}. Thus, v=0\mathbf{v} = \mathbf{0}.

    Therefore, if rank(T)=rank(T2)\operatorname{rank}(T) = \operatorname{rank}(T^2), then:

  • Null(T)=Null(T2)\operatorname{Null}(T) = \operatorname{Null}(T^2)

  • Range(T)=Range(T2)\operatorname{Range}(T) = \operatorname{Range}(T^2)

  • Null(T)Range(T)={0}\operatorname{Null}(T) \cap \operatorname{Range}(T) = \{\mathbf{0}\}
  • Worked Example (PYQ 2 type):

    Let T:VVT: V \to V be a linear transformation on a finite-dimensional vector space VV. If rank(T)=rank(T2)\operatorname{rank}(T) = \operatorname{rank}(T^2), identify the correct statements among:
    A. Null(T)=Range(T)\operatorname{Null}(T) = \operatorname{Range}(T)
    B. Null(T)=Null(T2)\operatorname{Null}(T) = \operatorname{Null}(T^2)
    C. Null(T)Range(T)={0}\operatorname{Null}(T) \cap \operatorname{Range}(T) = \{\mathbf{0}\}
    D. Range(T)=Range(T2)\operatorname{Range}(T) = \operatorname{Range}(T^2)

    Step 1: Analyze option B.
    We know that Null(T)Null(T2)\operatorname{Null}(T) \subseteq \operatorname{Null}(T^2).
    From rank(T)=rank(T2)\operatorname{rank}(T) = \operatorname{rank}(T^2) and dim(V)=rank(T)+nullity(T)\dim(V) = \operatorname{rank}(T) + \operatorname{nullity}(T), it follows that nullity(T)=nullity(T2)\operatorname{nullity}(T) = \operatorname{nullity}(T^2).
    Since Null(T)\operatorname{Null}(T) is a subspace of Null(T2)\operatorname{Null}(T^2) and they have the same dimension, they must be equal. So, B is correct.

    Step 2: Analyze option D.
    We know that Range(T2)Range(T)\operatorname{Range}(T^2) \subseteq \operatorname{Range}(T).
    Given rank(T)=rank(T2)\operatorname{rank}(T) = \operatorname{rank}(T^2), and rank is the dimension of the range space, dim(Range(T))=dim(Range(T2))\dim(\operatorname{Range}(T)) = \dim(\operatorname{Range}(T^2)).
    Since Range(T2)\operatorname{Range}(T^2) is a subspace of Range(T)\operatorname{Range}(T) and they have the same dimension, they must be equal. So, D is correct.

    Step 3: Analyze option C.
    Let vNull(T)Range(T)\mathbf{v} \in \operatorname{Null}(T) \cap \operatorname{Range}(T).
    This means vNull(T)\mathbf{v} \in \operatorname{Null}(T), so T(v)=0T(\mathbf{v}) = \mathbf{0}.
    And vRange(T)\mathbf{v} \in \operatorname{Range}(T), so v=T(u)\mathbf{v} = T(\mathbf{u}) for some uV\mathbf{u} \in V.
    Substituting the second into the first: T(T(u))=0T(T(\mathbf{u})) = \mathbf{0}, which means T2(u)=0T^2(\mathbf{u}) = \mathbf{0}.
    Thus, uNull(T2)\mathbf{u} \in \operatorname{Null}(T^2).
    Since we established that Null(T)=Null(T2)\operatorname{Null}(T) = \operatorname{Null}(T^2) (from B), it implies uNull(T)\mathbf{u} \in \operatorname{Null}(T).
    If uNull(T)\mathbf{u} \in \operatorname{Null}(T), then T(u)=0T(\mathbf{u}) = \mathbf{0}.
    Since v=T(u)\mathbf{v} = T(\mathbf{u}), this implies v=0\mathbf{v} = \mathbf{0}.
    Therefore, Null(T)Range(T)={0}\operatorname{Null}(T) \cap \operatorname{Range}(T) = \{\mathbf{0}\}. So, C is correct.

    Step 4: Analyze option A.
    Null(T)=Range(T)\operatorname{Null}(T) = \operatorname{Range}(T) is generally not true. For example, consider T:R2R2T: \mathbb{R}^2 \to \mathbb{R}^2 given by T(x,y)=(y,0)T(x,y) = (y,0).
    Null(T)=span{(1,0)}\operatorname{Null}(T) = \operatorname{span}\{(1,0)\} and Range(T)=span{(1,0)}\operatorname{Range}(T) = \operatorname{span}\{(1,0)\}. In this specific case, N(T)=R(T)N(T)=R(T).
    However, consider T(x,y)=(0,x)T(x,y) = (0,x).
    Null(T)=span{(0,1)}\operatorname{Null}(T) = \operatorname{span}\{(0,1)\}. Range(T)=span{(0,1)}\operatorname{Range}(T) = \operatorname{span}\{(0,1)\}. This is also true here.
    Consider T(x,y,z)=(x,0,0)T(x,y,z) = (x,0,0). N(T)=span{(0,1,0),(0,0,1)}N(T) = \operatorname{span}\{(0,1,0), (0,0,1)\}. R(T)=span{(1,0,0)}R(T) = \operatorname{span}\{(1,0,0)\}. Here N(T)R(T)N(T) \neq R(T).
    The condition rank(T)=rank(T2)\operatorname{rank}(T) = \operatorname{rank}(T^2) holds for T(x,y,z)=(x,0,0)T(x,y,z) = (x,0,0) because rank(T)=1\operatorname{rank}(T)=1, T2(x,y,z)=T(x,0,0)=(x,0,0)T^2(x,y,z) = T(x,0,0) = (x,0,0), so rank(T2)=1\operatorname{rank}(T^2)=1.
    But N(T)R(T)N(T) \neq R(T). So, A is not generally correct.

    Answer: Options B, C, and D are correct.

    :::question type="MSQ" question="Let T:VVT: V \to V be a linear transformation on a finite-dimensional vector space VV. If nullity(T)=nullity(T2)\operatorname{nullity}(T) = \operatorname{nullity}(T^2), which of the following statements are correct?" options=["rank(T)=rank(T2)\operatorname{rank}(T) = \operatorname{rank}(T^2)","Null(T)=Null(T2)\operatorname{Null}(T) = \operatorname{Null}(T^2)","Range(T)=Range(T2)\operatorname{Range}(T) = \operatorname{Range}(T^2)","Null(T)Range(T)={0}\operatorname{Null}(T) \cap \operatorname{Range}(T) = \{\mathbf{0}\}"] answer="rank(T)=rank(T2)\operatorname{rank}(T) = \operatorname{rank}(T^2),Null(T)=Null(T2)\operatorname{Null}(T) = \operatorname{Null}(T^2),Range(T)=Range(T2)\operatorname{Range}(T) = \operatorname{Range}(T^2),Null(T)Range(T)={0}\operatorname{Null}(T) \cap \operatorname{Range}(T) = \{\mathbf{0}\}" hint="The condition nullity(T)=nullity(T2)\operatorname{nullity}(T) = \operatorname{nullity}(T^2) is equivalent to rank(T)=rank(T2)\operatorname{rank}(T) = \operatorname{rank}(T^2) for finite-dimensional spaces. Analyze the consequences as in the previous example." solution="Given nullity(T)=nullity(T2)\operatorname{nullity}(T) = \operatorname{nullity}(T^2).
    Since VV is finite-dimensional, we use the Rank-Nullity Theorem: dim(V)=rank(T)+nullity(T)\dim(V) = \operatorname{rank}(T) + \operatorname{nullity}(T).
    Also, dim(V)=rank(T2)+nullity(T2)\dim(V) = \operatorname{rank}(T^2) + \operatorname{nullity}(T^2).
    If nullity(T)=nullity(T2)\operatorname{nullity}(T) = \operatorname{nullity}(T^2), then by comparing the two equations, we must have rank(T)=rank(T2)\operatorname{rank}(T) = \operatorname{rank}(T^2). So, the first option is correct.

    We know that Null(T)Null(T2)\operatorname{Null}(T) \subseteq \operatorname{Null}(T^2). Since nullity(T)=dim(Null(T))\operatorname{nullity}(T) = \dim(\operatorname{Null}(T)) and nullity(T2)=dim(Null(T2))\operatorname{nullity}(T^2) = \dim(\operatorname{Null}(T^2)) are equal, and one subspace is contained within the other, they must be the same subspace. So, Null(T)=Null(T2)\operatorname{Null}(T) = \operatorname{Null}(T^2) is correct.

    Similarly, we know that Range(T2)Range(T)\operatorname{Range}(T^2) \subseteq \operatorname{Range}(T). Since rank(T)=dim(Range(T))\operatorname{rank}(T) = \dim(\operatorname{Range}(T)) and rank(T2)=dim(Range(T2))\operatorname{rank}(T^2) = \dim(\operatorname{Range}(T^2)) are equal, and one subspace is contained within the other, they must be the same subspace. So, Range(T)=Range(T2)\operatorname{Range}(T) = \operatorname{Range}(T^2) is correct.

    For the last option, let vNull(T)Range(T)\mathbf{v} \in \operatorname{Null}(T) \cap \operatorname{Range}(T).
    Then T(v)=0T(\mathbf{v}) = \mathbf{0} and v=T(u)\mathbf{v} = T(\mathbf{u}) for some uV\mathbf{u} \in V.
    This implies T(T(u))=0T(T(\mathbf{u})) = \mathbf{0}, so T2(u)=0T^2(\mathbf{u}) = \mathbf{0}.
    Thus, uNull(T2)\mathbf{u} \in \operatorname{Null}(T^2).
    Since Null(T)=Null(T2)\operatorname{Null}(T) = \operatorname{Null}(T^2), it follows that uNull(T)\mathbf{u} \in \operatorname{Null}(T).
    Therefore, T(u)=0T(\mathbf{u}) = \mathbf{0}.
    Since v=T(u)\mathbf{v} = T(\mathbf{u}), we have v=0\mathbf{v} = \mathbf{0}.
    Hence, Null(T)Range(T)={0}\operatorname{Null}(T) \cap \operatorname{Range}(T) = \{\mathbf{0}\} is correct.
    Answer: \boxed{rank(T)=rank(T2)\operatorname{rank}(T) = \operatorname{rank}(T^2),Null(T)=Null(T2)\operatorname{Null}(T) = \operatorname{Null}(T^2),Range(T)=Range(T2)\operatorname{Range}(T) = \operatorname{Range}(T^2),Null(T)Range(T)={0}\operatorname{Null}(T) \cap \operatorname{Range}(T) = \{\mathbf{0}\}}"
    :::

    ---

    Problem-Solving Strategies

    💡 CUET PG Strategy

    • For Nullity: If asked for the dimension of the solution space of Ax=0A\mathbf{x} = \mathbf{0}, reduce AA to its row echelon form. The number of free variables directly gives the nullity.

    • For Rank: The rank of a matrix is the number of pivot columns (or non-zero rows) in its row echelon form.

    • Applying Rank-Nullity: Always identify dim(V)\dim(V) (number of columns for a matrix) first. If you find one of rank or nullity, the other is easily derived.

    • T2T^2 Questions: Remember the inclusions Null(T)Null(T2)\operatorname{Null}(T) \subseteq \operatorname{Null}(T^2) and Range(T2)Range(T)\operatorname{Range}(T^2) \subseteq \operatorname{Range}(T). Equality of ranks (or nullities) implies equality of these subspaces and N(T)R(T)={0}N(T) \cap R(T) = \{\mathbf{0}\}.

    ---

    Common Mistakes

    ⚠️ Watch Out

    Confusing Domain Dimension with Codomain Dimension: For T:VWT: V \to W, dim(V)\dim(V) is used in the Rank-Nullity Theorem, not dim(W)\dim(W). For an m×nm \times n matrix, nn (number of columns) is the domain dimension, not mm (number of rows).
    ✅ Always use the dimension of the domain space. For matrix AA, it is the number of columns.

    Incorrectly Calculating Rank: Counting all non-zero rows in a non-echelon form matrix.
    ✅ Rank must be determined from the row echelon form (or reduced row echelon form) by counting pivot positions or non-zero rows.

    Assuming N(T)R(T)={0}N(T) \cap R(T) = \{\mathbf{0}\} always: This is not true in general. It is a special condition that arises under circumstances like rank(T)=rank(T2)\operatorname{rank}(T) = \operatorname{rank}(T^2).
    ✅ Understand the conditions under which N(T)R(T)={0}N(T) \cap R(T) = \{\mathbf{0}\} holds.

    ---

    Practice Questions

    :::question type="MCQ" question="Let AA be a 5×75 \times 7 matrix such that rank(A)=3\operatorname{rank}(A) = 3. What is the dimension of the null space of the linear transformation T(x)=AxT(\mathbf{x}) = A\mathbf{x}?" options=["2","3","4","5"] answer="4" hint="Apply the Rank-Nullity Theorem directly. The domain dimension is the number of columns of A." solution="The matrix AA is 5×75 \times 7, so the domain of the transformation T(x)=AxT(\mathbf{x}) = A\mathbf{x} is R7\mathbb{R}^7. Thus, dim(V)=7\dim(V) = 7.
    We are given rank(A)=3\operatorname{rank}(A) = 3.
    By the Rank-Nullity Theorem:

    dim(V)=rank(A)+nullity(A)7=3+nullity(A)nullity(A)=73=4\begin{aligned} \dim(V) & = \operatorname{rank}(A) + \operatorname{nullity}(A) \\ 7 & = 3 + \operatorname{nullity}(A) \\ \operatorname{nullity}(A) & = 7 - 3 = 4 \end{aligned}

    The dimension of the null space is 4. Answer: \boxed{4}"
    :::

    :::question type="NAT" question="A linear transformation T:R5R4T: \mathbb{R}^5 \to \mathbb{R}^4 is given by T(x1,x2,x3,x4,x5)=(x1+x2,x2+x3,x3+x4,x4+x5)T(x_1, x_2, x_3, x_4, x_5) = (x_1+x_2, x_2+x_3, x_3+x_4, x_4+x_5). What is the nullity of TT?" answer="1" hint="Form the matrix for TT, find its rank by row reduction, then use Rank-Nullity Theorem." solution="The matrix representation AA for TT is:

    A=[11000011000011000011]A = \begin{bmatrix} 1 & 1 & 0 & 0 & 0 \\ 0 & 1 & 1 & 0 & 0 \\ 0 & 0 & 1 & 1 & 0 \\ 0 & 0 & 0 & 1 & 1 \end{bmatrix}

    This matrix is already in row echelon form.
    The number of non-zero rows (pivot positions) is 4. So, rank(A)=4\operatorname{rank}(A) = 4.
    The domain space is R5\mathbb{R}^5, so n=5n=5.
    Using the Rank-Nullity Theorem:
    n=rank(A)+nullity(A)5=4+nullity(A)nullity(A)=54=1\begin{aligned} n & = \operatorname{rank}(A) + \operatorname{nullity}(A) \\ 5 & = 4 + \operatorname{nullity}(A) \\ \operatorname{nullity}(A) & = 5 - 4 = 1 \end{aligned}

    Answer: \boxed{1}"
    :::

    :::question type="MCQ" question="Let T:VVT: V \to V be a linear transformation where dim(V)=6\dim(V) = 6. If nullity(T)=2\operatorname{nullity}(T) = 2, which of the following statements is true?" options=["dim(Range(T))=2\dim(\operatorname{Range}(T)) = 2","Null(T)=V\operatorname{Null}(T) = V","Range(T)=V\operatorname{Range}(T) = V","rank(T)=4\operatorname{rank}(T) = 4"] answer="rank(T)=4\operatorname{rank}(T) = 4" hint="Apply the Rank-Nullity Theorem to find the rank. Then evaluate the options." solution="Given dim(V)=6\dim(V) = 6 and nullity(T)=2\operatorname{nullity}(T) = 2.
    By the Rank-Nullity Theorem:

    dim(V)=rank(T)+nullity(T)6=rank(T)+2rank(T)=62=4\begin{aligned} \dim(V) & = \operatorname{rank}(T) + \operatorname{nullity}(T) \\ 6 & = \operatorname{rank}(T) + 2 \\ \operatorname{rank}(T) & = 6 - 2 = 4 \end{aligned}

    Thus, dim(Range(T))=4\dim(\operatorname{Range}(T)) = 4.
    Option 1 states dim(Range(T))=2\dim(\operatorname{Range}(T)) = 2, which is false.
    Option 2 states Null(T)=V\operatorname{Null}(T) = V. This would mean nullity(T)=dim(V)=6\operatorname{nullity}(T) = \dim(V) = 6, which is false.
    Option 3 states Range(T)=V\operatorname{Range}(T) = V. This would mean rank(T)=dim(V)=6\operatorname{rank}(T) = \dim(V) = 6, which is false.
    Option 4 states rank(T)=4\operatorname{rank}(T) = 4, which is true. Answer: \boxed{\operatorname{rank}(T) = 4}"
    :::

    :::question type="MSQ" question="Let AA be an n×nn \times n matrix. Which of the following statements are always true?" options=["If rank(A)=n\operatorname{rank}(A) = n, then Ax=0A\mathbf{x} = \mathbf{0} has only the trivial solution.","If Ax=bA\mathbf{x} = \mathbf{b} has a unique solution for every b\mathbf{b}, then nullity(A)=0\operatorname{nullity}(A) = 0.","If nullity(A)>0\operatorname{nullity}(A) > 0, then AA is invertible.","rank(A)+nullity(A)=n\operatorname{rank}(A) + \operatorname{nullity}(A) = n"] answer="If rank(A)=n\operatorname{rank}(A) = n, then Ax=0A\mathbf{x} = \mathbf{0} has only the trivial solution.,If Ax=bA\mathbf{x} = \mathbf{b} has a unique solution for every b\mathbf{b}, then nullity(A)=0.\operatorname{nullity}(A) = 0.,rank(A)+nullity(A)=n\operatorname{rank}(A) + \operatorname{nullity}(A) = n" hint="Recall the properties of invertible matrices and the implications of the Rank-Nullity Theorem for square matrices." solution="Let's analyze each statement:

  • If rank(A)=n\operatorname{rank}(A) = n, then Ax=0A\mathbf{x} = \mathbf{0} has only the trivial solution.

  • By the Rank-Nullity Theorem, n=rank(A)+nullity(A)n = \operatorname{rank}(A) + \operatorname{nullity}(A). If rank(A)=n\operatorname{rank}(A) = n, then n=n+nullity(A)n = n + \operatorname{nullity}(A), which implies nullity(A)=0\operatorname{nullity}(A) = 0. A nullity of 0 means the null space contains only the zero vector, so Ax=0A\mathbf{x} = \mathbf{0} has only the trivial solution (x=0\mathbf{x} = \mathbf{0}). This statement is correct.
  • If Ax=bA\mathbf{x} = \mathbf{b} has a unique solution for every b\mathbf{b}, then nullity(A)=0\operatorname{nullity}(A) = 0.

  • If Ax=bA\mathbf{x} = \mathbf{b} has a unique solution for every b\mathbf{b}, it means AA is invertible. An invertible n×nn \times n matrix has rank(A)=n\operatorname{rank}(A) = n. From the Rank-Nullity Theorem, nullity(A)=nrank(A)=nn=0\operatorname{nullity}(A) = n - \operatorname{rank}(A) = n - n = 0. This statement is correct.
  • If nullity(A)>0\operatorname{nullity}(A) > 0, then AA is invertible.

  • If nullity(A)>0\operatorname{nullity}(A) > 0, it means Ax=0A\mathbf{x} = \mathbf{0} has non-trivial solutions. This implies AA is singular (not invertible). So, this statement is incorrect.
  • rank(A)+nullity(A)=n\operatorname{rank}(A) + \operatorname{nullity}(A) = n.

  • This is the direct statement of the Rank-Nullity Theorem for an n×nn \times n matrix (where nn is the dimension of the domain). This statement is correct.
    Answer: \boxed{1, 2, 4}"
    :::

    :::question type="NAT" question="Consider the matrix B=[101011112]B = \begin{bmatrix} 1 & 0 & 1 \\ 0 & 1 & 1 \\ 1 & 1 & 2 \end{bmatrix}. What is the sum of its rank and nullity?" answer="3" hint="The sum of rank and nullity for an n×nn \times n matrix is always nn. Identify nn for this matrix." solution="The matrix BB is a 3×33 \times 3 matrix.
    For any n×nn \times n matrix, the Rank-Nullity Theorem states that rank(B)+nullity(B)=n\operatorname{rank}(B) + \operatorname{nullity}(B) = n.
    In this case, n=3n=3.
    Therefore, the sum of its rank and nullity is 3.

    (To verify, one could calculate rank:

    [101011112]R3R3R1[101011011]R3R3R2[101011000]\begin{aligned} \begin{bmatrix} 1 & 0 & 1 \\ 0 & 1 & 1 \\ 1 & 1 & 2 \end{bmatrix} & \xrightarrow{R_3 \to R_3 - R_1} \begin{bmatrix} 1 & 0 & 1 \\ 0 & 1 & 1 \\ 0 & 1 & 1 \end{bmatrix} \\ & \xrightarrow{R_3 \to R_3 - R_2} \begin{bmatrix} 1 & 0 & 1 \\ 0 & 1 & 1 \\ 0 & 0 & 0 \end{bmatrix} \end{aligned}

    rank(B)=2\operatorname{rank}(B) = 2.
    Then nullity(B)=32=1\operatorname{nullity}(B) = 3 - 2 = 1.
    rank(B)+nullity(B)=2+1=3\operatorname{rank}(B) + \operatorname{nullity}(B) = 2 + 1 = 3.)
    Answer: \boxed{3}"
    :::

    ---

    Summary

    Key Formulas & Takeaways

    | # | Formula/Concept | Expression |
    |---|----------------|------------|
    | 1 | Linear Transformation | T(u+v)=T(u)+T(v)T(\mathbf{u} + \mathbf{v}) = T(\mathbf{u}) + T(\mathbf{v}) and T(cu)=cT(u)T(c\mathbf{u}) = cT(\mathbf{u}) |
    | 2 | Null Space (Kernel) | Null(T)={vVT(v)=0W}\operatorname{Null}(T) = \{\mathbf{v} \in V \mid T(\mathbf{v}) = \mathbf{0}_W\} |
    | 3 | Range Space (Image) | Range(T)={T(v)vV}\operatorname{Range}(T) = \{T(\mathbf{v}) \mid \mathbf{v} \in V\} |
    | 4 | Nullity | nullity(T)=dim(Null(T))\operatorname{nullity}(T) = \dim(\operatorname{Null}(T)) |
    | 5 | Rank | rank(T)=dim(Range(T))\operatorname{rank}(T) = \dim(\operatorname{Range}(T)) |
    | 6 | Rank-Nullity Theorem | dim(V)=rank(T)+nullity(T)\dim(V) = \operatorname{rank}(T) + \operatorname{nullity}(T) |
    | 7 | Matrix Rank-Nullity | For m×nm \times n matrix AA, n=rank(A)+nullity(A)n = \operatorname{rank}(A) + \operatorname{nullity}(A) |
    | 8 | T,T2T, T^2 Equalities | If rank(T)=rank(T2)\operatorname{rank}(T) = \operatorname{rank}(T^2), then N(T)=N(T2)N(T)=N(T^2), R(T)=R(T2)R(T)=R(T^2), and N(T)R(T)={0}N(T) \cap R(T) = \{\mathbf{0}\} |

    ---

    What's Next?

    💡 Continue Learning

    This topic connects to:

      • Invertible Matrix Theorem: The Rank-Nullity Theorem provides a basis for many equivalences in the Invertible Matrix Theorem, linking rank and nullity to invertibility.

      • Eigenvalues and Eigenvectors: Understanding the null space and range space of a transformation TλIT - \lambda I is crucial for finding eigenvalues and eigenvectors.

      • Diagonalization: The properties of null spaces and range spaces are essential for determining if a matrix is diagonalizable.

    ---

    💡 Next Up

    Proceeding to Matrix Representation.

    ---

    Part 4: Matrix Representation

    Matrix representation provides a concrete means to analyze and compute with linear transformations between finite-dimensional vector spaces. This framework is fundamental for understanding concepts such as change of basis, similarity transformations, and the kernel and image of a linear map, which are central to competitive examinations in linear algebra.

    ---

    Core Concepts

    1. Definition of a Linear Transformation

    A mapping F:VWF: V \to W between two vector spaces VV and WW over the same field KK is a linear transformation if, for all vectors u,vVu, v \in V and all scalars cKc \in K:

  • F(u+v)=F(u)+F(v)F(u + v) = F(u) + F(v) (Additivity)

  • F(cu)=cF(u)F(cu) = cF(u) (Homogeneity)
  • 📖 Linear Transformation

    A function F:VWF: V \to W is linear if F(cu+dv)=cF(u)+dF(v)F(cu + dv) = cF(u) + dF(v) for all u,vVu, v \in V and scalars c,dKc, d \in K.

    Quick Example:
    Consider F:R2R2F: \mathbb{R}^2 \to \mathbb{R}^2 defined by F(x,y)=(x+y,xy)F(x, y) = (x+y, x-y). We verify linearity.

    Step 1: Additivity
    Let u=(x1,y1)u = (x_1, y_1) and v=(x2,y2)v = (x_2, y_2).

    F(u+v)=F(x1+x2,y1+y2)=((x1+x2)+(y1+y2),(x1+x2)(y1+y2))F(u)+F(v)=(x1+y1,x1y1)+(x2+y2,x2y2)=((x1+y1)+(x2+y2),(x1y1)+(x2y2))\begin{aligned}F(u+v) & = F(x_1+x_2, y_1+y_2) \\
    & = ((x_1+x_2)+(y_1+y_2), (x_1+x_2)-(y_1+y_2)) \\
    F(u) + F(v) & = (x_1+y_1, x_1-y_1) + (x_2+y_2, x_2-y_2) \\
    & = ((x_1+y_1)+(x_2+y_2), (x_1-y_1)+(x_2-y_2))\end{aligned}

    The results are identical, so F(u+v)=F(u)+F(v)F(u+v) = F(u) + F(v).

    Step 2: Homogeneity
    Let cc be a scalar and u=(x,y)u = (x, y).

    F(cu)=F(cx,cy)=(cx+cy,cxcy)cF(u)=c(x+y,xy)=(c(x+y),c(xy))=(cx+cy,cxcy)\begin{aligned}F(cu) & = F(cx, cy) \\
    & = (cx+cy, cx-cy) \\
    cF(u) & = c(x+y, x-y) \\
    & = (c(x+y), c(x-y)) \\
    & = (cx+cy, cx-cy)\end{aligned}

    The results are identical, so F(cu)=cF(u)F(cu) = cF(u). Thus, FF is a linear transformation.

    :::question type="MCQ" question="Let F:R2R2F: \mathbb{R}^2 \to \mathbb{R}^2 be defined by F(x,y)=(x2,y)F(x, y) = (x^2, y). Is FF a linear transformation?" options=["Yes, it satisfies both additivity and homogeneity.","No, it fails additivity.","No, it fails homogeneity.","No, it fails both additivity and homogeneity."] answer="No, it fails homogeneity." hint="Check the homogeneity condition with a non-zero scalar." solution="We test the homogeneity condition. Let u=(1,1)u = (1, 1) and c=2c=2.

    F(u)=F(1,1)=(12,1)=(1,1)cF(u)=2F(1,1)=2(1,1)=(2,2)cu=2(1,1)=(2,2)F(cu)=F(2,2)=(22,2)=(4,2)\begin{aligned}F(u) & = F(1, 1) = (1^2, 1) = (1, 1) \\
    cF(u) & = 2F(1, 1) = 2(1, 1) = (2, 2) \\
    cu & = 2(1, 1) = (2, 2) \\
    F(cu) & = F(2, 2) = (2^2, 2) = (4, 2)\end{aligned}

    Since F(cu)=(4,2)F(cu) = (4, 2) and cF(u)=(2,2)cF(u) = (2, 2), we observe F(cu)cF(u)F(cu) \ne cF(u). Thus, FF is not a linear transformation because it fails homogeneity. It also fails additivity. Answer: \boxed{\text{No, it fails homogeneity.}}"
    :::

    ---

    2. Matrix Representation with Respect to Standard Bases

    Consider a linear transformation F:VWF: V \to W, where V=RnV = \mathbb{R}^n and W=RmW = \mathbb{R}^m. Let En={e1,,en}E_n = \{e_1, \dots, e_n\} be the standard basis for Rn\mathbb{R}^n and Em={e1,,em}E_m = \{e'_1, \dots, e'_m\} be the standard basis for Rm\mathbb{R}^m. The matrix representation of FF with respect to these standard bases, denoted MEm,En(F)M_{E_m, E_n}(F) or simply [F][F], is an m×nm \times n matrix whose columns are the images of the standard basis vectors of VV, expressed in terms of the standard basis vectors of WW.

    📐 Standard Matrix Representation

    If F:RnRmF: \mathbb{R}^n \to \mathbb{R}^m is a linear transformation, its matrix representation with respect to the standard bases EnE_n and EmE_m is given by:

    [F]=[F(e1)F(e2)F(en)][F] = \begin{bmatrix} | & | & & | \\ F(e_1) & F(e_2) & \dots & F(e_n) \\ | & | & & | \end{bmatrix}

    where eje_j are standard basis vectors of Rn\mathbb{R}^n and F(ej)F(e_j) are column vectors in Rm\mathbb{R}^m.
    When to use: When both the domain and codomain bases are standard bases.

    Quick Example:
    Let F:R2R2F: \mathbb{R}^2 \to \mathbb{R}^2 be defined by F(x,y)=(3x+4y,2x5y)F(x, y) = (3x + 4y, 2x - 5y). We determine the matrix representation of FF relative to the standard basis E={(1,0),(0,1)}E = \{(1, 0), (0, 1)\}.

    Step 1: Apply FF to each standard basis vector of the domain.

    F(e1)=F(1,0)=(3(1)+4(0),2(1)5(0))=(3,2)F(e_1) = F(1, 0) = (3(1) + 4(0), 2(1) - 5(0)) = (3, 2)

    F(e2)=F(0,1)=(3(0)+4(1),2(0)5(1))=(4,5)F(e_2) = F(0, 1) = (3(0) + 4(1), 2(0) - 5(1)) = (4, -5)

    Step 2: Form the matrix using these images as columns.

    [F]E=[3425][F]_E = \begin{bmatrix} 3 & 4 \\ 2 & -5 \end{bmatrix}

    Answer: The matrix representation is

    [3425]\begin{bmatrix} 3 & 4 \\ 2 & -5 \end{bmatrix}
    .

    :::question type="MCQ" question="Let F:R3R2F: \mathbb{R}^3 \to \mathbb{R}^2 be a linear transformation defined by F(x,y,z)=(x2y+z,3x+y4z)F(x, y, z) = (x - 2y + z, 3x + y - 4z). What is the matrix representation of FF with respect to the standard bases of R3\mathbb{R}^3 and R2\mathbb{R}^2?" options=["

    [132114]\begin{bmatrix} 1 & 3 \\ -2 & 1 \\ 1 & -4 \end{bmatrix}
    ",
    "
    [121314]\begin{bmatrix} 1 & -2 & 1 \\ 3 & 1 & -4 \end{bmatrix}
    ",
    "
    [121341]\begin{bmatrix} 1 & -2 \\ 1 & 3 \\ -4 & 1 \end{bmatrix}
    ",
    "
    [1134]\begin{bmatrix} 1 & 1 \\ 3 & -4 \end{bmatrix}
    "] answer="
    [121314]\begin{bmatrix} 1 & -2 & 1 \\ 3 & 1 & -4 \end{bmatrix}
    " hint="The columns of the matrix are the images of the standard basis vectors of the domain." solution="Step 1: Apply FF to the standard basis vectors of R3\mathbb{R}^3: e1=(1,0,0)e_1 = (1, 0, 0), e2=(0,1,0)e_2 = (0, 1, 0), e3=(0,0,1)e_3 = (0, 0, 1).
    F(1,0,0)=(12(0)+0,3(1)+04(0))=(1,3)F(1, 0, 0) = (1 - 2(0) + 0, 3(1) + 0 - 4(0)) = (1, 3)

    F(0,1,0)=(02(1)+0,3(0)+14(0))=(2,1)F(0, 1, 0) = (0 - 2(1) + 0, 3(0) + 1 - 4(0)) = (-2, 1)

    F(0,0,1)=(02(0)+1,3(0)+04(1))=(1,4)F(0, 0, 1) = (0 - 2(0) + 1, 3(0) + 0 - 4(1)) = (1, -4)

    Step 2: Form the matrix using these image vectors as columns.

    [F]=[121314][F] = \begin{bmatrix} 1 & -2 & 1 \\ 3 & 1 & -4 \end{bmatrix}

    "
    :::

    ---

    3. Matrix Representation with Respect to Arbitrary Bases

    Let F:VWF: V \to W be a linear transformation, where dim(V)=n\operatorname{dim}(V) = n and dim(W)=m\operatorname{dim}(W) = m. Let B={v1,v2,,vn}B = \{v_1, v_2, \dots, v_n\} be an ordered basis for VV and C={w1,w2,,wm}C = \{w_1, w_2, \dots, w_m\} be an ordered basis for WW. The matrix representation of FF with respect to bases BB and CC, denoted MC,B(F)M_{C,B}(F) or [F]CB[F]_{C \leftarrow B}, is an m×nm \times n matrix. Its jj-th column is the coordinate vector of F(vj)F(v_j) with respect to the basis CC, i.e., [F(vj)]C[F(v_j)]_C.

    📐 Arbitrary Basis Matrix Representation

    Given F:VWF: V \to W, basis B={v1,,vn}B = \{v_1, \dots, v_n\} for VV, and basis C={w1,,wm}C = \{w_1, \dots, w_m\} for WW.
    The matrix MC,B(F)M_{C,B}(F) has columns given by:

    MC,B(F)=[[F(v1)]C[F(v2)]C[F(vn)]C]M_{C,B}(F) = \begin{bmatrix} | & | & & | \\ [F(v_1)]_C & [F(v_2)]_C & \dots & [F(v_n)]_C \\ | & | & & | \end{bmatrix}

    Where: [F(vj)]C[F(v_j)]_C is the coordinate vector of F(vj)F(v_j) with respect to basis CC.
    When to use: When domain and/or codomain bases are non-standard.

    Quick Example:
    Let F:R2R2F: \mathbb{R}^2 \to \mathbb{R}^2 be defined by F(x,y)=(3x+4y,2x5y)F(x, y) = (3x + 4y, 2x - 5y). Consider the domain basis B={(1,0),(0,1)}B = \{(1, 0), (0, 1)\} (standard basis EE) and codomain basis C={(1,2),(2,3)}C = \{(1, 2), (2, 3)\}. We find MC,B(F)M_{C,B}(F).

    Step 1: Apply FF to each vector in the domain basis BB.

    F(1,0)=(3,2)F(1, 0) = (3, 2)

    F(0,1)=(4,5)F(0, 1) = (4, -5)

    Step 2: Express each resulting vector in terms of the codomain basis CC.
    For F(1,0)=(3,2)F(1, 0) = (3, 2):
    We need to find a,ba, b such that

    (3,2)=a(1,2)+b(2,3)(3, 2) = a(1, 2) + b(2, 3)

    3=a+2b3 = a + 2b

    2=2a+3b2 = 2a + 3b

    Multiplying the first equation by 2: 6=2a+4b6 = 2a + 4b.
    Subtracting the second equation from this:
    (2a+4b)(2a+3b)=62    b=4(2a + 4b) - (2a + 3b) = 6 - 2 \implies b = 4

    Substitute b=4b=4 into 3=a+2b    3=a+2(4)    a=38=53 = a + 2b \implies 3 = a + 2(4) \implies a = 3 - 8 = -5.
    So,
    [F(1,0)]C=[54][F(1, 0)]_C = \begin{bmatrix} -5 \\ 4 \end{bmatrix}
    .

    For F(0,1)=(4,5)F(0, 1) = (4, -5):
    We need to find c,dc, d such that

    (4,5)=c(1,2)+d(2,3)(4, -5) = c(1, 2) + d(2, 3)

    4=c+2d4 = c + 2d

    5=2c+3d-5 = 2c + 3d

    Multiplying the first equation by 2: 8=2c+4d8 = 2c + 4d.
    Subtracting the second equation from this:
    (2c+4d)(2c+3d)=8(5)    d=13(2c + 4d) - (2c + 3d) = 8 - (-5) \implies d = 13

    Substitute d=13d=13 into 4=c+2d    4=c+2(13)    c=426=224 = c + 2d \implies 4 = c + 2(13) \implies c = 4 - 26 = -22.
    So,
    [F(0,1)]C=[2213][F(0, 1)]_C = \begin{bmatrix} -22 \\ 13 \end{bmatrix}
    .

    Step 3: Form the matrix MC,B(F)M_{C,B}(F) using these coordinate vectors as columns.

    MC,B(F)=[522413]M_{C,B}(F) = \begin{bmatrix} -5 & -22 \\ 4 & 13 \end{bmatrix}

    Answer: The matrix representation is

    [522413]\begin{bmatrix} -5 & -22 \\ 4 & 13 \end{bmatrix}
    .

    :::question type="MCQ" question="Let F:R2R2F: \mathbb{R}^2 \to \mathbb{R}^2 be defined by F(x,y)=(x+2y,3xy)F(x, y) = (x+2y, 3x-y). Let B={(1,1),(1,1)}B = \{(1, 1), (1, -1)\} be a basis for the domain and C={(1,0),(0,1)}C = \{(1, 0), (0, 1)\} be the standard basis for the codomain. Find MC,B(F)M_{C,B}(F)." options=["

    [3124]\begin{bmatrix} 3 & -1 \\ 2 & 4 \end{bmatrix}
    ",
    "
    [3214]\begin{bmatrix} 3 & 2 \\ -1 & 4 \end{bmatrix}
    ",
    "
    [1131]\begin{bmatrix} 1 & 1 \\ 3 & -1 \end{bmatrix}
    ",
    "
    [1311]\begin{bmatrix} 1 & 3 \\ 1 & -1 \end{bmatrix}
    "] answer="
    [3124]\begin{bmatrix} 3 & -1 \\ 2 & 4 \end{bmatrix}
    " hint="Apply FF to each vector in BB, then express the result in terms of CC (which is the standard basis)." solution="Step 1: Apply FF to each vector in the domain basis B={(1,1),(1,1)}B = \{(1, 1), (1, -1)\}.
    F(1,1)=(1+2(1),3(1)1)=(3,2)F(1, 1) = (1+2(1), 3(1)-1) = (3, 2)

    F(1,1)=(1+2(1),3(1)(1))=(12,3+1)=(1,4)F(1, -1) = (1+2(-1), 3(1)-(-1)) = (1-2, 3+1) = (-1, 4)

    Step 2: Express each resulting vector in terms of the codomain basis C={(1,0),(0,1)}C = \{(1, 0), (0, 1)\}. Since CC is the standard basis, the coordinate vector is simply the vector itself.

    [F(1,1)]C=[32][F(1, 1)]_C = \begin{bmatrix} 3 \\ 2 \end{bmatrix}

    [F(1,1)]C=[14][F(1, -1)]_C = \begin{bmatrix} -1 \\ 4 \end{bmatrix}

    Step 3: Form the matrix MC,B(F)M_{C,B}(F) using these coordinate vectors as columns.

    MC,B(F)=[3124]M_{C,B}(F) = \begin{bmatrix} 3 & -1 \\ 2 & 4 \end{bmatrix}

    "
    :::

    ---

    4. Change of Basis Matrix

    A change of basis matrix transforms coordinate vectors from one basis to another within the same vector space. Let B={v1,,vn}B = \{v_1, \dots, v_n\} and B={v1,,vn}B' = \{v'_1, \dots, v'_n\} be two ordered bases for a vector space VV. The change of basis matrix from BB' to BB, denoted PBBP_{B \leftarrow B'} or [I]B,B[I]_{B,B'}, is an n×nn \times n matrix whose jj-th column is the coordinate vector of vjv'_j with respect to the basis BB.

    📐 Change of Basis Matrix

    Given two bases B={v1,,vn}B = \{v_1, \dots, v_n\} and B={v1,,vn}B' = \{v'_1, \dots, v'_n\} for a vector space VV.
    The change of basis matrix from BB' to BB is:

    PBB=[[v1]B[v2]B[vn]B]P_{B \leftarrow B'} = \begin{bmatrix} | & | & & | \\ [v'_1]_B & [v'_2]_B & \dots & [v'_n]_B \\ | & | & & | \end{bmatrix}

    If vv is a vector, then
    [v]B=PBB[v]B[v]_B = P_{B \leftarrow B'} [v]_{B'}
    .
    When to use: To convert coordinates of a vector from one basis to another.

    Quick Example:
    Consider two bases for R2\mathbb{R}^2: B={(1,0),(0,1)}B = \{(1, 0), (0, 1)\} (standard basis) and B={(1,2),(2,3)}B' = \{(1, 2), (2, 3)\}. We find the change of basis matrix from BB' to BB, i.e., PBBP_{B \leftarrow B'}.

    Step 1: Express each vector in BB' as a linear combination of vectors in BB.
    For v1=(1,2)v'_1 = (1, 2):

    (1,2)=1(1,0)+2(0,1)    [v1]B=[12](1, 2) = 1(1, 0) + 2(0, 1) \implies [v'_1]_B = \begin{bmatrix} 1 \\ 2 \end{bmatrix}

    For v2=(2,3)v'_2 = (2, 3):
    (2,3)=2(1,0)+3(0,1)    [v2]B=[23](2, 3) = 2(1, 0) + 3(0, 1) \implies [v'_2]_B = \begin{bmatrix} 2 \\ 3 \end{bmatrix}

    Step 2: Form the matrix PBBP_{B \leftarrow B'} using these coordinate vectors as columns.

    PBB=[1223]P_{B \leftarrow B'} = \begin{bmatrix} 1 & 2 \\ 2 & 3 \end{bmatrix}

    Answer: The change of basis matrix is

    [1223]\begin{bmatrix} 1 & 2 \\ 2 & 3 \end{bmatrix}
    .

    Inverse Change of Basis Matrix

    The change of basis matrix from BB to BB' is the inverse of the matrix from BB' to BB:

    PBB=(PBB)1P_{B' \leftarrow B} = (P_{B \leftarrow B'})^{-1}

    This is often easier to compute by forming an augmented matrix [BB][B' | B] and row reducing to [IPBB][I | P_{B \leftarrow B'}] or [BB][B | B'] to [IPBB][I | P_{B' \leftarrow B}].

    :::question type="MCQ" question="Let B={(1,1),(2,0)}B = \{(1, -1), (2, 0)\} and B={(1,0),(0,1)}B' = \{(1, 0), (0, 1)\} be bases for R2\mathbb{R}^2. Find the change of basis matrix from BB to BB', i.e., PBBP_{B' \leftarrow B}." options=["

    [1210]\begin{bmatrix} 1 & 2 \\ -1 & 0 \end{bmatrix}
    ",
    "
    [1120]\begin{bmatrix} 1 & -1 \\ 2 & 0 \end{bmatrix}
    ",
    "
    [01/211/2]\begin{bmatrix} 0 & -1/2 \\ 1 & 1/2 \end{bmatrix}
    ",
    "
    [01/211/2]\begin{bmatrix} 0 & 1/2 \\ -1 & 1/2 \end{bmatrix}
    "] answer="
    [1210]\begin{bmatrix} 1 & 2 \\ -1 & 0 \end{bmatrix}
    " hint="Express vectors of BB in terms of BB'. Since BB' is the standard basis, this is straightforward." solution="Step 1: Express each vector in B={(1,1),(2,0)}B = \{(1, -1), (2, 0)\} in terms of the standard basis B={(1,0),(0,1)}B' = \{(1, 0), (0, 1)\}.
    For v1=(1,1)v_1 = (1, -1):
    (1,1)=1(1,0)+(1)(0,1)    [v1]B=[11](1, -1) = 1(1, 0) + (-1)(0, 1) \implies [v_1]_{B'} = \begin{bmatrix} 1 \\ -1 \end{bmatrix}

    For v2=(2,0)v_2 = (2, 0):
    (2,0)=2(1,0)+0(0,1)    [v2]B=[20](2, 0) = 2(1, 0) + 0(0, 1) \implies [v_2]_{B'} = \begin{bmatrix} 2 \\ 0 \end{bmatrix}

    Step 2: Form the matrix PBBP_{B' \leftarrow B} using these coordinate vectors as columns.

    PBB=[1210]P_{B' \leftarrow B} = \begin{bmatrix} 1 & 2 \\ -1 & 0 \end{bmatrix}

    "
    :::

    ---

    5. Matrix of a Linear Operator in Different Bases (Similarity)

    If F:VVF: V \to V is a linear operator and BB and BB' are two bases for VV, then the matrix representation of FF with respect to BB', MB,B(F)M_{B',B'}(F), is related to the matrix representation with respect to BB, MB,B(F)M_{B,B}(F), by a similarity transformation.

    📐 Similarity Transformation

    Let F:VVF: V \to V be a linear operator. Let BB and BB' be bases for VV.
    Then

    MB,B(F)=PBBMB,B(F)PBBM_{B',B'}(F) = P_{B' \leftarrow B} M_{B,B}(F) P_{B \leftarrow B'}
    .
    Alternatively, if A=MB,B(F)A = M_{B,B}(F) and A=MB,B(F)A' = M_{B',B'}(F), and P=PBBP = P_{B \leftarrow B'} (the change of basis matrix from BB' to BB), then
    A=P1APA' = P^{-1} A P
    .
    Where: PP is the change of basis matrix from the 'new' basis BB' to the 'old' basis BB.
    When to use: To find the matrix of a linear operator in a new basis, given its matrix in an old basis and the change of basis matrices.

    Quick Example:
    Let F:R2R2F: \mathbb{R}^2 \to \mathbb{R}^2 be defined by F(x,y)=(2x+y,xy)F(x, y) = (2x+y, x-y).
    Let E={(1,0),(0,1)}E = \{(1,0), (0,1)\} be the standard basis and B={(1,1),(1,2)}B = \{(1,1), (1,2)\} be another basis.
    The matrix of FF with respect to EE is

    A=ME,E(F)=[2111]A = M_{E,E}(F) = \begin{bmatrix} 2 & 1 \\ 1 & -1 \end{bmatrix}
    .
    We find the matrix of FF with respect to BB, i.e., A=MB,B(F)A' = M_{B,B}(F).

    Step 1: Find the change of basis matrix PEBP_{E \leftarrow B} (from BB to EE).
    The columns of PEBP_{E \leftarrow B} are the vectors of BB expressed in terms of EE.

    PEB=[1112]P_{E \leftarrow B} = \begin{bmatrix} 1 & 1 \\ 1 & 2 \end{bmatrix}

    Step 2: Compute PBE=(PEB)1P_{B \leftarrow E} = (P_{E \leftarrow B})^{-1}.

    PBE=([1112])1=11(2)1(1)[2111]=11[2111]=[2111]P_{B \leftarrow E} = \left(\begin{bmatrix} 1 & 1 \\ 1 & 2 \end{bmatrix}\right)^{-1} = \frac{1}{1(2) - 1(1)} \begin{bmatrix} 2 & -1 \\ -1 & 1 \end{bmatrix} = \frac{1}{1} \begin{bmatrix} 2 & -1 \\ -1 & 1 \end{bmatrix} = \begin{bmatrix} 2 & -1 \\ -1 & 1 \end{bmatrix}

    Step 3: Compute A=PBEAPEBA' = P_{B \leftarrow E} A P_{E \leftarrow B}.

    A=[2111][2111][1112]A' = \begin{bmatrix} 2 & -1 \\ -1 & 1 \end{bmatrix} \begin{bmatrix} 2 & 1 \\ 1 & -1 \end{bmatrix} \begin{bmatrix} 1 & 1 \\ 1 & 2 \end{bmatrix}

    Step 4: Perform matrix multiplication.
    First, M1=APEBM_1 = A P_{E \leftarrow B}:

    M1=[2111][1112]=[2(1)+1(1)2(1)+1(2)1(1)+(1)(1)1(1)+(1)(2)]=[3401]M_1 = \begin{bmatrix} 2 & 1 \\ 1 & -1 \end{bmatrix} \begin{bmatrix} 1 & 1 \\ 1 & 2 \end{bmatrix} = \begin{bmatrix} 2(1)+1(1) & 2(1)+1(2) \\ 1(1)+(-1)(1) & 1(1)+(-1)(2) \end{bmatrix} = \begin{bmatrix} 3 & 4 \\ 0 & -1 \end{bmatrix}

    Next, A=PBEM1A' = P_{B \leftarrow E} M_1:
    A=[2111][3401]=[2(3)+(1)(0)2(4)+(1)(1)1(3)+1(0)1(4)+1(1)]=[6935]A' = \begin{bmatrix} 2 & -1 \\ -1 & 1 \end{bmatrix} \begin{bmatrix} 3 & 4 \\ 0 & -1 \end{bmatrix} = \begin{bmatrix} 2(3)+(-1)(0) & 2(4)+(-1)(-1) \\ -1(3)+1(0) & -1(4)+1(-1) \end{bmatrix} = \begin{bmatrix} 6 & 9 \\ -3 & -5 \end{bmatrix}

    Answer: The matrix of FF with respect to basis BB is

    [6935]\begin{bmatrix} 6 & 9 \\ -3 & -5 \end{bmatrix}
    .

    :::question type="MCQ" question="Let F:R2R2F: \mathbb{R}^2 \to \mathbb{R}^2 be a linear operator with matrix A=ME,E(F)=[1203]A = M_{E,E}(F) = \begin{bmatrix} 1 & 2 \\ 0 & 3 \end{bmatrix} with respect to the standard basis E={(1,0),(0,1)}E = \{(1,0), (0,1)\}. If B={(1,1),(0,1)}B = \{(1,1), (0,1)\} is another basis for R2\mathbb{R}^2, find MB,B(F)M_{B,B}(F)." options=["

    [1203]\begin{bmatrix} 1 & 2 \\ 0 & 3 \end{bmatrix}
    ",
    "
    [3201]\begin{bmatrix} 3 & 2 \\ 0 & 1 \end{bmatrix}
    ",
    "
    [1003]\begin{bmatrix} 1 & 0 \\ 0 & 3 \end{bmatrix}
    ",
    "
    [1103]\begin{bmatrix} 1 & -1 \\ 0 & 3 \end{bmatrix}
    "] answer="
    [3201]\begin{bmatrix} 3 & 2 \\ 0 & 1 \end{bmatrix}
    " hint="Calculate the change of basis matrix from BB to EE and its inverse. Then apply the similarity formula A=P1APA' = P^{-1}AP." solution="Step 1: Find the change of basis matrix PEBP_{E \leftarrow B} (from BB to EE).
    The columns of PEBP_{E \leftarrow B} are the vectors of BB expressed in terms of EE.
    PEB=[1011]P_{E \leftarrow B} = \begin{bmatrix} 1 & 0 \\ 1 & 1 \end{bmatrix}

    Step 2: Compute PBE=(PEB)1P_{B \leftarrow E} = (P_{E \leftarrow B})^{-1}.

    PBE=([1011])1=11(1)0(1)[1011]=[1011]P_{B \leftarrow E} = \left(\begin{bmatrix} 1 & 0 \\ 1 & 1 \end{bmatrix}\right)^{-1} = \frac{1}{1(1) - 0(1)} \begin{bmatrix} 1 & 0 \\ -1 & 1 \end{bmatrix} = \begin{bmatrix} 1 & 0 \\ -1 & 1 \end{bmatrix}

    Step 3: Compute MB,B(F)=PBEME,E(F)PEBM_{B,B}(F) = P_{B \leftarrow E} M_{E,E}(F) P_{E \leftarrow B}.

    MB,B(F)=[1011][1203][1011]M_{B,B}(F) = \begin{bmatrix} 1 & 0 \\ -1 & 1 \end{bmatrix} \begin{bmatrix} 1 & 2 \\ 0 & 3 \end{bmatrix} \begin{bmatrix} 1 & 0 \\ 1 & 1 \end{bmatrix}

    Step 4: Perform matrix multiplication.
    First, M1=ME,E(F)PEBM_1 = M_{E,E}(F) P_{E \leftarrow B}:

    M1=[1203][1011]=[1(1)+2(1)1(0)+2(1)0(1)+3(1)0(0)+3(1)]=[3233]M_1 = \begin{bmatrix} 1 & 2 \\ 0 & 3 \end{bmatrix} \begin{bmatrix} 1 & 0 \\ 1 & 1 \end{bmatrix} = \begin{bmatrix} 1(1)+2(1) & 1(0)+2(1) \\ 0(1)+3(1) & 0(0)+3(1) \end{bmatrix} = \begin{bmatrix} 3 & 2 \\ 3 & 3 \end{bmatrix}

    Next, MB,B(F)=PBEM1M_{B,B}(F) = P_{B \leftarrow E} M_1:
    MB,B(F)=[1011][3233]=[1(3)+0(3)1(2)+0(3)1(3)+1(3)1(2)+1(3)]=[3201]M_{B,B}(F) = \begin{bmatrix} 1 & 0 \\ -1 & 1 \end{bmatrix} \begin{bmatrix} 3 & 2 \\ 3 & 3 \end{bmatrix} = \begin{bmatrix} 1(3)+0(3) & 1(2)+0(3) \\ -1(3)+1(3) & -1(2)+1(3) \end{bmatrix} = \begin{bmatrix} 3 & 2 \\ 0 & 1 \end{bmatrix}

    "
    :::

    ---

    Advanced Applications

    Matrix Representation for Transformations between Higher Dimensional Spaces

    We extend the concept of matrix representation to transformations between vector spaces of different dimensions, with non-standard bases for both domain and codomain.

    Worked Example (based on PYQ 4):
    Let F:R3R2F: \mathbf{R}^3 \to \mathbf{R}^2 be the linear map defined by F(x,y,z)=(3x+2y4z,x5y+3z)F(x, y, z) = (3x + 2y - 4z, x - 5y + 3z). The basis of R3\mathbf{R}^3 is S={(1,1,1),(1,1,0),(1,0,0)}S = \{(1, 1, 1), (1, 1, 0), (1, 0, 0)\} and basis of R2\mathbf{R}^2 is S={(1,3),(2,5)}S' = \{(1, 3), (2, 5)\}. We find the matrix of FF in the bases SS (domain) and SS' (codomain), i.e., MS,S(F)M_{S',S}(F).

    Step 1: Apply FF to each vector in the domain basis SS.

    F(1,1,1)=(3(1)+2(1)4(1),15(1)+3(1))=(3+24,15+3)=(1,1)F(1, 1, 1) = (3(1) + 2(1) - 4(1), 1 - 5(1) + 3(1)) = (3+2-4, 1-5+3) = (1, -1)

    F(1,1,0)=(3(1)+2(1)4(0),15(1)+3(0))=(3+2,15)=(5,4)F(1, 1, 0) = (3(1) + 2(1) - 4(0), 1 - 5(1) + 3(0)) = (3+2, 1-5) = (5, -4)

    F(1,0,0)=(3(1)+2(0)4(0),15(0)+3(0))=(3,1)F(1, 0, 0) = (3(1) + 2(0) - 4(0), 1 - 5(0) + 3(0)) = (3, 1)

    Step 2: Express each resulting vector in terms of the codomain basis S={(1,3),(2,5)}S' = \{(1, 3), (2, 5)\}.
    For F(1,1,1)=(1,1)F(1, 1, 1) = (1, -1):
    We need a,ba, b such that

    (1,1)=a(1,3)+b(2,5)(1, -1) = a(1, 3) + b(2, 5)

    1=a+2b1 = a + 2b

    1=3a+5b-1 = 3a + 5b

    Multiply first equation by 3: 3=3a+6b3 = 3a + 6b.
    Subtract second from this:
    (3a+6b)(3a+5b)=3(1)    b=4(3a + 6b) - (3a + 5b) = 3 - (-1) \implies b = 4

    Substitute b=4b=4 into 1=a+2b    1=a+2(4)    a=18=71 = a + 2b \implies 1 = a + 2(4) \implies a = 1 - 8 = -7.
    So,
    [F(1,1,1)]S=[74][F(1, 1, 1)]_{S'} = \begin{bmatrix} -7 \\ 4 \end{bmatrix}
    .

    For F(1,1,0)=(5,4)F(1, 1, 0) = (5, -4):
    We need c,dc, d such that

    (5,4)=c(1,3)+d(2,5)(5, -4) = c(1, 3) + d(2, 5)

    5=c+2d5 = c + 2d

    4=3c+5d-4 = 3c + 5d

    Multiply first equation by 3: 15=3c+6d15 = 3c + 6d.
    Subtract second from this:
    (3c+6d)(3c+5d)=15(4)    d=19(3c + 6d) - (3c + 5d) = 15 - (-4) \implies d = 19

    Substitute d=19d=19 into 5=c+2d    5=c+2(19)    c=538=335 = c + 2d \implies 5 = c + 2(19) \implies c = 5 - 38 = -33.
    So,
    [F(1,1,0)]S=[3319][F(1, 1, 0)]_{S'} = \begin{bmatrix} -33 \\ 19 \end{bmatrix}
    .

    For F(1,0,0)=(3,1)F(1, 0, 0) = (3, 1):
    We need e,fe, f such that

    (3,1)=e(1,3)+f(2,5)(3, 1) = e(1, 3) + f(2, 5)

    3=e+2f3 = e + 2f

    1=3e+5f1 = 3e + 5f

    Multiply first equation by 3: 9=3e+6f9 = 3e + 6f.
    Subtract second from this:
    (3e+6f)(3e+5f)=91    f=8(3e + 6f) - (3e + 5f) = 9 - 1 \implies f = 8

    Substitute f=8f=8 into 3=e+2f    3=e+2(8)    e=316=133 = e + 2f \implies 3 = e + 2(8) \implies e = 3 - 16 = -13.
    So,
    [F(1,0,0)]S=[138][F(1, 0, 0)]_{S'} = \begin{bmatrix} -13 \\ 8 \end{bmatrix}
    .

    Step 3: Form the matrix MS,S(F)M_{S',S}(F) using these coordinate vectors as columns.

    MS,S(F)=[733134198]M_{S',S}(F) = \begin{bmatrix} -7 & -33 & -13 \\ 4 & 19 & 8 \end{bmatrix}

    Answer: The matrix of FF in the given bases is

    [733134198]\begin{bmatrix} -7 & -33 & -13 \\ 4 & 19 & 8 \end{bmatrix}
    .

    :::question type="NAT" question="Let T:R3R2T: \mathbb{R}^3 \to \mathbb{R}^2 be defined by T(x,y,z)=(xy,yz)T(x, y, z) = (x-y, y-z). Let B={(1,0,0),(0,1,0),(0,0,1)}B = \{(1,0,0), (0,1,0), (0,0,1)\} be the standard basis for R3\mathbb{R}^3 and C={(1,1),(1,1)}C = \{(1,1), (1,-1)\} be a basis for R2\mathbb{R}^2. Find the entry in the second row, second column of MC,B(T)M_{C,B}(T)." answer="-1" hint="Calculate T(e2)T(e_2) and express it in terms of CC. The second component of this coordinate vector is the answer." solution="Step 1: Identify the relevant basis vector and its image under TT.
    The second column of MC,B(T)M_{C,B}(T) corresponds to T(v2)T(v_2), where v2v_2 is the second vector in basis BB.
    Here, B={e1,e2,e3}={(1,0,0),(0,1,0),(0,0,1)}B = \{e_1, e_2, e_3\} = \{(1,0,0), (0,1,0), (0,0,1)\}, so v2=e2=(0,1,0)v_2 = e_2 = (0,1,0).

    T(0,1,0)=(01,10)=(1,1)T(0,1,0) = (0-1, 1-0) = (-1, 1)

    Step 2: Express T(v2)T(v_2) in terms of the codomain basis C={(1,1),(1,1)}C = \{(1,1), (1,-1)\}.
    We need to find a,ba, b such that

    (1,1)=a(1,1)+b(1,1)(-1, 1) = a(1, 1) + b(1, -1)

    1=a+b-1 = a + b

    1=ab1 = a - b

    Adding the two equations:
    (1)+1=(a+b)+(ab)    0=2a    a=0(-1) + 1 = (a+b) + (a-b) \implies 0 = 2a \implies a = 0

    Substitute a=0a=0 into 1=a+b    1=0+b    b=1-1 = a+b \implies -1 = 0+b \implies b = -1.
    So,
    [T(0,1,0)]C=[01][T(0,1,0)]_C = \begin{bmatrix} 0 \\ -1 \end{bmatrix}
    .

    Step 3: Identify the required entry.
    The second row, second column entry of MC,B(T)M_{C,B}(T) is the second component of [T(v2)]C[T(v_2)]_C, which is bb.
    The value is 1-1."
    :::

    ---

    Problem-Solving Strategies

    💡 CUET PG Strategy: Constructing MC,B(F)M_{C,B}(F)

    • Understand the Bases: Clearly identify the ordered basis for the domain (BB) and the ordered basis for the codomain (CC).

    • Apply Transformation: For each vector vjv_j in the domain basis BB, compute its image F(vj)F(v_j).

    • Express in Codomain Basis: For each F(vj)F(v_j), express it as a linear combination of the vectors in the codomain basis CC. The coefficients of this linear combination form the jj-th column of the matrix MC,B(F)M_{C,B}(F). This usually involves solving a system of linear equations.

    • Form the Matrix: Assemble these column vectors in order to form the final matrix.

    💡 CUET PG Strategy: Change of Basis

    • Identify Old and New Bases: Clearly distinguish between the 'old' basis (BoldB_{old}) and the 'new' basis (BnewB_{new}).

    • Standard Basis as Bridge: Often, it is easiest to find the change of basis matrix from BnewB_{new} to the standard basis (EE), say PEBnewP_{E \leftarrow B_{new}}, and then from the standard basis to BoldB_{old}, say PBoldEP_{B_{old} \leftarrow E}.

    • Direct Calculation: PBoldBnewP_{B_{old} \leftarrow B_{new}} is constructed by expressing each vector of BnewB_{new} as a linear combination of vectors in BoldB_{old}. The coefficients form the columns.

    • Inverse for Reverse: Remember that
      PBoldBnew=(PBnewBold)1P_{B_{old} \leftarrow B_{new}} = (P_{B_{new} \leftarrow B_{old}})^{-1}
      .

    ---

    Common Mistakes

    ⚠️ Common Mistake: Order of Bases

    ❌ Students often confuse the order of bases, especially when dealing with MC,B(F)M_{C,B}(F) vs MB,C(F)M_{B,C}(F) or PBBP_{B \leftarrow B'} vs PBBP_{B' \leftarrow B}.
    ✅ The notation MC,B(F)M_{C,B}(F) means the domain basis is BB and the codomain basis is CC. The columns are images of domain basis vectors, expressed in the codomain basis. For change of basis, PBBP_{B \leftarrow B'} means transforming coordinates from BB' to BB.

    ⚠️ Common Mistake: Row vs. Column Vectors

    ❌ Incorrectly using row vectors instead of column vectors for coordinates or matrix construction.
    ✅ Matrix representations are conventionally constructed with column vectors representing images of basis vectors or coordinate vectors. Always ensure consistency.

    ⚠️ Common Mistake: Calculation Errors in Solving Systems

    ❌ Errors in solving the systems of linear equations to find coordinate vectors.
    ✅ Double-check the solutions for a,b,c,a, b, c, \dots values. A small arithmetic error can propagate through the entire matrix.

    ---

    Practice Questions

    :::question type="MCQ" question="Let F:P1R2F: \mathbb{P}_1 \to \mathbb{R}^2 be defined by F(a+bx)=(ab,2a)F(a+bx) = (a-b, 2a). Let B={1,x}B = \{1, x\} be the standard basis for P1\mathbb{P}_1 and C={(1,0),(1,1)}C = \{(1, 0), (1, 1)\} be a basis for R2\mathbb{R}^2. Find MC,B(F)M_{C,B}(F)." options=["

    [1212]\begin{bmatrix} 1 & -2 \\ 1 & 2 \end{bmatrix}
    ",
    "
    [1122]\begin{bmatrix} 1 & 1 \\ -2 & 2 \end{bmatrix}
    ",
    "
    [2101]\begin{bmatrix} 2 & -1 \\ 0 & 1 \end{bmatrix}
    ",
    "
    [1120]\begin{bmatrix} -1 & -1 \\ 2 & 0 \end{bmatrix}
    "] answer="
    [1120]\begin{bmatrix} -1 & -1 \\ 2 & 0 \end{bmatrix}
    " hint="Apply FF to 11 and xx, then express the results in terms of C={(1,0),(1,1)}C = \{(1, 0), (1, 1)\}." solution="Step 1: Apply FF to each vector in the domain basis B={1,x}B = \{1, x\}.
    F(1)F(1) (here a=1,b=0a=1, b=0)
    =(10,2(1))=(1,2)= (1-0, 2(1)) = (1, 2)

    F(x)F(x) (here a=0,b=1a=0, b=1)
    =(01,2(0))=(1,0)= (0-1, 2(0)) = (-1, 0)

    Step 2: Express each resulting vector in terms of the codomain basis C={(1,0),(1,1)}C = \{(1, 0), (1, 1)\}.
    For F(1)=(1,2)F(1) = (1, 2):
    We need c1,c2c_1, c_2 such that

    (1,2)=c1(1,0)+c2(1,1)(1, 2) = c_1(1, 0) + c_2(1, 1)

    1=c1+c21 = c_1 + c_2

    2=0c1+c2    c2=22 = 0c_1 + c_2 \implies c_2 = 2

    Substitute c2=2c_2=2 into 1=c1+c2    1=c1+2    c1=11 = c_1 + c_2 \implies 1 = c_1 + 2 \implies c_1 = -1.
    So,
    [F(1)]C=[12][F(1)]_C = \begin{bmatrix} -1 \\ 2 \end{bmatrix}
    .

    For F(x)=(1,0)F(x) = (-1, 0):
    We need d1,d2d_1, d_2 such that

    (1,0)=d1(1,0)+d2(1,1)(-1, 0) = d_1(1, 0) + d_2(1, 1)

    1=d1+d2-1 = d_1 + d_2

    0=0d1+d2    d2=00 = 0d_1 + d_2 \implies d_2 = 0

    Substitute d2=0d_2=0 into 1=d1+d2    1=d1+0    d1=1-1 = d_1 + d_2 \implies -1 = d_1 + 0 \implies d_1 = -1.
    So,
    [F(x)]C=[10][F(x)]_C = \begin{bmatrix} -1 \\ 0 \end{bmatrix}
    .

    Step 3: Form the matrix MC,B(F)M_{C,B}(F) using these coordinate vectors as columns.

    MC,B(F)=[1120]M_{C,B}(F) = \begin{bmatrix} -1 & -1 \\ 2 & 0 \end{bmatrix}

    "
    :::

    :::question type="NAT" question="Let T:R2R3T: \mathbb{R}^2 \to \mathbb{R}^3 be a linear transformation given by T(x,y)=(x+y,xy,2y)T(x,y) = (x+y, x-y, 2y). Let B={(1,2),(2,1)}B = \{(1,2), (2,1)\} be a basis for R2\mathbb{R}^2 and E3E_3 be the standard basis for R3\mathbb{R}^3. Find the sum of all entries in the first column of ME3,B(T)M_{E_3,B}(T)." answer="6" hint="Calculate T(v1)T(v_1) for v1=(1,2)v_1=(1,2) and sum its components." solution="Step 1: Identify the first vector in the domain basis BB.
    The first vector in B={(1,2),(2,1)}B = \{(1,2), (2,1)\} is v1=(1,2)v_1 = (1,2).

    Step 2: Apply the transformation TT to v1v_1.

    T(1,2)=(1+2,12,2(2))=(3,1,4)T(1,2) = (1+2, 1-2, 2(2)) = (3, -1, 4)

    Step 3: Express T(v1)T(v_1) in terms of the codomain basis E3={(1,0,0),(0,1,0),(0,0,1)}E_3 = \{(1,0,0), (0,1,0), (0,0,1)\}.
    Since E3E_3 is the standard basis, the coordinate vector [T(v1)]E3[T(v_1)]_{E_3} is simply (3,1,4)(3, -1, 4).
    So the first column of ME3,B(T)M_{E_3,B}(T) is

    [314]\begin{bmatrix} 3 \\ -1 \\ 4 \end{bmatrix}
    .

    Step 4: Sum the entries in the first column.

    Sum=3+(1)+4=6Sum = 3 + (-1) + 4 = 6
    "
    :::

    :::question type="MCQ" question="Let L:R2R2L: \mathbb{R}^2 \to \mathbb{R}^2 be a linear operator such that L(1,0)=(2,1)L(1, 0) = (2, 1) and L(0,1)=(1,3)L(0, 1) = (-1, 3). Find the matrix of LL with respect to the basis B={(1,1),(1,1)}B = \{(1, 1), (-1, 1)\}. " options=["

    [5/21/23/25/2]\begin{bmatrix} 5/2 & -1/2 \\ 3/2 & 5/2 \end{bmatrix}
    ",
    "
    [2113]\begin{bmatrix} 2 & -1 \\ 1 & 3 \end{bmatrix}
    ",
    "
    [2112]\begin{bmatrix} 2 & -1 \\ -1 & 2 \end{bmatrix}
    ",
    "
    [1221]\begin{bmatrix} 1 & 2 \\ -2 & 1 \end{bmatrix}
    "] answer="
    [5/21/23/25/2]\begin{bmatrix} 5/2 & -1/2 \\ 3/2 & 5/2 \end{bmatrix}
    " hint="First find the matrix in the standard basis, then use the similarity transformation A=P1APA' = P^{-1}AP." solution="Step 1: Find the matrix of LL with respect to the standard basis E={(1,0),(0,1)}E = \{(1,0), (0,1)\}.
    Given L(1,0)=(2,1)L(1, 0) = (2, 1) and L(0,1)=(1,3)L(0, 1) = (-1, 3), the matrix A=ME,E(L)A = M_{E,E}(L) is:
    A=[2113]A = \begin{bmatrix} 2 & -1 \\ 1 & 3 \end{bmatrix}

    Step 2: Find the change of basis matrix PEBP_{E \leftarrow B} (from BB to EE).
    The columns of PEBP_{E \leftarrow B} are the vectors of B={(1,1),(1,1)}B = \{(1, 1), (-1, 1)\} expressed in terms of EE.

    PEB=[1111]P_{E \leftarrow B} = \begin{bmatrix} 1 & -1 \\ 1 & 1 \end{bmatrix}

    Step 3: Compute PBE=(PEB)1P_{B \leftarrow E} = (P_{E \leftarrow B})^{-1}.

    det(PEB)=1(1)(1)(1)=1+1=2\det(P_{E \leftarrow B}) = 1(1) - (-1)(1) = 1 + 1 = 2

    PBE=12[1111]=[1/21/21/21/2]P_{B \leftarrow E} = \frac{1}{2} \begin{bmatrix} 1 & 1 \\ -1 & 1 \end{bmatrix} = \begin{bmatrix} 1/2 & 1/2 \\ -1/2 & 1/2 \end{bmatrix}

    Step 4: Compute MB,B(L)=PBEAPEBM_{B,B}(L) = P_{B \leftarrow E} A P_{E \leftarrow B}.

    MB,B(L)=[1/21/21/21/2][2113][1111]M_{B,B}(L) = \begin{bmatrix} 1/2 & 1/2 \\ -1/2 & 1/2 \end{bmatrix} \begin{bmatrix} 2 & -1 \\ 1 & 3 \end{bmatrix} \begin{bmatrix} 1 & -1 \\ 1 & 1 \end{bmatrix}

    Step 5: Perform matrix multiplication.
    First, M1=APEBM_1 = A P_{E \leftarrow B}:

    M1=[2113][1111]=[2(1)1(1)2(1)1(1)1(1)+3(1)1(1)+3(1)]=[1342]M_1 = \begin{bmatrix} 2 & -1 \\ 1 & 3 \end{bmatrix} \begin{bmatrix} 1 & -1 \\ 1 & 1 \end{bmatrix} = \begin{bmatrix} 2(1)-1(1) & 2(-1)-1(1) \\ 1(1)+3(1) & 1(-1)+3(1) \end{bmatrix} = \begin{bmatrix} 1 & -3 \\ 4 & 2 \end{bmatrix}

    Next, MB,B(L)=PBEM1M_{B,B}(L) = P_{B \leftarrow E} M_1:
    MB,B(L)=[1/21/21/21/2][1342]=[(1/2)(1)+(1/2)(4)(1/2)(3)+(1/2)(2)(1/2)(1)+(1/2)(4)(1/2)(3)+(1/2)(2)]M_{B,B}(L) = \begin{bmatrix} 1/2 & 1/2 \\ -1/2 & 1/2 \end{bmatrix} \begin{bmatrix} 1 & -3 \\ 4 & 2 \end{bmatrix} = \begin{bmatrix} (1/2)(1)+(1/2)(4) & (1/2)(-3)+(1/2)(2) \\ (-1/2)(1)+(1/2)(4) & (-1/2)(-3)+(1/2)(2) \end{bmatrix}

    MB,B(L)=[1/2+23/2+11/2+23/2+1]=[5/21/23/25/2]M_{B,B}(L) = \begin{bmatrix} 1/2+2 & -3/2+1 \\ -1/2+2 & 3/2+1 \end{bmatrix} = \begin{bmatrix} 5/2 & -1/2 \\ 3/2 & 5/2 \end{bmatrix}
    "
    :::

    :::question type="MSQ" question="Let S={v1,v2}S = \{v_1, v_2\} and S={u1,u2}S' = \{u_1, u_2\} be two bases for R2\mathbb{R}^2, where v1=(1,2)v_1 = (1, 2), v2=(3,4)v_2 = (3, 4), u1=(1,1)u_1 = (1, 1), u2=(0,1)u_2 = (0, 1). Which of the following statements are true?" options=["The change of basis matrix PSSP_{S' \leftarrow S} is [2234]\begin{bmatrix} -2 & -2 \\ 3 & 4 \end{bmatrix}",
    "The change of basis matrix PSSP_{S \leftarrow S'} is [2234]\begin{bmatrix} -2 & -2 \\ 3 & 4 \end{bmatrix}",
    "The change of basis matrix PSSP_{S' \leftarrow S} is [1311]\begin{bmatrix} 1 & 3 \\ 1 & 1 \end{bmatrix}",
    "The change of basis matrix PSSP_{S \leftarrow S'} is [1312]\begin{bmatrix} -1 & 3 \\ 1 & -2 \end{bmatrix}"] answer="The change of basis matrix PSSP_{S' \leftarrow S} is [1311]\begin{bmatrix} 1 & 3 \\ 1 & 1 \end{bmatrix}" hint="Calculate PSSP_{S' \leftarrow S} and PSSP_{S \leftarrow S'} separately by expressing basis vectors of the 'from' basis in terms of the 'to' basis." solution="Step 1: Calculate PSSP_{S' \leftarrow S}.
    This matrix transforms coordinates from SS to SS'. Its columns are the vectors of SS expressed in terms of SS'.
    v1=(1,2)v_1 = (1, 2). We need a,ba, b such that

    (1,2)=a(1,1)+b(0,1)(1, 2) = a(1, 1) + b(0, 1)

    1=a1 = a

    2=a+b    2=1+b    b=12 = a + b \implies 2 = 1 + b \implies b = 1

    So
    [v1]S=[11][v_1]_{S'} = \begin{bmatrix} 1 \\ 1 \end{bmatrix}
    .

    v2=(3,4)v_2 = (3, 4). We need c,dc, d such that

    (3,4)=c(1,1)+d(0,1)(3, 4) = c(1, 1) + d(0, 1)

    3=c3 = c

    4=c+d    4=3+d    d=14 = c + d \implies 4 = 3 + d \implies d = 1

    So
    [v2]S=[31][v_2]_{S'} = \begin{bmatrix} 3 \\ 1 \end{bmatrix}
    .
    Therefore,
    PSS=[1311]P_{S' \leftarrow S} = \begin{bmatrix} 1 & 3 \\ 1 & 1 \end{bmatrix}
    .
    This matches option 3.

    Step 2: Calculate PSSP_{S \leftarrow S'}.
    This matrix transforms coordinates from SS' to SS. Its columns are the vectors of SS' expressed in terms of SS.
    u1=(1,1)u_1 = (1, 1). We need e,fe, f such that

    (1,1)=e(1,2)+f(3,4)(1, 1) = e(1, 2) + f(3, 4)

    1=e+3f1 = e + 3f

    1=2e+4f1 = 2e + 4f

    Multiply first by 2: 2=2e+6f2 = 2e + 6f.
    Subtract second from this:
    (2e+6f)(2e+4f)=21    2f=1    f=1/2(2e+6f) - (2e+4f) = 2-1 \implies 2f = 1 \implies f = 1/2

    Substitute f=1/2f=1/2 into 1=e+3f    1=e+3(1/2)    e=13/2=1/21 = e + 3f \implies 1 = e + 3(1/2) \implies e = 1 - 3/2 = -1/2.
    So
    [u1]S=[1/21/2][u_1]_S = \begin{bmatrix} -1/2 \\ 1/2 \end{bmatrix}
    .

    u2=(0,1)u_2 = (0, 1). We need g,hg, h such that

    (0,1)=g(1,2)+h(3,4)(0, 1) = g(1, 2) + h(3, 4)

    0=g+3h0 = g + 3h

    1=2g+4h1 = 2g + 4h

    From first, g=3hg = -3h. Substitute into second:
    1=2(3h)+4h=6h+4h=2h    h=1/21 = 2(-3h) + 4h = -6h + 4h = -2h \implies h = -1/2

    Then
    g=3(1/2)=3/2g = -3(-1/2) = 3/2
    .
    So
    [u2]S=[3/21/2][u_2]_S = \begin{bmatrix} 3/2 \\ -1/2 \end{bmatrix}
    .
    Therefore,
    PSS=[1/23/21/21/2]P_{S \leftarrow S'} = \begin{bmatrix} -1/2 & 3/2 \\ 1/2 & -1/2 \end{bmatrix}
    .
    This does not match option 4.

    Therefore, only option 3 is true."
    :::

    ---

    Summary

    Key Formulas & Takeaways

    | # | Formula/Concept | Expression |
    |---|----------------|------------|
    | 1 | Standard Matrix Representation | [F]=[F(e1)F(en)][F] = [F(e_1) \dots F(e_n)] |
    | 2 | Arbitrary Basis Matrix Representation | MC,B(F)=[[F(v1)]C[F(vn)]C]M_{C,B}(F) = [[F(v_1)]_C \dots [F(v_n)]_C] |
    | 3 | Change of Basis Matrix (BB' to BB) | PBB=[[v1]B[vn]B]P_{B \leftarrow B'} = [[v'_1]_B \dots [v'_n]_B] |
    | 4 | Similarity Transformation | MB,B(F)=PBBMB,B(F)PBBM_{B',B'}(F) = P_{B' \leftarrow B} M_{B,B}(F) P_{B \leftarrow B'} |

    ---

    What's Next?

    💡 Continue Learning

    This topic connects to:

      • Kernel and Image of a Linear Transformation: The matrix representation directly relates to finding the basis for the kernel (null space) and image (range) of a linear transformation through operations like row reduction.

      • Eigenvalues and Eigenvectors: Understanding how the matrix of a linear operator changes under similarity transformations is crucial for diagonalizing matrices and finding eigenvalues and eigenvectors.

      • Rank-Nullity Theorem: The dimensions of the kernel and image, derivable from the matrix representation, are related by the Rank-Nullity Theorem.

    Chapter Summary

    Linear Transformations and Matrices — Key Points

    Linear transformations are structure-preserving maps between vector spaces, satisfying additivity and homogeneity.
    The null space (kernel) and range space (image) are fundamental subspaces that characterize a transformation's injectivity and surjectivity, respectively.
    The Rank-Nullity Theorem states that for a linear transformation T:VWT: V \to W,

    dim(null(T))+dim(range(T))=dim(V)\operatorname{dim}(\operatorname{null}(T)) + \operatorname{dim}(\operatorname{range}(T)) = \operatorname{dim}(V)
    .
    Every linear transformation between finite-dimensional vector spaces has a unique matrix representation with respect to chosen bases, establishing an isomorphism between linear transformations and matrices.
    A change of basis for a linear transformation results in a similar matrix representation, highlighting the intrinsic properties independent of basis choice.
    A linear transformation TT is injective if and only if its null space contains only the zero vector, and surjective if and only if its rank equals the dimension of the codomain.

    Chapter Review Questions

    :::question type="MCQ" question="Let T:R4R3T: \mathbb{R}^4 \to \mathbb{R}^3 be a linear transformation defined by T(x,y,z,w)=(x+2yz,y+w,xw)T(x,y,z,w) = (x+2y-z, y+w, x-w). What is the dimension of the null space of TT?" options=["1", "2", "3", "4"] answer="1" hint="Form the matrix representation of TT and find its rank. Then apply the Rank-Nullity Theorem." solution="The matrix representation of TT is

    A=(121001011001)A = \begin{pmatrix} 1 & 2 & -1 & 0 \\ 0 & 1 & 0 & 1 \\ 1 & 0 & 0 & -1 \end{pmatrix}
    .
    Row reducing AA:
    (121001011001)R3R3R1(121001010211)R3R3+2R2(121001010011)\begin{pmatrix}1 & 2 & -1 & 0 \\
    0 & 1 & 0 & 1 \\
    1 & 0 & 0 & -1\end{pmatrix}
    \xrightarrow{R_3 \to R_3 - R_1}
    \begin{pmatrix}1 & 2 & -1 & 0 \\
    0 & 1 & 0 & 1 \\
    0 & -2 & 1 & -1\end{pmatrix}
    \xrightarrow{R_3 \to R_3 + 2R_2}
    \begin{pmatrix}1 & 2 & -1 & 0 \\
    0 & 1 & 0 & 1 \\
    0 & 0 & 1 & 1\end{pmatrix}

    The rank of AA is 3 (number of non-zero rows).
    By the Rank-Nullity Theorem,
    dim(null(T))=dim(domain)rank(T)=43=1\operatorname{dim}(\operatorname{null}(T)) = \operatorname{dim}(\operatorname{domain}) - \operatorname{rank}(T) = 4 - 3 = 1
    .
    Thus, the dimension of the null space of TT is 1."
    :::

    :::question type="NAT" question="Let P2P_2 be the vector space of polynomials of degree at most 2. Let T:P2P2T: P_2 \to P_2 be a linear transformation defined by T(p(x))=p(x)+p(x)T(p(x)) = p'(x) + p(x). Find the sum of the entries in the second column of the matrix representation of TT with respect to the standard basis B={1,x,x2}B = \{1, x, x^2\}." answer="2" hint="Apply the transformation to each basis vector to find its coordinates in the standard basis. The coordinates form the columns of the matrix." solution="Applying TT to the basis vectors:

    T(1)=0+1=1=11+0x+0x2T(1) = 0 + 1 = 1 = 1 \cdot 1 + 0 \cdot x + 0 \cdot x^2

    T(x)=1+x=11+1x+0x2T(x) = 1 + x = 1 \cdot 1 + 1 \cdot x + 0 \cdot x^2

    T(x2)=2x+x2=01+2x+1x2T(x^2) = 2x + x^2 = 0 \cdot 1 + 2 \cdot x + 1 \cdot x^2

    The matrix representation [T]B[T]_B is:
    (110012001)\begin{pmatrix}1 & 1 & 0 \\
    0 & 1 & 2 \\
    0 & 0 & 1\end{pmatrix}

    The entries in the second column are 1, 1, and 0. Their sum is 1+1+0=21 + 1 + 0 = 2."
    :::

    :::question type="MCQ" question="Let VV and WW be finite-dimensional vector spaces, and let T:VWT: V \to W be a linear transformation. Which of the following statements is always true?" options=["If TT is injective, then dim(V)=dim(W)\operatorname{dim}(V) = \operatorname{dim}(W).", "If TT is surjective, then nullity(T)=0\operatorname{nullity}(T) = 0.", "TT is an isomorphism if and only if nullity(T)=0\operatorname{nullity}(T) = 0 and rank(T)=dim(W)\operatorname{rank}(T) = \operatorname{dim}(W).", "If nullity(T)>0\operatorname{nullity}(T) > 0, then TT is surjective."] answer="TT is an isomorphism if and only if nullity(T)=0\operatorname{nullity}(T) = 0 and rank(T)=dim(W)\operatorname{rank}(T) = \operatorname{dim}(W)." hint="Recall the definitions of injective, surjective, and isomorphism in terms of kernel and range, and relate them to dimensions using the Rank-Nullity Theorem." solution="

  • False. If TT is injective, then dim(V)dim(W)\operatorname{dim}(V) \le \operatorname{dim}(W). For example, T:R2R3T: \mathbb{R}^2 \to \mathbb{R}^3 defined by T(x,y)=(x,y,0)T(x,y) = (x,y,0) is injective, but dim(R2)dim(R3)\operatorname{dim}(\mathbb{R}^2) \ne \operatorname{dim}(\mathbb{R}^3).

  • False. If TT is surjective, then rank(T)=dim(W)\operatorname{rank}(T) = \operatorname{dim}(W). By Rank-Nullity Theorem,
    nullity(T)=dim(V)rank(T)=dim(V)dim(W)\operatorname{nullity}(T) = \operatorname{dim}(V) - \operatorname{rank}(T) = \operatorname{dim}(V) - \operatorname{dim}(W)
    . This is only 0 if dim(V)=dim(W)\operatorname{dim}(V) = \operatorname{dim}(W). For example, T:R3R2T: \mathbb{R}^3 \to \mathbb{R}^2 defined by T(x,y,z)=(x,y)T(x,y,z) = (x,y) is surjective, but nullity(T)=1\operatorname{nullity}(T) = 1.

  • True. An isomorphism is both injective and surjective. TT is injective if and only if nullity(T)=0\operatorname{nullity}(T) = 0. TT is surjective if and only if rank(T)=dim(W)\operatorname{rank}(T) = \operatorname{dim}(W). Therefore, TT is an isomorphism if and only if both conditions hold.

  • False. If nullity(T)>0\operatorname{nullity}(T) > 0, TT is not injective. This does not imply surjectivity. For example, T:R3R3T: \mathbb{R}^3 \to \mathbb{R}^3 defined by T(x,y,z)=(x,y,0)T(x,y,z) = (x,y,0) has nullity(T)=1\operatorname{nullity}(T)=1 but is not surjective.

  • "
    :::

    What's Next?

    💡 Continue Your CUET PG Journey

    This chapter has established the fundamental link between linear transformations and matrices, a cornerstone of linear algebra. Building on this, the next chapters will delve into advanced topics such as eigenvalues and eigenvectors, which characterize the invariant directions of linear transformations, and diagonalization, a powerful technique for simplifying matrix computations. Further, concepts like inner product spaces and quadratic forms will extend these ideas to geometric structures and optimization problems, providing a comprehensive understanding of advanced linear algebra.

    🎯 Key Points to Remember

    • Master the core concepts in Linear Transformations and Matrices before moving to advanced topics
    • Practice with previous year questions to understand exam patterns
    • Review short notes regularly for quick revision before exams

    Related Topics in Algebra

    More Resources

    Why Choose MastersUp?

    🎯

    AI-Powered Plans

    Personalized study schedules based on your exam date and learning pace

    📚

    15,000+ Questions

    Verified questions with detailed solutions from past papers

    📊

    Smart Analytics

    Track your progress with subject-wise performance insights

    🔖

    Bookmark & Revise

    Save important questions for quick revision before exams

    Start Your Free Preparation →

    No credit card required • Free forever for basic features