100% FREE
Updated: Mar 2026 Algebra Linear Algebra
Vector Spaces
Comprehensive study notes on Vector Spaces for CUET PG Mathematics preparation.
This chapter covers key concepts, formulas, and examples needed for your exam.
This chapter introduces the fundamental concepts of vector spaces, subspaces, linear dependence, independence, basis, and dimension. These core principles form the bedrock of linear algebra, providing essential tools for abstract mathematical reasoning. Mastery of these topics is critical for the CUET PG MA examination, where they are frequently assessed and serve as prerequisites for advanced subjects.
---
Chapter Contents
| # | Topic | |---|-------| | 1 | Vector Spaces and Subspaces | | 2 | Linear Dependence and Independence | | 3 | Basis and Dimension |
---
We begin with Vector Spaces and Subspaces.
Part 1: Vector Spaces and Subspaces
Vector spaces form the fundamental algebraic structure in linear algebra, providing a framework for operations on objects such as vectors, polynomials, and functions. We define a vector space as a set equipped with two operations—vector addition and scalar multiplication—that satisfy a specific set of axioms. Understanding vector spaces and their subspaces is crucial for solving problems involving linear transformations, eigenvalues, and basis constructions, which are frequently tested in competitive examinations.
---
Core Concepts
1. Definition of a Vector Space
A real vector space V is a set of objects, called vectors, together with two operations: vector addition and scalar multiplication. These operations must satisfy the following ten axioms for all vectors u,v,w in V and all scalars c,d in R:
Closure under Addition:u+v is in V.
Commutativity of Addition:u+v=v+u.
Associativity of Addition:(u+v)+w=u+(v+w).
Existence of Zero Vector: There exists a zero vector 0 in V such that u+0=u.
Existence of Negative Vector: For each u in V, there exists a vector −u in V such that u+(−u)=0.
Closure under Scalar Multiplication:cu is in V.
Distributivity (Scalar over Vector Addition):c(u+v)=cu+cv.
Distributivity (Vector over Scalar Addition):(c+d)u=cu+du.
Associativity of Scalar Multiplication:c(du)=(cd)u.
Identity for Scalar Multiplication:1u=u.
Quick Example: Consider the set V=R2 with standard vector addition and scalar multiplication. We demonstrate closure under addition.
Step 1: Let u=(u1,u2) and v=(v1,v2) be arbitrary vectors in R2.
u+v=(u1,u2)+(v1,v2)
Step 2: Perform vector addition.
u+v=(u1+v1,u2+v2)
Answer: Since u1+v1 and u2+v2 are real numbers, (u1+v1,u2+v2) is an element of R2. Thus, R2 is closed under vector addition. The other nine axioms can be verified similarly.
:::question type="MCQ" question="Which of the following sets, with standard addition and scalar multiplication, forms a vector space over R?" options=["The set of all 2×2 matrices with integer entries.","The set of all polynomials of degree exactly 3.","The set of all continuous functions f:[0,1]→R.","The set of all 2×2 invertible matrices."] answer="The set of all continuous functions f:[0,1]→R." hint="Check the closure axioms and existence of the zero vector for each option." solution="Step 1: Analyze 'The set of all 2×2 matrices with integer entries'. This set is not closed under scalar multiplication by all real numbers. For example, if A is the matrix
A=(1001)
which has integer entries, then the scalar multiple 21A is
21A=(1/2001/2)
which does not have integer entries. Thus, it is not a vector space over R.
Step 2: Analyze 'The set of all polynomials of degree exactly 3'. This set does not contain the zero vector (the zero polynomial has undefined degree, or degree −∞). Also, it is not closed under addition. For example, (x3+x)+(−x3+1)=x+1, which has degree 1, not 3. Thus, it is not a vector space.
Step 3: Analyze 'The set of all continuous functions f:[0,1]→R'. The sum of two continuous functions is continuous. A scalar multiple of a continuous function is continuous. The zero function f(x)=0 is continuous. The negative of a continuous function is continuous. All other vector space axioms hold for functions. Thus, this set forms a vector space.
Step 4: Analyze 'The set of all 2×2 invertible matrices'. This set does not contain the zero matrix, which is required for a vector space. Also, it is not closed under addition. For example, I is the identity matrix
I=(1001)
which is invertible, and −I is
−I=(−100−1)
which is also invertible. However, their sum I+(−I) is
I+(−I)=(0000)
which is the zero matrix and is not invertible. Thus, it is not a vector space. Answer: \boxed{The set of all continuous functions f:[0,1]→R} " :::
---
---
2. Definition of a Subspace
A subspace W of a vector space V is a subset of V that is itself a vector space under the same operations of vector addition and scalar multiplication defined on V. To verify if a non-empty subset W is a subspace, we only need to check three conditions, often condensed into two.
📖Subspace Test
A non-empty subset W of a vector space V is a subspace if and only if:
The zero vector 0 of V is in W.
For every u,v∈W, u+v∈W (closure under addition).
For every u∈W and scalar c∈R, cu∈W (closure under scalar multiplication).
Alternatively, conditions 2 and 3 can be combined: For every u,v∈W and scalar c∈R, cu+v∈W. This implies both closure conditions and the existence of the zero vector (by choosing c=0).
Quick Example: Determine if W={(x,y)∈R2:x−2y=0} is a subspace of R2.
Step 1: Check if the zero vector is in W.
0=(0,0)
0−2(0)=0
Since 0=0, the zero vector is in W. W is non-empty.
Step 2: Check closure under addition. Let u=(x1,y1) and v=(x2,y2) be in W. This implies x1−2y1=0 and x2−2y2=0.
Step 3: Check closure under scalar multiplication. Let u=(x,y) be in W and c∈R. This implies x−2y=0.
cu=(cx,cy)
We check if cx−2(cy)=0.
cx−2cy=c(x−2y)=c(0)=0
Thus, cu is in W.
Answer: Since all three conditions are satisfied, W is a subspace of R2.
⚠️Common Mistake: Subspace Identification
❌ Assuming any subset satisfying a linear equation is a subspace, especially if the equation is non-homogeneous (e.g., x+y=1). ✅ A set defined by a linear equation ax+by+cz=k is a subspace if and only if k=0 (i.e., it passes through the origin).
:::question type="MCQ" question="Which of the following is a subspace of R3?" options=["W=(x,y,z)∈R3:x+4y−10z=−2","W=(x,y,z)∈R3:xy=0","W=(x,y,z)∈R3:2x+3y−4z=0","W=(x,y,z)∈R3:x∈Q"] answer="W=(x,y,z)∈R3:2x+3y−4z=0" hint="Apply the 3-condition subspace test. Pay attention to the zero vector and closure properties." solution="Step 1: Analyze W=(x,y,z)∈R3:x+4y−10z=−2. The zero vector (0,0,0) does not satisfy the condition 0+4(0)−10(0)=−2, as 0=−2. Therefore, W is not a subspace.
Step 2: Analyze W=(x,y,z)∈R3:xy=0. The zero vector (0,0,0) satisfies 0⋅0=0. Consider closure under addition. Let u=(1,0,0) and v=(0,1,0). Both are in W since 1⋅0=0 and 0⋅1=0. However, u+v=(1,1,0). For this vector, x⋅y=1⋅1=1=0. So u+v is not in W. Thus, W is not closed under addition and is not a subspace.
Step 3: Analyze W=(x,y,z)∈R3:2x+3y−4z=0.
Zero vector:2(0)+3(0)−4(0)=0. The zero vector is in W.
Closure under addition: Let u=(x1,y1,z1) and v=(x2,y2,z2) be in W.
Then 2x1+3y1−4z1=0 and 2x2+3y2−4z2=0. Their sum is u+v=(x1+x2,y1+y2,z1+z2). We check: 2(x1+x2)+3(y1+y2)−4(z1+z2)=(2x1+3y1−4z1)+(2x2+3y2−4z2)=0+0=0. So u+v is in W.
Closure under scalar multiplication: Let u=(x,y,z) be in W and c∈R.
Then 2x+3y−4z=0. The scalar multiple is cu=(cx,cy,cz). We check: 2(cx)+3(cy)−4(cz)=c(2x+3y−4z)=c(0)=0. So cu is in W. Since all conditions are met, W is a subspace.
Step 4: Analyze W=(x,y,z)∈R3:x∈Q. The zero vector (0,0,0) is in W since 0∈Q. Consider closure under scalar multiplication. Let u=(1,0,0). This is in W since 1∈Q. Let c=2. Then cu=(2,0,0). Here, 2∈/Q. So cu is not in W. Thus, W is not closed under scalar multiplication and is not a subspace." :::
---
3. Intersection and Union of Subspaces
We examine how set operations interact with the subspace property.
3.1. Intersection of Subspaces
The intersection of any two subspaces of a vector space is always a subspace itself. This is a fundamental property.
❗Intersection of Subspaces
If W1 and W2 are subspaces of a vector space V, then their intersection W1∩W2 is also a subspace of V.
Quick Example: Let W1={(x,y,z)∈R3:x=0} (the yz-plane) and W2={(x,y,z)∈R3:y=0} (the xz-plane). Both are subspaces of R3. We find their intersection W1∩W2.
Step 1: Define the intersection. A vector (x,y,z) is in W1∩W2 if it satisfies both conditions: x=0 and y=0.
W1∩W2={(x,y,z)∈R3:x=0 and y=0}
Step 2: Check the subspace conditions for W1∩W2.
Zero vector: For (0,0,0), x=0 and y=0 are satisfied. So 0∈W1∩W2.
Closure under addition: Let u=(0,0,z1) and v=(0,0,z2) be in W1∩W2.
u+v=(0+0,0+0,z1+z2)=(0,0,z1+z2)
This vector satisfies x=0 and y=0, so it is in W1∩W2.
Closure under scalar multiplication: Let u=(0,0,z) be in W1∩W2 and c∈R.
cu=(c⋅0,c⋅0,cz)=(0,0,cz)
This vector satisfies x=0 and y=0, so it is in W1∩W2.
Answer:W1∩W2 is the z-axis, which is a subspace of R3.
:::question type="MCQ" question="Let W1 and W2 be any two subspaces of a vector space V. Which of the following statements is true regarding their intersection and union?" options=["W1∪W2 is always a subspace, but W1∩W2 is not always a subspace.","W1∩W2 is always a subspace, and W1∪W2 is always a subspace.","W1∩W2 is always a subspace, but W1∪W2 is not always a subspace.","NeitherW1∩W2 nor W1∪W2 are always subspaces."] answer="W1∩W2 is always a subspace, but W1∪W2 is not always a subspace." hint="Recall the properties of subspace intersection and union. For the union, consider a counterexample." solution="Step 1: Analyze the intersection W1∩W2. We know that if W1 and W2 are subspaces of V, then W1∩W2 is always a subspace of V. This is a standard theorem in linear algebra.
Step 2: Analyze the union W1∪W2. The union of two subspaces is not generally a subspace. Consider a counterexample: Let V=R2. Let W1={(x,0):x∈R} (the x-axis) and W2={(0,y):y∈R} (the y-axis). Both W1 and W2 are subspaces of R2. Their union is W1∪W2={(x,y):x=0 or y=0}. Consider u=(1,0)∈W1∪W2 and v=(0,1)∈W1∪W2. Their sum is u+v=(1,1). For (1,1), neither x=0 nor y=0 is true. Thus, (1,1)∈/W1∪W2. Therefore, W1∪W2 is not closed under addition, and hence is not a subspace.
Step 3: Conclude. W1∩W2 is always a subspace, but W1∪W2 is not always a subspace. This matches the third option." :::
3.2. Union of Subspaces
The union of two subspaces W1 and W2 is generally not a subspace. It is a subspace if and only if one subspace is contained within the other (i.e., W1⊆W2 or W2⊆W1).
4. Linear Combinations and Span
A vector v is a linear combination of vectors v1,…,vk if it can be expressed as a sum of scalar multiples of these vectors. The set of all possible linear combinations of a set of vectors is called their span.
📖Linear Combination and Span
A vector v∈V is a linear combination of vectors v1,…,vk∈V if there exist scalars c1,…,ck∈R such that:
v=c1v1+c2v2+…+ckvk
The span of a set of vectors S={v1,…,vk}, denoted span(S) or span{v1,…,vk}, is the set of all possible linear combinations of these vectors. The span of any non-empty set of vectors in V is always a subspace of V.
Quick Example: Determine if v=(7,4,−3) is in the span of S={v1,v2}, where v1=(1,2,−1) and v2=(2,−1,3).
Step 1: Set up the linear combination equation. We need to find scalars c1,c2 such that v=c1v1+c2v2.
(7,4,−3)=c1(1,2,−1)+c2(2,−1,3)
This leads to a system of linear equations:
c1+2c22c1−c2−c1+3c2=7=4=−3
Step 2: Solve the system of equations. From the first equation, c1=7−2c2. Substitute into the second equation:
The third equation requires −c1+3c2=−3, but we found it equals 3. Since 3=−3, the system is inconsistent.
Answer: The vector v is not in the span of S.
:::question type="NAT" question="Let v1=(1,0,1), v2=(0,1,1), and v3=(1,1,0). If w=(2,3,5) is written as a linear combination c1v1+c2v2+c3v3, what is the value of c1+c2+c3?" answer="5" hint="Set up a system of linear equations and solve for c1,c2,c3. Then sum them." solution="Step 1: Set up the system of linear equations from w=c1v1+c2v2+c3v3.
(2,3,5)=c1(1,0,1)+c2(0,1,1)+c3(1,1,0)
This yields:
c1+c3c2+c3c1+c2=2=3=5
Step 2: Solve the system. From the third equation, c1=5−c2. Substitute into the first equation:
(5−c2)+c3=2⟹−c2+c3=−3
Now we have a system of two equations with c2 and c3:
c2+c3−c2+c3=3=−3
Add these two equations:
(c2+c3)+(−c2+c3)2c3=3+(−3)=0⟹c3=0
Substitute c3=0 into c2+c3=3:
c2+0=3⟹c2=3
Substitute c2=3 into c1+c2=5:
c1+3=5⟹c1=2
So, c1=2,c2=3,c3=0.
Step 3: Calculate c1+c2+c3.
c1+c2+c3=2+3+0=5
" :::
5. Linear Independence and Dependence
The concept of linear independence is central to defining a basis for a vector space.
📖Linear Independence/Dependence
A set of vectors {v1,…,vk} in a vector space V is linearly independent if the only solution to the vector equation:
c1v1+c2v2+…+ckvk=0
is the trivial solution c1=c2=…=ck=0. If there exists at least one non-trivial solution (i.e., not all ci are zero), the set of vectors is linearly dependent.
Quick Example: Determine if the vectors v1=(1,2,3), v2=(0,1,2), v3=(−1,0,1) are linearly independent in R3.
Step 1: Set up the equation c1v1+c2v2+c3v3=0.
c1(1,2,3)+c2(0,1,2)+c3(−1,0,1)=(0,0,0)
This forms a homogeneous system of linear equations:
c1−c32c1+c23c1+2c2+c3=0=0=0
Step 2: Form the augmented matrix and reduce it to row echelon form.
Step 3: Interpret the result. The system has infinitely many solutions because there is a free variable (c3). For example, if we let c3=t, then c2=−2t and c1=t. A non-trivial solution exists (e.g., t=1⟹c1=1,c2=−2,c3=1).
For n vectors in Rn, they are linearly independent if and only if the determinant of the matrix formed by these vectors as columns (or rows) is non-zero. If the determinant is zero, they are linearly dependent. This is a quick test for square matrices.
:::question type="MCQ" question="Consider the vectors u=(1,2,3), v=(0,1,1), and w=(2,5,7) in R3. Which of the following statements is true?" options=["The vectors are linearly independent.","The vectors are linearly dependent, and w is a linear combination of u and v.","The vectors are linearly dependent, but w is not a linear combination of u and v.","The vectors span R3 but are not linearly independent."] answer="The vectors are linearly dependent, and w is a linear combination of u and v." hint="Form a matrix with the vectors as columns and compute its determinant or perform row reduction. If dependent, find the linear combination." solution="Step 1: Check for linear independence using the determinant. Form a matrix A with the vectors as columns:
Since det(A)=0, the vectors are linearly dependent. This eliminates the first option.
Step 2: Check if w is a linear combination of u and v. We need to find if there exist scalars c1,c2 such that w=c1u+c2v.
(2,5,7)=c1(1,2,3)+c2(0,1,1)
This gives the system:
c12c1+c23c1+c2=2=5=7
From the first equation, c1=2. Substitute into the second equation:
2(2)+c2=5⟹4+c2=5⟹c2=1
Check with the third equation:
3(2)+1=6+1=7
The values c1=2 and c2=1 satisfy all equations. Thus, w=2u+1v.
Step 3: Conclude. The vectors are linearly dependent, and w is a linear combination of u and v. This matches the second option." :::
---
6. Basis and Dimension
A basis provides a minimal set of vectors that can represent every vector in a vector space uniquely. The number of vectors in a basis defines the dimension of the space.
📖Basis and Dimension
A set of vectors B={v1,…,vn} in a vector space V is a basis for V if:
B is linearly independent.
B spans V (i.e., span(B)=V).
If a vector space V has a basis consisting of n vectors, then n is called the dimension of V, denoted dim(V). If V={0}, its dimension is 0.
Quick Example: Find a basis for the subspace W={(x,y,z)∈R3:x+y−z=0}.
Step 1: Express the vectors in W in parametric form. From the condition x+y−z=0, we can express z in terms of x and y: z=x+y. Any vector in W can be written as:
(x,y,x+y)
We can decompose this vector:
(x,y,x+y)=(x,0,x)+(0,y,y)=x(1,0,1)+y(0,1,1)
Step 2: Identify the spanning vectors. The vectors (1,0,1) and (0,1,1) span W. Let B={(1,0,1),(0,1,1)}.
Step 3: Check for linear independence of the spanning vectors. Assume c1(1,0,1)+c2(0,1,1)=(0,0,0).
(c1,c2,c1+c2)=(0,0,0)
This implies c1=0 and c2=0. Thus, the vectors are linearly independent.
Answer: A basis for W is {(1,0,1),(0,1,1)}, and dim(W)=2.
📐Standard Bases
For Rn: The standard basis is {e1,…,en}, where ei is a vector with 1 in the i-th position and 0 elsewhere.
For Pn (polynomials of degree at most n): The standard basis is {1,x,x2,…,xn}. dim(Pn)=n+1.
For Mm×n(R) (set of m×n matrices): The basis consists of mn matrices, each having a single 1 in one position and 0 elsewhere. dim(Mm×n(R))=mn.
:::question type="MCQ" question="Consider the vector space P2 of all polynomials of degree at most 2. Which of the following sets is a basis for P2?" options=["{1,x,x2,x3}","{x2,x+1,x2−1}","{1,x,x2}","{x2,2x2,3x2}"] answer="{1,x,x2}" hint="A basis must be linearly independent and span the space. The dimension of P2 is 3." solution="Step 1: Determine the dimension of P2. The standard basis for P2 is {1,x,x2}. This set has 3 elements. Therefore, dim(P2)=3. Any basis for P2 must contain exactly 3 linearly independent vectors that span P2.
Step 2: Evaluate option 1: {1,x,x2,x3}. This set has 4 vectors. Since dim(P2)=3, a set of 4 vectors in P2 must be linearly dependent. Also, x3 is not in P2. Thus, this is not a basis.
Step 3: Evaluate option 2: {x2,x+1,x2−1}. This set has 3 vectors. We need to check for linear independence. Assume c1x2+c2(x+1)+c3(x2−1)=0 for all x.
(c1+c3)x2+c2x+(c2−c3)=0
For this to hold for all x, the coefficients must be zero:
c1+c3c2c2−c3=0=0=0
From c2=0 and c2−c3=0, we get c3=0. From c1+c3=0 and c3=0, we get c1=0. Since c1=c2=c3=0 is the only solution, the set is linearly independent. A set of dim(V) linearly independent vectors in V is always a basis. Thus, this is a basis.
Step 4: Evaluate option 3: {1,x,x2}. This is the standard basis for P2. It is linearly independent and spans P2. It is a basis.
Step 5: Evaluate option 4: {x2,2x2,3x2}. This set is linearly dependent because 2x2=2⋅x2 and 3x2=3⋅x2. For example, 2(x2)−(2x2)+0(3x2)=0 is a non-trivial linear combination. Thus, it is not a basis." :::
---
💡Next Up
Proceeding to Linear Dependence and Independence.
---
Part 2: Linear Dependence and Independence
We examine the fundamental concepts of linear dependence and independence, which are crucial for understanding vector spaces and their bases. These concepts enable us to determine whether a set of vectors contains redundant information or forms a minimal set sufficient to describe a subspace. Mastery of these ideas is essential for various problems in linear algebra, including those encountered in competitive examinations.
---
Core Concepts
1. Linear Combination
A vector v is a linear combination of vectors v1,v2,…,vk if it can be expressed as a sum of scalar multiples of these vectors. That is, v=c1v1+c2v2+…+ckvk for some scalars c1,c2,…,ck.
📐Linear Combination
v=c1v1+c2v2+…+ckvk
Where:v,vi are vectors, and ci are scalars.
Quick Example: Determine if v=(7,1,−8) is a linear combination of v1=(1,2,−1) and v2=(2,−3,5).
Step 1: Set up the vector equation. >
c1(1,2,−1)+c2(2,−3,5)=(7,1,−8)
Step 2: Form the system of linear equations. >
c1+2c22c1−3c2−c1+5c2=7=1=−8
Step 3: Solve the system using an augmented matrix. >
The last row indicates 0=−14, which is a contradiction. Therefore, no such scalars c1,c2 exist.
Answer:v is not a linear combination of v1 and v2.
:::question type="MCQ" question="Given vectors u=(1,1,0), v=(0,1,1), and w=(1,0,1), determine the coefficients a,b,c such that au+bv+cw=(2,3,1). Which of the following is correct?" options=["a=2,b=1,c=0","a=1,b=2,c=−1","a=0,b=1,c=2","a=1,b=1,c=1"] answer="a=2,b=1,c=0" hint="Set up a system of linear equations and solve for a,b,c." solution="Step 1: Set up the vector equation and corresponding system of equations. >
a(1,1,0)+b(0,1,1)+c(1,0,1)=(2,3,1)
>
a+ca+bb+c=2=3=1
Step 2: Solve the system. From the first equation, c=2−a. From the second, b=3−a. Substitute these into the third equation: >
(3−a)+(2−a)=1
>
5−2a=1
>
2a=4
>
a=2
Step 3: Find b and c. >
b=3−a=3−2=1
>
c=2−a=2−2=0
The coefficients are a=2,b=1,c=0.
Step 4: Check the options. The provided solution `a=1,b=2,c=−1` is incorrect based on our calculation. Let's re-evaluate the options and the question. If a=1,b=2,c=−1: a+c=1+(−1)=0=2. So this option is incorrect.
Let's re-solve the system carefully. From a+c=2 and a+b=3, we have c=2−a and b=3−a. Substitute into b+c=1: (3−a)+(2−a)=1 5−2a=1 2a=4 a=2 Then b=3−2=1 and c=2−2=0. So (a,b,c)=(2,1,0).
The option "a=2,b=1,c=0" is present as the first option. I will mark that as the correct answer. The previous analysis was correct. Answer: \boxed{a=2, b=1, c=0}"
---
💡Next Up
Proceeding to Basis and Dimension.
---
Part 3: Basis and Dimension
In linear algebra, the concepts of basis and dimension are fundamental for understanding the structure of vector spaces. We define these concepts to precisely characterize the "size" and "orientation" of a vector space, providing a framework for vector representation and analysis. Mastery of these topics is critical for solving problems involving subspaces, linear transformations, and system analysis in various mathematical and applied contexts.
---
Core Concepts
1. Linear Independence
A set of vectors is linearly independent if no vector in the set can be expressed as a linear combination of the others. We formally define this property below.
📖Linear Independence
A set of vectors {v1,v2,…,vk} in a vector space V is linearly independent if the only solution to the vector equation
c1v1+c2v2+⋯+ckvk=0
is c1=c2=⋯=ck=0.
If there exists at least one non-zero ci satisfying the equation, the set is linearly dependent. For vectors in Rn, we can check linear independence by forming a matrix with the vectors as columns and evaluating its rank or determinant.
Quick Example: Determine if the set {(1,2),(3,4)} is linearly independent in R2.
Step 1: Form the linear combination and set it to the zero vector. >
c1(1,2)+c2(3,4)=(0,0)
Step 2: This yields a system of linear equations. >
c1+3c22c1+4c2=0=0
Step 3: Form an augmented matrix and reduce it. >
[123400]R2−2R1[103−200]
Step 4: Solve the system. >
−2c2=0⟹c2=0
>
c1+3(0)=0⟹c1=0
Answer: Since the only solution is c1=0,c2=0, the set is linearly independent.
:::question type="MCQ" question="Consider the set of vectors S={(1,−1,0),(2,1,3),(0,1,1)} in R3. Is S linearly independent?" options=["Yes, it is linearly independent.","No, it is linearly dependent.","It is linearly independent only if the scalar field is C.","The concept of linear independence does not apply to this set."] answer="No, it is linearly dependent." hint="Form a matrix with the vectors as columns and calculate its determinant. If the determinant is zero, the vectors are linearly dependent." solution="Step 1: Form a matrix A with the given vectors as columns. >
A=1−10213011
Step 2: Calculate the determinant of A. >
det(A)=1(1⋅1−1⋅3)−2(−1⋅1−1⋅0)+0(−1⋅3−1⋅0)
>
det(A)=1(1−3)−2(−1−0)+0
>
det(A)=1(−2)−2(−1)
>
det(A)=−2+2
>
det(A)=0
Step 3: Interpret the result. Since det(A)=0, the columns (and thus the vectors in S) are linearly dependent. The correct option is 'No, it is linearly dependent'." :::
---
---
2. Spanning Sets
A set of vectors is a spanning set for a vector space if every vector in that space can be written as a linear combination of the vectors in the set. This signifies that the set "generates" the entire space.
📖Spanning Set
A set of vectors {v1,v2,…,vk} in a vector space V is a spanning set for V if for every vector v∈V, there exist scalars c1,c2,…,ck such that
v=c1v1+c2v2+⋯+ckvk
We denote the span of the set as span{v1,…,vk}.
To check if a set spans Rn, we can determine if the system Ax=b has a solution for all b∈Rn, where A is the matrix with the vectors as columns. This is true if and only if the rank of A is n.
Quick Example: Determine if the set S={(1,0),(0,1),(1,1)} spans R2.
Step 1: Consider an arbitrary vector (x,y)∈R2. We need to find scalars c1,c2,c3 such that:
c1(1,0)+c2(0,1)+c3(1,1)=(x,y)
Step 2: This leads to the system of equations:
c1+c3c2+c3=x=y
Step 3: We can express c1=x−c3 and c2=y−c3. Since we can choose any value for c3 (e.g., c3=0), we can always find c1 and c2 to represent any (x,y).
Answer: Yes, the set S spans R2. For instance, (x,y)=x(1,0)+y(0,1). The inclusion of (1,1) is redundant for spanning R2, but it does not prevent the set from spanning.
:::question type="MCQ" question="Which of the following sets of vectors spans R3?" options=["S1={(1,0,0),(0,1,0)}","S2={(1,1,1),(2,2,2)}","S3={(1,0,0),(0,1,0),(0,0,1)}","S4={(1,0,0),(0,1,0),(1,1,0)}"] answer="S3={(1,0,0),(0,1,0),(0,0,1)}" hint="A set of vectors spans Rn if it contains at least n linearly independent vectors. For R3, we need at least 3 linearly independent vectors." solution="Step 1: Analyze S1={(1,0,0),(0,1,0)}. This set has only two vectors. It can only span a 2-dimensional subspace of R3 (the xy-plane). Thus, it does not span R3.
Step 2: Analyze S2={(1,1,1),(2,2,2)}. These two vectors are linearly dependent (2(1,1,1)=(2,2,2)). They span only a 1-dimensional subspace (a line through the origin). Thus, it does not span R3.
Step 3: Analyze S3={(1,0,0),(0,1,0),(0,0,1)}. This is the standard basis for R3. These three vectors are linearly independent, and any vector (x,y,z) in R3 can be written as x(1,0,0)+y(0,1,0)+z(0,0,1). This set spans R3.
Step 4: Analyze S4={(1,0,0),(0,1,0),(1,1,0)}. The third vector (1,1,0) is a linear combination of the first two: (1,1,0)=1(1,0,0)+1(0,1,0). This set is linearly dependent. It spans the xy-plane, which is a 2-dimensional subspace of R3. Thus, it does not span R3.
The correct option is 'S3={(1,0,0),(0,1,0),(0,0,1)}'." :::
---
3. Basis of a Vector Space
A basis is a fundamental concept that combines both linear independence and spanning properties. It provides a minimal set of vectors that can generate the entire vector space.
📖Basis of a Vector Space
A set of vectors B={v1,v2,…,vn} in a vector space V is a basis for V if:
B is linearly independent.
B spans V.
Every vector space has at least one basis. The standard basis for Rn consists of the vectors e1=(1,0,…,0), e2=(0,1,…,0), ..., en=(0,0,…,1).
Quick Example: Show that the set B={(1,1),(1,−1)} is a basis for R2.
Step 1: Check for linear independence. Form the matrix with vectors as columns and find its determinant.
A=[111−1]
det(A)=(1)(−1)−(1)(1)=−1−1=−2
Step 2: Since det(A)=0, the vectors are linearly independent.
Step 3: Since we have 2 linearly independent vectors in R2, they automatically span R2. (A set of n linearly independent vectors in an n-dimensional space forms a basis).
Answer: The set B={(1,1),(1,−1)} is a basis for R2.
:::question type="MCQ" question="Which of the following sets of vectors forms a basis for R3?" options=["S1={(1,0,0),(0,1,0)}","S2={(1,1,1),(1,2,3),(2,−1,1)}","S3={(1,2,3),(1,3,5),(1,0,1),(2,3,0)}","S4={(1,1,2),(1,2,5),(5,3,4)}"] answer="S2={(1,1,1),(1,2,3),(2,−1,1)}" hint="A basis for R3 must contain exactly three linearly independent vectors. Sets with fewer than three vectors cannot span R3, and sets with more than three vectors must be linearly dependent." solution="Step 1: Analyze each option based on the number of vectors and potential linear independence. * S1={(1,0,0),(0,1,0)}: Contains only two vectors. Cannot span R3. Not a basis. * S3={(1,2,3),(1,3,5),(1,0,1),(2,3,0)}: Contains four vectors. In R3, any set of more than three vectors must be linearly dependent. Not a basis. * S4={(1,1,2),(1,2,5),(5,3,4)}: Contains three vectors. We must check for linear independence.
Step 2: Check linear independence for S2={(1,1,1),(1,2,3),(2,−1,1)}. Form a matrix A and compute its determinant.
A=1111232−11
det(A)=1(2⋅1−(−1)⋅3)−1(1⋅1−(−1)⋅1)+2(1⋅3−2⋅1)
det(A)=1(2+3)−1(1+1)+2(3−2)
det(A)=1(5)−1(2)+2(1)
det(A)=5−2+2=5
Step 3: Since det(A)=5=0, the vectors in S2 are linearly independent. As there are three linearly independent vectors in R3, S2 forms a basis for R3.
Step 4: Check linear independence for S4={(1,1,2),(1,2,5),(5,3,4)}. Form a matrix B and compute its determinant.
B=112125534
det(B)=1(2⋅4−3⋅5)−1(1⋅4−3⋅2)+5(1⋅5−2⋅2)
det(B)=1(8−15)−1(4−6)+5(5−4)
det(B)=1(−7)−1(−2)+5(1)
det(B)=−7+2+5=0
Since det(B)=0, the vectors in S4 are linearly dependent. Not a basis.
The correct option is 'S2={(1,1,1),(1,2,3),(2,−1,1)}'." :::
---
4. Dimension of a Vector Space
The dimension of a vector space is a unique scalar value that quantifies its "size." It is defined as the number of vectors in any basis for that space.
📖Dimension of a Vector Space
The dimension of a vector space V, denoted dim(V), is the number of vectors in any basis for V. If V={0}, then dim(V)=0. If V cannot be spanned by a finite set of vectors, it is called infinite-dimensional.
The dimension depends critically on the field of scalars. For instance, C is a 1-dimensional vector space over C (basis {1}), but a 2-dimensional vector space over R (basis {1,i}).
Quick Example: What is the dimension of the vector space P2, the space of all polynomials of degree at most 2, over R?
Step 1: Identify a basis for P2. Any polynomial p(x)=ax2+bx+c can be written as a linear combination of 1,x,x2.
p(x)=c⋅1+b⋅x+a⋅x2
Step 2: Verify linear independence of {1,x,x2}. If c1⋅1+c2⋅x+c3⋅x2=0 for all x, then c1=c2=c3=0.
Step 3: Count the number of vectors in the basis. The basis {1,x,x2} contains 3 vectors.
Answer:dim(P2)=3.
:::question type="MCQ" question="Match List I with List II for the dimensions of the given vector spaces over the specified fields.
List IA.B.C.D.Vector SpacesR over RC over RR3 over RC2 over RList III.II.III.IV.Dimensions4321
" options=["A-IV, B-III, C-II, D-I","A-I, B-IV, C-II, D-III","A-II, B-I, C-III, D-IV","A-I, B-II, C-III, D-IV"] answer="A-IV, B-III, C-II, D-I" hint="The dimension of a vector space depends on the field of scalars. A basis for C over R is {1,i}. A basis for C2 over R would require vectors that are combinations of complex numbers with real coefficients." solution="Step 1: Determine the dimension of R over R.
A basis for R over R is {1}. There is 1 vector. So, dim(R over R)=1. (A-IV)
Step 2: Determine the dimension of C over R. A basis for C over R is {1,i}. Any z=a+bi∈C can be written as a⋅1+b⋅i where a,b∈R. There are 2 vectors. So, dim(C over R)=2. (B-III)
Step 3: Determine the dimension of R3 over R. A standard basis for R3 over R is {(1,0,0),(0,1,0),(0,0,1)}. There are 3 vectors. So, dim(R3 over R)=3. (C-II)
Step 4: Determine the dimension of C2 over R. Any vector in C2 is of the form (z1,z2) where z1,z2∈C. We can write z1=a1+b1i and z2=a2+b2i for a1,b1,a2,b2∈R. So,
A basis for C2 over R is {(1,0),(i,0),(0,1),(0,i)}. There are 4 vectors. So, dim(C2 over R)=4. (D-I)
Step 5: Match the lists. A-IV, B-III, C-II, D-I. The correct option is 'A-IV, B-III, C-II, D-I'." :::
---
---
5. Dimension of Subspaces
A subspace W of a vector space V is itself a vector space. Its dimension is found by determining a basis for W.
📖Dimension of a Subspace
The dimension of a subspace W of a vector space V, denoted dim(W), is the number of vectors in any basis for W. We always have dim(W)≤dim(V).
To find the dimension of a subspace defined by linear equations, we typically solve the system of equations to express some variables in terms of others, thereby identifying free variables that correspond to basis vectors.
Quick Example: Let W={(x,y,z)∈R3:x−y+2z=0}. Find dim(W).
Step 1: Express one variable in terms of the others using the given condition.
x−y+2z=0⟹x=y−2z
Step 2: Write an arbitrary vector in W using the expression from Step 1.
(x,y,z)=(y−2z,y,z)
Step 3: Decompose the vector into a linear combination involving the free variables (y and z).
(y−2z,y,z)=(y,y,0)+(−2z,0,z)
(y−2z,y,z)=y(1,1,0)+z(−2,0,1)
Step 4: The vectors {(1,1,0),(−2,0,1)} form a basis for W. These vectors are linearly independent and span W.
Step 5: Count the number of vectors in the basis. There are 2 vectors.
Answer:dim(W)=2.
:::question type="MCQ" question="If W is a subspace of R3, where W={(a,b,c):a+b+c=0}, then dim(W) is equal to:" options=["2","3","1","0"] answer="2" hint="The equation a+b+c=0 imposes one linear constraint on the vectors in R3. This reduces the number of independent variables by one." solution="Step 1: The subspace W is defined by the equation a+b+c=0. We can express one variable in terms of the others, for example, a=−b−c.
Step 2: An arbitrary vector (a,b,c) in W can be written as:
(a,b,c)=(−b−c,b,c)
Step 3: Decompose this vector based on the free variables b and c:
(−b−c,b,c)=(−b,b,0)+(−c,0,c)
(−b−c,b,c)=b(−1,1,0)+c(−1,0,1)
Step 4: The set of vectors {(−1,1,0),(−1,0,1)} forms a basis for W. These two vectors are linearly independent (one is not a scalar multiple of the other) and span W.
Step 5: The number of vectors in the basis is 2. Therefore, dim(W)=2. The correct option is '2'." :::
---
6. Coordinate Vectors
Once a basis is established for a vector space, any vector in that space can be uniquely expressed as a linear combination of the basis vectors. The coefficients in this linear combination form the coordinate vector of the vector relative to that basis.
📖Coordinate Vector
Let B={v1,v2,…,vn} be an ordered basis for a vector space V. For any vector v∈V, there exist unique scalars c1,c2,…,cn such that v=c1v1+c2v2+⋯+cnvn. The coordinate vector of v relative to B is denoted by [v]B and is given by:
[v]B=c1c2⋮cn
Quick Example: Let B={(1,1),(1,−1)} be an ordered basis for R2. Find the coordinate vector of v=(5,1) relative to B.
Step 1: Set up the linear combination.
c1(1,1)+c2(1,−1)=(5,1)
Step 2: Form the system of equations.
c1+c2c1−c2=5=1
Step 3: Solve the system. Adding the two equations yields 2c1=6⟹c1=3. Substituting c1=3 into the first equation gives 3+c2=5⟹c2=2.
Answer: The coordinate vector is [v]B=[32].
:::question type="MCQ" question="Let B={(1,2,0),(0,1,1),(1,0,−1)} be an ordered basis for R3. Find the coordinate vector of v=(2,4,1) relative to B." options=["121","211","112","221"] answer="121" hint="Set up a system of linear equations c1v1+c2v2+c3v3=v and solve for c1,c2,c3. This can be done using an augmented matrix." solution="Step 1: We need to find scalars c1,c2,c3 such that:
c1(1,2,0)+c2(0,1,1)+c3(1,0,−1)=(2,4,1)
Step 2: This forms the following system of linear equations:
c1+c32c1+c2c2−c3=2=4=1
Step 3: Form the augmented matrix and reduce it.
12001110−1241
R2←R2−2R1
1000111−2−1201
R3←R3−R2
1000101−21201
Step 4: Solve the system using back substitution.
c3=1
c2−2c3=0⟹c2−2(1)=0⟹c2=2
c1+c3=2⟹c1+1=2⟹c1=1
Answer: The coordinate vector is [v]B=121. The correct option is '121'." :::
---
Advanced Applications
1. Grassmann's Formula (Dimension of Sum and Intersection)
Grassmann's Formula provides a critical relationship between the dimensions of the sum and intersection of two subspaces. This formula is frequently tested in competitive examinations.
📐Grassmann's Formula
Let U and W be finite-dimensional subspaces of a vector space V. Then U+W and U∩W are also finite-dimensional subspaces, and their dimensions are related by:
dim(U+W)=dim(U)+dim(W)−dim(U∩W)
Where: U+W={u+w:u∈U,w∈W} is the sum of subspaces. U∩W is the intersection of subspaces. When to use: To find the dimension of the sum or intersection of subspaces when other dimensions are known.
We also observe that dim(U∩W)≤min(dim(U),dim(W)) and max(dim(U),dim(W))≤dim(U+W)≤dim(V).
Revised Quick Example: Let U and W be distinct 4-dimensional subspaces of a vector space V of dimension 6. Find the possible dimensions of U∩W.
Step 1: We are given dim(V)=6, dim(U)=4, dim(W)=4. Apply Grassmann's Formula: dim(U+W)=dim(U)+dim(W)−dim(U∩W).
dim(U+W)=4+4−dim(U∩W)
dim(U+W)=8−dim(U∩W)
Step 2: Consider the bounds for dim(U+W). Since U+W is a subspace of V, we have dim(U+W)≤dim(V)=6. Also, U⊆U+W, so dim(U+W)≥dim(U)=4. Similarly, dim(U+W)≥dim(W)=4. Thus, 4≤dim(U+W)≤6.
Step 3: Use the bounds of dim(U+W) to find the bounds for dim(U∩W). From dim(U+W)=8−dim(U∩W), we have dim(U∩W)=8−dim(U+W). Maximum value for dim(U∩W): Occurs when dim(U+W) is minimum. If dim(U+W)=4, then dim(U∩W)=8−4=4. Minimum value for dim(U∩W): Occurs when dim(U+W) is maximum. If dim(U+W)=6, then dim(U∩W)=8−6=2.
Step 4: The possible dimensions for U∩W are 2,3,4. However, the question specifies U and W are distinct. If dim(U∩W)=4, then since U∩W⊆U and dim(U∩W)=dim(U), it implies U∩W=U. Similarly, U∩W=W. This would mean U=W, which contradicts the "distinct" condition. Therefore, dim(U∩W) cannot be 4. This implies dim(U+W) cannot be 4 (because if it were, dim(U∩W) would be 4, leading to U=W). So, U=W implies dim(U+W)>max(dim(U),dim(W))=4. Therefore, 5≤dim(U+W)≤6.
Step 5: Recalculate dim(U∩W) based on 5≤dim(U+W)≤6. If dim(U+W)=5, then dim(U∩W)=8−5=3. If dim(U+W)=6, then dim(U∩W)=8−6=2.
Answer: The possible dimensions of U∩W are 2 or 3.
:::question type="MCQ" question="Let U and W be distinct 4-dimensional subspaces of a vector space V of dimension 6. Then the possible dimensions of U∩W are:" options=["1 or 2","exactly 4","3 or 4","2 or 3"] answer="2 or 3" hint="Use Grassmann's formula: dim(U+W)=dim(U)+dim(W)−dim(U∩W). Also, consider the bounds for dim(U+W) and dim(U∩W), specifically that U=W implies dim(U+W)>max(dim(U),dim(W))." solution="Step 1: We are given: dim(V)=6 dim(U)=4 dim(W)=4 U and W are distinct subspaces.
Step 2: Apply Grassmann's Formula:
dim(U+W)=dim(U)+dim(W)−dim(U∩W)
dim(U+W)=4+4−dim(U∩W)
dim(U+W)=8−dim(U∩W)
Step 3: Determine the bounds for dim(U+W). Since U+W is a subspace of V, its dimension cannot exceed dim(V):
dim(U+W)≤dim(V)=6
Also, U and W are subspaces of U+W, so:
dim(U+W)≥dim(U)=4
dim(U+W)≥dim(W)=4
Combining these, we have 4≤dim(U+W)≤6.
Step 4: Account for the condition that U and W are distinct. If dim(U+W)=4, then from Grassmann's formula, dim(U∩W)=8−4=4. If dim(U∩W)=4, then since U∩W⊆U and dim(U∩W)=dim(U), it implies U∩W=U. Similarly, U∩W=W. This means U=W. However, the problem states U and W are distinct. Therefore, dim(U∩W) cannot be 4. This implies dim(U+W) cannot be 4. Thus, dim(U+W) must be strictly greater than max(dim(U),dim(W)).
4<dim(U+W)≤6
This means dim(U+W) can be 5 or 6.
Step 5: Calculate the possible dimensions of U∩W using these values. Case 1: If dim(U+W)=5:
dim(U∩W)=8−5=3
Case 2: If dim(U+W)=6:
dim(U∩W)=8−6=2
The possible dimensions of U∩W are 2 or 3. The correct option is '2 or 3'." :::
---
2. Change of Basis (Transition Matrix)
When we change from one ordered basis to another, the coordinate vector of a given vector changes. A transition matrix facilitates this transformation.
📖Transition Matrix
Let B={b1,…,bn} and C={c1,…,cn} be two ordered bases for a vector space V. The transition matrix from B to C, denoted PC←B, is an n×n matrix such that for any vector v∈V:
[v]C=PC←B[v]B
The columns of PC←B are the coordinate vectors of the basis vectors in B relative to the basis C:
PC←B=[[b1]C[b2]C…[bn]C]
To find PC←B, we form the augmented matrix [C∣B] and row reduce it to [I∣PC←B].
Quick Example: Let B={(1,0),(0,1)} be the standard basis and C={(1,1),(1,−1)} be another basis for R2. Find the transition matrix PC←B.
Step 1: Form the augmented matrix [C∣B]. >
[111−11001]
Step 2: Row reduce the left side (matrix C) to the identity matrix. >
R2−R1→R2
>
[101−21−101]
>
−21R2→R2
>
[10111210−21]
>
R1−R2→R1
>
[1001212121−21]
Answer: The transition matrix is PC←B=[212121−21].
:::question type="MCQ" question="Let B={b1,b2}={(1,2),(2,1)} and C={c1,c2}={(1,0),(0,1)} be two ordered bases for R2. Find the transition matrix PC←B." options=["[1221]","[−1/32/32/3−1/3]","[1001]","[2112]"] answer="[1221]" hint="The transition matrix PC←B has columns that are the coordinate vectors of b1 and b2 with respect to C. Since C is the standard basis, these coordinate vectors are simply the vectors b1 and b2 themselves." solution="Step 1: We need to find PC←B, which means expressing b1 and b2 as linear combinations of c1 and c2. The basis C={(1,0),(0,1)} is the standard basis for R2. For any vector v=(x,y), its coordinate vector relative to the standard basis is simply [xy].
Step 2: Find [b1]C: b1=(1,2)=1⋅(1,0)+2⋅(0,1). So, [b1]C=[12].
Step 3: Find [b2]C: b2=(2,1)=2⋅(1,0)+1⋅(0,1). So, [b2]C=[21].
Step 4: Construct the transition matrix PC←B using these coordinate vectors as columns. >
While primarily a theorem about linear transformations, the Rank-Nullity Theorem directly relates the dimension of the image (rank) and the dimension of the kernel (nullity) of a linear transformation, which are subspaces. It is a fundamental result in dimension theory.
📐Rank-Nullity Theorem
Let T:V→W be a linear transformation from an n-dimensional vector space V to a vector space W. Then:
dim(ker(T))+dim(Im(T))=dim(V)
Where: ker(T)={v∈V:T(v)=0W} is the kernel (null space) of T. dim(ker(T)) is the nullity of T. Im(T)={T(v):v∈V} is the image (range) of T. dim(Im(T)) is the rank of T. When to use: To find the dimension of the kernel or image when the other dimension and the domain's dimension are known. It connects the dimensions of subspaces generated by a linear map.
Quick Example: Let T:R3→R2 be a linear transformation defined by T(x,y,z)=(x+y,y−z). Find the nullity of T if its rank is 2.
Step 1: Identify the dimension of the domain space. Here, V=R3, so dim(V)=3.
Step 2: We are given that the rank of T, dim(Im(T)), is 2.
Step 3: Apply the Rank-Nullity Theorem. >
dim(ker(T))+dim(Im(T))=dim(V)
>
dim(ker(T))+2=3
Step 4: Solve for dim(ker(T)). >
dim(ker(T))=3−2=1
Answer: The nullity of T is 1.
:::question type="NAT" question="A linear transformation T:P3→R4 is defined such that its image has dimension 3. What is the dimension of the kernel of T?" answer="1" hint="Recall the Rank-Nullity Theorem. The domain space is P3, the space of polynomials of degree at most 3. Determine its dimension first." solution="Step 1: Determine the dimension of the domain space P3. A basis for P3 is {1,x,x2,x3}. This basis contains 4 vectors. Therefore, dim(P3)=4.
Step 2: We are given that the dimension of the image of T is 3. So, dim(Im(T))=3.
Step 3: Apply the Rank-Nullity Theorem: >
dim(ker(T))+dim(Im(T))=dim(P3)
>
dim(ker(T))+3=4
Step 4: Solve for dim(ker(T)). >
dim(ker(T))=4−3=1
Answer: \boxed{1}" :::
---
Problem-Solving Strategies
💡CUET PG Strategy: Subspace Dimensions
For subspaces defined by linear equations in Rn, the dimension of the subspace is n−k, where k is the number of linearly independent linear equations defining the subspace. This is equivalent to finding the number of free variables in the system.
💡CUET PG Strategy: Basis Verification
To check if a set of n vectors forms a basis for Rn:
Form a matrix A with the vectors as columns (or rows).
Calculate det(A). If det(A)=0, the vectors are linearly independent, and thus form a basis. If det(A)=0, they are linearly dependent and do not form a basis.
If the number of vectors is not n, it cannot be a basis for Rn.
💡CUET PG Strategy: Grassmann's Formula Bounds
When dealing with dim(U∩W) and dim(U+W): dim(U∩W) ranges from max(0,dim(U)+dim(W)−dim(V)) to min(dim(U),dim(W)). dim(U+W) ranges from max(dim(U),dim(W)) to min(dim(V),dim(U)+dim(W)). Remember to consider if the subspaces are distinct; if U=W, then dim(U∩W)<min(dim(U),dim(W)).
---
Common Mistakes
⚠️Common Mistake: Scalar Field
❌ Assuming the dimension of a vector space is fixed regardless of the scalar field. For example, dim(C) is always 1. ✅ The dimension depends on the scalar field. dim(C over C)=1, but dim(C over R)=2. Always specify or infer the scalar field.
⚠️Common Mistake: Basis Size
❌ Assuming any set of n vectors in an n-dimensional space is a basis. ✅ A set of n vectors in an n-dimensional space must also be linearly independent (or span the space) to be a basis. For example, {(1,0),(2,0)} in R2 has two vectors but is not a basis as they are linearly dependent.
⚠️Common Mistake: Intersection of Subspaces
❌ Forgetting the "distinct" condition when applying Grassmann's formula, which can affect the upper bound of dim(U∩W). ✅ If U and W are distinct, then U∩W cannot be equal to U or W, so dim(U∩W)<min(dim(U),dim(W)). This restricts the possible values.
---
Practice Questions
:::question type="MCQ" question="For what value(s) of k the set of vectors {(1,k,5),(1,−3,2),(2,−1,1)} form a basis in R3?" options=["k=8","k=−8","k=−8","k=0"] answer="k=−8" hint="For three vectors to form a basis in R3, they must be linearly independent. This means the determinant of the matrix formed by these vectors must be non-zero." solution="Step 1: Form a matrix A with the given vectors as columns (or rows).
A=1k51−322−11
Step 2: For the vectors to form a basis, they must be linearly independent, which implies det(A)=0. Calculate the determinant of A.
Step 3: Set the determinant to be non-zero to find the condition on k.
3k+24=0
3k=−24
k=−8
Answer: k=−8" :::
:::question type="MCQ" question="Let V and W be the subspaces of R4 defined as V={(a,b,c,d):b−5c+2d=0}, W={(a,b,c,d):a−b=0}. Then the dimension of V∩W is:" options=["1","2","3","4"] answer="2" hint="To find the dimension of V∩W, we need to find the basis for the vectors that satisfy the conditions for both V and W. This means solving the combined system of linear equations." solution="Step 1: For a vector (a,b,c,d) to be in V∩W, it must satisfy both conditions:
b−5c+2d=0
a−b=0⟹a=b
Step 2: Substitute a=b into the first equation (it doesn't change it, as a is not in the first equation). We have the system: a−b=0 b−5c+2d=0 This is a system of 2 linearly independent equations in 4 variables.
Step 3: The number of free variables is 4−(number of linearly independent equations)=4−2=2. Each free variable corresponds to a basis vector.
Step 4: To find a basis, we can choose c and d as free variables. From a=b, we have a=b. From b−5c+2d=0, we have b=5c−2d. So, a=5c−2d. An arbitrary vector in V∩W is (a,b,c,d)=(5c−2d,5c−2d,c,d).
(5c−2d,5c−2d,c,d)=c(5,5,1,0)+d(−2,−2,0,1)
The basis is {(5,5,1,0),(−2,−2,0,1)}. These vectors are linearly independent.
Step 5: The number of vectors in the basis is 2. Therefore, dim(V∩W)=2. Answer: 2" :::
:::question type="MCQ" question="Let U={(x,y,z)∈R3:x−y=0} and W={(x,y,z)∈R3:y+z=0}. Which of the following statements about U and W is true?" options=["dim(U)=1 and dim(W)=1","dim(U)=2 and dim(W)=2","dim(U∩W)=1 and dim(U+W)=3","dim(U∩W)=2 and dim(U+W)=2"] answer="dim(U∩W)=1 and dim(U+W)=3" hint="First, find the dimensions of U and W individually. Then, find the conditions for U∩W and determine its dimension. Finally, use Grassmann's formula to find dim(U+W)." solution="Step 1: Find dim(U). U={(x,y,z)∈R3:x−y=0}. This implies x=y. An arbitrary vector in U is (x,x,z)=x(1,1,0)+z(0,0,1). A basis for U is {(1,1,0),(0,0,1)}. These are linearly independent. Thus, dim(U)=2.
Step 2: Find dim(W). W={(x,y,z)∈R3:y+z=0}. This implies z=−y. An arbitrary vector in W is (x,y,−y)=x(1,0,0)+y(0,1,−1). A basis for W is {(1,0,0),(0,1,−1)}. These are linearly independent. Thus, dim(W)=2.
Step 3: Find dim(U∩W). A vector (x,y,z) is in U∩W if it satisfies both x−y=0 and y+z=0. So, x=y and z=−y. An arbitrary vector in U∩W is (y,y,−y)=y(1,1,−1). A basis for U∩W is {(1,1,−1)}. This is a single non-zero vector. Thus, dim(U∩W)=1.
Step 4: Find dim(U+W) using Grassmann's Formula.
dim(U+W)=dim(U)+dim(W)−dim(U∩W)
dim(U+W)=2+2−1
dim(U+W)=3
Step 5: Combine the results. dim(U)=2, dim(W)=2, dim(U∩W)=1, dim(U+W)=3. The statement 'dim(U∩W)=1 and dim(U+W)=3' is true. Answer: dim(U∩W)=1 and dim(U+W)=3" :::
:::question type="NAT" question="Let V=M2×2(R) be the vector space of 2×2 matrices with real entries. Let S={A∈V:AT=A} be the subspace of symmetric matrices. What is dim(S)?" answer="3" hint="A symmetric matrix is one where A=AT. Write out the general form of a 2×2 symmetric matrix and find a basis for it." solution="Step 1: Write the general form of a 2×2 matrix A.
A=[acbd]
Step 2: Apply the condition for a symmetric matrix, AT=A.
AT=[abcd]
So,
AT=A⟹[abcd]=[acbd]
This implies c=b.
Step 3: Write the general form of a symmetric matrix in S.
A=[abbd]
Step 4: Decompose this matrix into a linear combination of basis matrices.
[abbd]=a[1000]+b[0110]+d[0001]
The set of matrices
{[1000],[0110],[0001]}
forms a basis for S. These matrices are linearly independent and span S.
Step 5: Count the number of matrices in the basis. There are 3 matrices in the basis. Therefore, dim(S)=3. Answer: 3" :::
:::question type="MCQ" question="Let P2(R) be the vector space of polynomials of degree at most 2 with real coefficients. Consider the set S={x2+1,x−1,x+2}. Which of the following is true about S?" options=["S is linearly dependent and spans P2(R).","S is linearly independent but does not span P2(R).","S is a basis for P2(R).","S is linearly dependent and does not span P2(R). "] answer="S is a basis for P2(R)." hint="The dimension of P2(R) is 3. A set of 3 polynomials will form a basis if they are linearly independent. To check linear independence, set a linear combination to the zero polynomial and solve for the coefficients." solution="Step 1: Determine the dimension of the vector space P2(R). The standard basis for P2(R) is {1,x,x2}. Thus, dim(P2(R))=3. The set S contains 3 vectors (polynomials), so it could potentially be a basis if it is linearly independent.
Step 2: Check for linear independence of S={x2+1,x−1,x+2}. Set a linear combination to the zero polynomial:
c1(x2+1)+c2(x−1)+c3(x+2)=0
Rearrange by powers of x:
c1x2+(c2+c3)x+(c1−c2+2c3)=0
For this polynomial to be the zero polynomial, all coefficients must be zero:
c1=0 (coefficient of x2)
c2+c3=0 (coefficient of x)
c1−c2+2c3=0 (constant term)
Step 3: Solve the system of equations. From (1), c1=0. Substitute c1=0 into (3):
−c2+2c3=0
Now we have a system for c2,c3:
c2+c3−c2+2c3=0=0
Adding the two equations: (c2+c3)+(−c2+2c3)=0+0⟹3c3=0⟹c3=0. Substitute c3=0 into c2+c3=0⟹c2+0=0⟹c2=0. So, the only solution is c1=0,c2=0,c3=0.
Step 4: Conclude linear independence and basis status. Since the only solution is the trivial one, the set S is linearly independent. As S contains 3 linearly independent vectors in a 3-dimensional space (P2(R)), S forms a basis for P2(R). Answer: S is a basis for P2(R)" :::
---
Summary
❗Key Formulas & Takeaways
| # | Formula/Concept | Expression | |---|----------------|------------| | 1 | Linear Independence | c1v1+⋯+ckvk=0⟹ci=0 | | 2 | Basis Definition | Linearly Independent + Spanning Set | | 3 | Dimension | Number of vectors in any basis | | 4 | Subspace Dimension | dim(W)=n−k (for k independent equations in Rn) | | 5 | Grassmann's Formula | dim(U+W)=dim(U)+dim(W)−dim(U∩W) | | 6 | Rank-Nullity Theorem | dim(ker(T))+dim(Im(T))=dim(V) | | 7 | Dimension over Field | dim(Cn over R)=2n |
---
What's Next?
💡Continue Learning
This topic connects to:
Linear Transformations: Basis and dimension are essential for understanding the domain, codomain, kernel, and image of linear transformations. The Rank-Nullity Theorem directly applies.
Eigenvalues and Eigenvectors: Eigenvectors form special bases that simplify the representation of linear transformations, particularly in diagonalization.
Inner Product Spaces: Orthogonal and orthonormal bases provide a powerful framework for analysis in inner product spaces, extending the concepts of length and angle.
Chapter Summary
❗Vector Spaces — Key Points
A vector spaceV over a field F is a set equipped with vector addition and scalar multiplication satisfying specific axioms. A subspaceW of V is a subset that is itself a vector space under the same operations, requiring closure under addition and scalar multiplication, and containing the zero vector. A linear combination of vectors v1,…,vk is an expression c1v1+…+ckvk. The span of a set of vectors S, denoted span(S), is the set of all possible linear combinations of vectors in S, which always forms a subspace. A set of vectors {v1,…,vk} is linearly independent if the only solution to c1v1+…+ckvk=0 is c1=…=ck=0. Otherwise, the set is linearly dependent. A basis for a vector space V is a set of vectors that is both linearly independent and spans V. Every vector in V can be uniquely expressed as a linear combination of basis vectors. The dimension of a vector space V, denoted dim(V), is the number of vectors in any basis for V. This number is unique for any given vector space. An ordered basisB={v1,…,vn} allows for unique representation of any vector v∈V as v=c1v1+…+cnvn. The coordinate vector of v with respect to B is [v]B=(c1,…,cn)T.
---
Chapter Review Questions
:::question type="MCQ" question="Which of the following sets is NOT a subspace of R3?" options=["{(x,y,z)∈R3:x+2y−z=0}","{(x,y,z)∈R3:x=y=z}","{(x,y,z)∈R3:x=1}","{(x,y,z)∈R3:z=0}"] answer="{(x,y,z)∈R3:x=1}" hint="A subspace must contain the zero vector and be closed under scalar multiplication and vector addition. Consider if the zero vector (0,0,0) is in each set." solution="For a set to be a subspace, it must contain the zero vector (0,0,0). The set {(x,y,z)∈R3:x=1} requires the first component to be 1, thus it does not contain (0,0,0). Therefore, it cannot be a subspace. Answer: {(x,y,z)∈R3:x=1}" :::
:::question type="NAT" question="Consider the vectors v1=(1,0,1), v2=(0,1,1), and v3=(2,−1,1) in R3. If v3 is a linear combination of v1 and v2 such that v3=av1+bv2, what is the value of a+b?" answer="1" hint="Set up a system of linear equations by equating components and solve for a and b." solution="We need to find a and b such that (2,−1,1)=a(1,0,1)+b(0,1,1). This gives the system of equations: a=2 (from the first component) b=−1 (from the second component) a+b=1 (from the third component) Substituting a=2 and b=−1 into the third equation: 2+(−1)=1, which is consistent. Thus, a=2 and b=−1. The value of a+b is 2+(−1)=1. Answer: 1" :::
:::question type="MCQ" question="Let P2(x) be the vector space of polynomials of degree at most 2. Which of the following sets is a basis for P2(x)?" options=["{1,x,x2,x3}","{1,x,x2}","{1+x,x+x2,1−x2}","{x,x2}"] answer="{1,x,x2}" hint="A basis must be linearly independent and span the space. The dimension of P2(x) is 3." solution="The standard basis for P2(x) is {1,x,x2}, which consists of 3 linearly independent polynomials that span P2(x). Option A has 4 elements, making it linearly dependent in P2(x). Option C: 1+x,x+x2,1−x2. Let's check for linear dependence: c1(1+x)+c2(x+x2)+c3(1−x2)=0. Rearranging by powers of x: (c1+c3)+(c1+c2)x+(c2−c3)x2=0. This gives the system: c1+c3=0 c1+c2=0 c2−c3=0 From the first equation, c3=−c1. From the second equation, c2=−c1. Substitute these into the third equation: (−c1)−(−c1)=0⟹0=0. This means the system has non-trivial solutions (e.g., if c1=1, then c2=−1,c3=−1). So, {1+x,x+x2,1−x2} is linearly dependent and thus NOT a basis. Option D has only 2 elements, so it cannot span P2(x) (dimension is 3). Therefore, the only correct option is {1,x,x2}. Answer: {1,x,x2}" :::
:::question type="NAT" question="What is the dimension of the subspace of R4 defined by the equations x1−x2+x3=0 and x2−x4=0?" answer="2" hint="Find a basis for the subspace by expressing some variables in terms of others using the given equations. The number of free variables will be the dimension." solution="Let the subspace be W={(x1,x2,x3,x4)∈R4:x1−x2+x3=0 and x2−x4=0}. From x2−x4=0, we have x4=x2. From x1−x2+x3=0, we have x1=x2−x3. We can choose x2 and x3 as free variables. Let x2=a and x3=b. Then x1=a−b and x4=a. So, any vector in W can be written as (a−b,a,b,a). This can be decomposed as: (a−b,a,b,a)=a(1,1,0,1)+b(−1,0,1,0). The vectors v1=(1,1,0,1) and v2=(−1,0,1,0) span W. These two vectors are linearly independent (one is not a scalar multiple of the other). Therefore, {v1,v2} forms a basis for W. The dimension of W is the number of vectors in its basis, which is 2. Answer: 2" :::
---
What's Next?
💡Continue Your CUET PG Journey
Having established a strong foundation in vector spaces, you are now well-prepared to delve into Linear Transformations. This critical topic builds directly on the concepts of vector spaces, subspaces, basis, and dimension, exploring mappings between vector spaces. Subsequent studies will often involve Matrices and Linear Operators, understanding how linear transformations can be represented by matrices, and further extending to Eigenvalues and Eigenvectors, which are fundamental for analyzing the behavior of linear transformations and diagonalizing matrices.
🎯 Key Points to Remember
✓Master the core concepts in Vector Spaces before moving to advanced topics
✓Practice with previous year questions to understand exam patterns
✓Review short notes regularly for quick revision before exams