5. (CBSE 2019) Compute the product: 123[234].
Explanation:
Check Order: The first matrix is (3 x 1). The second matrix is (1 x 3). The inner dimensions (1 and 1) match, so the product is defined. The resulting matrix will have the outer dimensions: (3 x 3).
Calculate Each Element: We find the element cij by multiplying the i-th row of the first matrix (a single number) by the j-th column of the second matrix (a single number).
c11=(1)(2)=2
c12=(1)(3)=3
c13=(1)(4)=4
c21=(2)(2)=4
c22=(2)(3)=6
c23=(2)(4)=8
c31=(3)(2)=6
c32=(3)(3)=9
c33=(3)(4)=12
Answer:2463694812
6. (CBSE 2020) If A=[2312] and B=[1−102], find AB.
Explanation:
Check Order: A is 2x2, B is 2x2. The result AB will be 2x2.
Calculate Element (1,1): (Row 1 of A) × (Col 1 of B) = (2)(1)+(1)(−1)=2−1=1
Calculate Element (1,2): (Row 1 of A) × (Col 2 of B) = (2)(0)+(1)(2)=0+2=2
Calculate Element (2,1): (Row 2 of A) × (Col 1 of B) = (3)(1)+(2)(−1)=3−2=1
Calculate Element (2,2): (Row 2 of A) × (Col 2 of B) = (3)(0)+(2)(2)=0+4=4
Answer:AB=[1124]
7. (CBSE 2015) If A=[0110], find A2.
Explanation:
Set up:A2=A⋅A=[0110][0110]
Calculate Element (1,1): (Row 1) × (Col 1) = (0)(0)+(1)(1)=1
Calculate Element (1,2): (Row 1) × (Col 2) = (0)(1)+(1)(0)=0
Calculate Element (2,1): (Row 2) × (Col 1) = (1)(0)+(0)(1)=0
Calculate Element (2,2): (Row 2) × (Col 2) = (1)(1)+(0)(0)=1
Answer:A2=[1001]=I
8. (CBSE 2018) Find the number of all possible matrices of order 3 x 3 with each entry 0 or 1.
Explanation:
Count Elements: A 3x3 matrix has 3×3=9 total positions.
Count Choices: Each of these 9 positions can be filled in one of two ways (either 0 or 1).
Apply Multiplication Principle: The total number of distinct matrices is the product of the number of choices for each position.
Total=2×2×2×2×2×2×2×2×2=29
Answer:29=512.
9. (CBSE 2021) If A=[1324], find A+AT.
Explanation:
Find the Transpose (AT): Interchange rows and columns of A.
AT=[1234]
Add A and AT:A+AT=[1324]+[1234]=[1+13+22+34+4]
Calculate Result:A+AT=[2558] .
Answer:[2558].
10. (CBSE 2016) If f(x)=x2−5x+6, find f(A) if A=[2101].
Explanation:
To find f(A), we replace x with A and the constant 6 with 6I, where I is the 2x2 identity matrix.
f(A)=A2−5A+6I
Set up the Equation:A+AT=I⟹[2cosα002cosα]=[1001]
Solve for α: By equating the diagonal elements, we get 2cosα=1, or cosα=1/2. A valid principal value for α is π/3.
Answer:α=π/3 (or 2nπ±π/3,n∈Z).
12. (CBSE 2020) For what value of x is the matrix A=0−1x10−3−230 a skew-symmetric matrix?
Explanation:
Definition: A matrix is skew-symmetric if AT=−A, which implies aij=−aji for all i,j. Also, all diagonal elements aii must be 0, which is already true for matrix A.
Apply Condition: Let's check the a31 element.
a31=x
a13=−2
The condition is a31=−a13.
Solve:x=−(−2)⟹x=2.
(We can check other elements: a21=−1 and a12=1. a21=−a12 is true. a32=−3 and a23=3. a32=−a23 is true.)
Answer:x=2.
13. (CBSE 2018) If A=[32x+3x−1x+2] is a symmetric matrix, find the value of x.
Explanation:
Definition: A matrix A is symmetric if AT=A, which implies aij=aji for all i,j. The diagonal elements do not matter for this check.
Apply Condition: We must have a12=a21.
a12=x−1
a21=2x+3
Set up and Solve:x−1=2x+3⟹−1−3=2x−x⟹−4=x
Answer:x = -4.
14. (CBSE 2017) If A is a square matrix, show that A−AT is a skew-symmetric matrix.
Explanation:
Define: Let P=A−AT.
Goal: To prove P is skew-symmetric, we must show that PT=−P.
Take the Transpose:PT=(A−AT)T.
Apply Transpose Properties: Using (X−Y)T=XT−YT and (XT)T=X:
PT=(A)T−(AT)T=AT−A
Factor and Conclude: Factor out -1: PT=−(A−AT) Since P=A−AT, we have PT=−P.
Answer: Since its transpose is equal to its negative, A−AT is skew-symmetric.
15. (CBSE 2021) Express A=[315−1] as the sum of a symmetric and a skew-symmetric matrix.
Explanation:
We use the theorem A=P+Q, where P=21(A+AT) (symmetric part) and Q=21(A−AT) (skew-symmetric part).
Write out the equation:LHS:A2+xI=[1656832]+[x00x]=[16+x56832+x]RHS:yA=y[3715]=[3y7yy5y]
Equate Matrices and Solve:[16+x56832+x]=[3y7yy5y]
a12: 8=y⟹y=8.
a21: 56=7y⟹y=8.
a11: 16+x=3y⟹16+x=3(8)⟹16+x=24⟹x=8.
a22: 32+x=5y⟹32+x=5(8)⟹32+x=40⟹x=8.
All equations are consistent.
Answer:x=8, y=8.
23. (CBSE 2021) If A2−A+I=O, prove that the inverse of A is I−A.
Explanation:
Goal: To find A−1, we must rearrange the equation into the form A⋅B=I or B⋅A=I, where B will be the inverse.
Rearrange the Equation: Start with A2−A+I=O. Isolate the identity matrix I.
I=A−A2.
Factor out A: Factor A out of the right-hand side. We can pre-factor or post-factor.
Post-factor: I=A(I−A).
Pre-factor: I=(I−A)A.
Conclusion: Both factorizations match the definition of an inverse AB=BA=I, where B=I−A.
Answer:A−1=I−A.
24. (CBSE 2022) For what value of x, is the matrix A=0−1x10−3−230 skew-symmetric?
Explanation:
Definition: A matrix is skew-symmetric if AT=−A, which implies aij=−aji for all i,j. Also, all diagonal elements aii must be 0, which is already true for matrix A.
Apply Condition: Let's check the a31 element.
a31=x
a13=−2
The condition is a31=−a13.
Solve:x=−(−2)⟹x=2.
(We can check other elements: a21=−1 and a12=1. a21=−a12 is true. a32=−3 and a23=3. a32=−a23 is true.)
Answer:x=2.
25. (CBSE Sample Paper) If A is an invertible matrix of order 3 and ∣A∣=5, then find ∣adjA∣.
Explanation:
This question uses a property of determinants and adjoints (covered in the next chapter).
Recall Property: For an invertible matrix A of order n, the determinant of its adjoint is given by the formula ∣adjA∣=∣A∣n−1
Substitute Values: We are given n=3 and ∣A∣=5.
Calculate:∣adjA∣=53−1=52=25
Answer:25.
26. (CBSE 2019) If A=[2−4−37], find A−1.
Explanation:
Recall the 2x2 Inverse Formula:A−1=ad−bc1[d−c−ba]
Calculate the Determinant:det(A)=ad−bc=(2)(7)−(−3)(−4)=14−12=2
Apply the Formula:A−1=21[7−(−4)−(−3)2]=21[7432]
Scalar Multiplication:A−1=[7/223/21]
Answer:[7/223/21].
27. (CBSE 2018) If A=122212221, show that A2−4A−5I=O
Explanation:
This is a verification problem. We need to compute A2, 4A, and 5I and show they sum to the zero matrix O.
3. Conclusion: Since LHS = RHS, the property is verified.
Answer: Verified.
29. (CBSE 2022) Let A=[12−11],B=[ab1−1] and (A+B)2=A2+B2. Find a and b.
Explanation
Analyze the Given Equation:
We are given the equation (A+B)2=A2+B2
Let's expand the left-hand side (LHS): (A+B)2=(A+B)(A+B)=A(A+B)+B(A+B)=A2+AB+BA+B2
Simplify the Condition:
Substituting the expansion into the original equation:
A2+AB+BA+B2=A2+B2
Subtracting A2 and B2 from both sides, we get the simplified condition: AB+BA=O (where O is the 2x2 zero matrix).
Calculate the product AB:AB=[12−11][ab1−1]=[(1)(a)+(−1)(b)(2)(a)+(1)(b)(1)(1)+(−1)(−1)(2)(1)+(1)(−1)]=[a−b2a+b21]
Calculate the product BA:BA=[ab1−1][12−11]=[(a)(1)+(1)(2)(b)(1)+(−1)(2)(a)(−1)+(1)(1)(b)(−1)+(−1)(1)]=[a+2b−21−a−b−1]
Set up the equation AB+BA=O:[a−b2a+b21]+[a+2b−21−a−b−1]=[0000]
Adding the corresponding elements gives us a new matrix:
[(a−b)+(a+2)(2a+b)+(b−2)2+(1−a)1+(−b−1)]=[2a−b+22a+2b−23−a−b]=[0000]
Solve the System of Equations:
From the equality of matrices, we get four equations:
(i) 2a−b+2=0
(ii) 3−a=0
(iii) 2a+2b−2=0
(iv) −b=0
From (iv), we get b=0.
From (ii), we get a=3.
Check for Contradiction:
We must check if these values (a=3,b=0) satisfy the other two equations:
Check (i): 2(3)−0+2=6+2=8. The equation requires this to be 0, but 8=0.
Check (iii): 2(3)+2(0)−2=6−2=4. The equation requires this to be 0, but 4=0.
Conclusion: The system of equations is inconsistent. There are no values of a and b that can satisfy all four conditions simultaneously.
Answer: There are no such values for a and b.
30. (CBSE 2023) If A is a square matrix such that A2=A, show that (I+A)3−7A=I.
Explanation:
Expand the Binomial: Since I and A commute, we can use the binomial expansion (I+A)3=I3+3I2A+3IA2+A3
Simplify Properties:I3=I, I2A=A, IA2=A2. So, (I+A)3=I+3A+3A2+A3
Use Given Condition (A2=A):
A3=A2⋅A=A⋅A=A2=A
Substitute Back:(I+A)3=I+3A+3(A)+(A)=I+7A
Final Calculation: The original expression is (I+A)3−7A. Substituting our result: