Understand the Order: A 3x2 matrix has 3 rows and 2 columns. The general form is a11a21a31a12a22a32
Use the Formula: We find the value of each element using the rule aij=i−j (where 'i' is the row number and 'j' is the column number).
a11 (i=1, j=1): 1−1=0
a12 (i=1, j=2): 1−2=−1
a21 (i=2, j=1): 2−1=1
a22 (i=2, j=2): 2−2=0
a31 (i=3, j=1): 3−1=2
a32 (i=3, j=2): 3−2=1
Construct the Matrix: Place the calculated values into their corresponding positions.
Answer:A=012−101.
Example 2: Equality of Matrices
Question: Find x, y, a, b if [x−ya−ba+bx+y]=[21510].
Explanation:
By the definition of matrix equality, the corresponding elements must be equal. This gives us two independent systems of linear equations.
System 1 (for x and y):
x−y=2
x+y=10
Adding the two equations: (x−y)+(x+y)=2+10⟹2x=12⟹x=6
Substituting x=6 into the second equation: 6+y=10⟹y=4
System 2 (for a and b):
a+b=5
a−b=1
Adding the two equations: (a+b)+(a−b)=5+1⟹2a=6⟹a=3
Substituting a=3 into the first equation: 3+b=5⟹b=2
Answer:x=6,y=4,a=3,b=2.
Example 3: Possible Matrix Orders
Question: If a matrix has 13 elements, what are the possible orders?
Explanation:
Understand Order: The order of a matrix is (number of rows, m) × (number of columns, n). The total number of elements is m×n.
Find Factor Pairs: We need to find pairs of natural numbers (m,n) whose product is 13.
Analyze 13: The number 13 is a prime number. Its only natural number factors are 1 and 13.
List Possibilities: The only possible pairs are (1, 13) and (13, 1).
Answer: The possible orders are 1 x 13 (a row matrix) and 13 x 1 (a column matrix).
Example 4: Matrix Operations
Question: If A=[1324] and B=[5768], find 3A−B.
Explanation:
Scalar Multiplication: First, calculate the matrix 3A by multiplying every element of A by 3.
3A=3[1324]=[3(1)3(3)3(2)3(4)]=[39612]
Matrix Subtraction: Now, subtract the corresponding elements of B from 3A.
3A−B=[39612]−[5768]=[3−59−76−612−8]
Calculate Result:3A−B=[−2204]
Answer:[−2204].
Example 5: Matrix Polynomial
Question: Find A2−5A+6I if A=22101−1130.
Explanation:
We need to compute each term of the polynomial f(A)=A2−5A+6I, where I is the 3x3 identity matrix.
Combine the matrices:A2−5A+6I=590−1−2−125−2−1010505−55150+600060006=5−10+69−10+00−5+0−1−0+0−2−5+6−1−(−5)+02−5+05−15+0−2−0+6=1−1−5−1−14−3−104
Answer:1−1−5−1−14−3−104.
Example 6: Non-Commutativity of Multiplication
Question: If A=[12−13] and B=[2110], find AB and BA.
Equate Elements and Solve:
By equating the corresponding elements, we get:
x−2=0⟹x=2
0=0 (This is consistent)
Answer:x=2.
Example 8: Powers of a Matrix
Question: If A=[1111], find A100.
Explanation:
We will find the first few powers of A to identify a pattern.
Calculate A2:A2=A⋅A=[1111][1111]=[1+11+11+11+1]=[2222]
We can rewrite this as A2=2[1111]=2A
Calculate A3:A3=A2⋅A=(2A)⋅A=2(A2)=2(2A)=4A=22A
Identify the Pattern:
We see a pattern: An=2n−1A
Apply the Pattern for n=100:A100=2100−1A=299A
Answer:A100=299A=299[1111].
Example 9: Binomial Expansion with Nilpotent Matrix
Question: If A=[0010], find (aI+bA)3.
Explanation:
Analyze Matrix A: Let's find the powers of A. A is a nilpotent matrix.
A2=[0010][0010]=[0000]=O
Since A2 is the zero matrix, all higher powers (A3,A4,...) will also be the zero matrix.
Expand the Binomial: Since I (identity) and A commute (IA=AI=A), we can use the binomial expansion (X+Y)3=X3+3X2Y+3XY2+Y3(aI+bA)3=(aI)3+3(aI)2(bA)+3(aI)(bA)2+(bA)3
Question: A trust fund has Rs 30,000 to invest in two types of bonds. The first bond pays 5% interest per year, and the second pays 7%. Using matrix multiplication, determine how to divide Rs 30,000 among the two types of bonds if the trust must obtain an annual total interest of Rs 1,800.
Explanation:
Define Variables: Let the investment in the first bond be Rs x. Then the investment in the second bond is Rs (30000−x).
Set up Matrices:
Investment Matrix (A): A 1x2 row matrix representing the amount in each bond.
A=[x30000−x]
Interest Rate Matrix (R): A 2x1 column matrix representing the interest rate for each bond.
R=[0.050.07]
Total Interest Matrix (T): The desired total interest, as a 1x1 matrix.
T=[1800]
Form the Matrix Equation: The total interest is the product of the investment matrix and the rate matrix: A⋅R=T.
[x30000−x][0.050.07]=[1800]
Solve the Equation:(x)(0.05)+(30000−x)(0.07)=18000.05x+2100−0.07x=1800−0.02x=1800−2100−0.02x=−300x=−0.02−300=15000
Find Both Investments:
Investment in first bond (at 5%): x=15,000.
Investment in second bond (at 7%): 30000−x=15,000.
Answer: The investment is Rs 15,000 in each bond.
Example 11: Verifying (AB)T=BTAT
Question: Verify the reversal law (AB)T=BTAT for A=[1324] and B=[4216].
Explanation:1. Calculate the Left-Hand Side (LHS):
Question: If A and B are symmetric matrices of the same order, show that AB+BA is a symmetric matrix.
Explanation:
Given: A and B are symmetric, so AT=A and BT=B.
Goal: We need to show that the matrix P=AB+BA is symmetric, which means we must prove PT=P.
Take the Transpose:PT=(AB+BA)T.
Apply Transpose Properties:
Property of sum: PT=(AB)T+(BA)T
Reversal law of multiplication: PT=(BTAT)+(ATBT)
Substitute the 'Given': Since AT=A and BT=B, we get:
PT=(BA)+(AB)
Conclusion:PT=BA+AB=AB+BA=P Since PT=P, the matrix AB+BA is symmetric.
Answer: Proven.
Example 15: Property of ATA
Question: Show that for any square matrix A, ATA is symmetric.
Explanation:
Define the Matrix: Let P=ATA.
Goal: We need to show that P is symmetric, i.e., PT=P.
Take the Transpose:PT=(ATA)T.
Apply Reversal Law:(XY)T=YTXT Here, X=AT and Y=A.
PT=(A)T(AT)T
Simplify: Using the property (AT)T=A, we get PT=ATA.
Conclusion: Since P=ATA and PT=ATA, we have PT=P. Therefore, ATA is always symmetric.
Answer: Proven.
Example 16: Property of A2
Question: If A is a skew-symmetric matrix, what is A2?
Explanation:
Let's test the nature of A2 by checking its transpose.
Given: A is skew-symmetric, so AT=−A.
Goal: We want to find the property of P=A2. Let's find PT.
Take the Transpose:PT=(A2)T=(A⋅A)T.
Apply Reversal Law:PT=ATAT.
Substitute the 'Given': Replace AT with −A.
PT=(−A)(−A)=A2.
Conclusion: Since PT=A2=P, the matrix A2 is symmetric.
Answer:A2 is a symmetric matrix.
Example 17: Finding 2x2 Inverse (Shortcut)
Question: Find the inverse of A=[1237] using the shortcut.
Explanation:
Recall the 2x2 Inverse Formula: For a matrix M=[acbd], the inverse is M−1=ad−bc1[d−c−ba]
Calculate the Determinant:ad−bc=(1)(7)−(3)(2)=7−6=1
Apply the Formula:A−1=11[7−2−31]
Answer:A−1=[7−2−31].
Example 18: Non-Invertible Matrix
Question: Find the inverse of A=[2412], if it exists.
Explanation:
A matrix is invertible if and only if its determinant is non-zero.
Calculate the Determinant: The determinant is ad−bc.
det(A)=(2)(2)−(1)(4)=4−4=0
Conclusion: Since the determinant is zero, the matrix is singular.
Answer: The inverse does not exist.
Example 19: Finding Inverse with Elementary Operations
Question: Find the inverse of A=[122−1] using elementary row operations.
Explanation:
Set up: Start with the augmented matrix [A∣I]. Our goal is to turn this into [I∣A−1].
[122−11001].
Create 0 in (2,1): Apply R2→R2−2R1.
[102−51−201]
Create 1 in (2,2): Apply R2→−51R2.
[102112/50−1/5]
Create 0 in (1,2): Apply R1→R1−2R2.
R1=[1210]−2[012/5−1/5]=[101/52/5]
The matrix becomes [10011/52/52/5−1/5].
Conclusion: The LHS is now I, so the RHS is A−1.
Answer:A−1=[1/52/52/5−1/5].
Example 20: Finding Inverse from a Matrix Equation
Question: If A2−A+I=O, find the inverse of 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.
Example 21: Property of Invertible Transpose
Question: If A is an invertible matrix of order 2, find (AT)−1.
Explanation:
This question asks for the inverse of the transpose of A. We use a standard property.
Start with the Inverse Definition:AA−1=I.
Take the Transpose of both sides:(AA−1)T=IT.
Apply Reversal Law:(A−1)T(AT)=I (since IT=I).
Analyze the Result: This equation shows that the matrix (A−1)T is the left-inverse of the matrix AT. For square matrices, the left-inverse is the inverse.
Therefore, (AT)−1=(A−1)T.
Answer:(AT)−1=(A−1)T. The inverse of the transpose is the transpose of the inverse.
Example 22: Solving a Matrix Equation for X
Question: If A and B are invertible matrices, solve the equation AXB=C for X.
Explanation:
We need to isolate X. We must be careful to multiply in the correct order, as matrix multiplication is not commutative.
Given Equation:AXB=C.
Pre-multiply by A−1: To remove A from the left, we pre-multiply (multiply on the left) both sides by A−1.
A−1(AXB)=A−1C
(A−1A)XB=A−1C
IXB=A−1C⟹XB=A−1C.
Post-multiply by B−1: To remove B from the right, we post-multiply (multiply on the right) both sides by B−1.
(XB)B−1=(A−1C)B−1
X(BB−1)=A−1CB−1
XI=A−1CB−1.
Answer:X=A−1CB−1.
Example 23: Determinant Property
Question: If A is a square matrix such that A2=I, what are the possible values for the determinant of A?
Explanation:
This question uses properties of determinants (covered in the next chapter).
Start with the Equation:A2=I.
Take the Determinant of both sides:∣A2∣=∣I∣.
Apply Determinant Properties:
∣A2∣=∣A∣2.
∣I∣=1.
Solve: The equation becomes ∣A∣2=1. Taking the square root gives ∣A∣=±1.
Answer: The possible values for the determinant are 1 and -1.
Example 24: Determinant Property
Question: If A is a 3x3 skew-symmetric matrix, what is the value of its determinant?
Explanation:
This uses a property from the next chapter.
Property of Determinants: We know that ∣AT∣=∣A∣.
Property of Skew-Symmetric: We know that AT=−A.
Combine:∣A∣=∣AT∣=∣−A∣.
Property of Scalar Multiplication: For an n×n matrix, ∣kA∣=kn∣A∣. Here n=3 and k=−1.
∣−A∣=(−1)3∣A∣=−∣A∣.
Solve: Our equation becomes ∣A∣=−∣A∣. This implies 2∣A∣=0, so ∣A∣=0.
Answer: The determinant of any odd-order skew-symmetric matrix is 0.
Example 25: Proving Symmetry
Question: Show that if A is a symmetric matrix, then BTAB is also symmetric.
Explanation:
Given: A is symmetric, so AT=A.
Goal: We need to prove that the matrix P=BTAB is symmetric, which means we must show PT=P.
Take the Transpose:PT=(BTAB)T. We use the reversal law (XY)T=YTXT twice.
PT=(B)T(BTA)T=BT(AT(BT)T)
Simplify: Since (BT)T=B, this becomes PT=BTATB.
Use the 'Given': Since A is symmetric, AT=A. Substituting this in:
PT=BTAB.
Conclusion: We have shown PT=P. Therefore, BTAB is symmetric.
Answer: Proven.
Example 26: Contradictory Matrix Equation
Question: If A=[α101] and B=[1501] and A2=B, find α.