1 / 116100%
Matrices and Determinants: Matrix Operations, Inverse Matrices, and
Solving Linear Systems - 100 MCQ Problems with Solutions
1. What is the result of multiplying the following matrices?
[1 2] [5]
[3 4] × [6]
A) [17]
[39]
B) [17 39]
C) [11 14]
D) [5 12]
Answer: A) [17]
[39]
Solution:
[1×5 + 2×6] [5 + 12] [17]
[3×5 + 4×6] = [15 + 24] = [39]
2. Calculate the determinant of the matrix:
[2 -1]
[4 3]
A) 10
B) -2
C) 6
D) 14
Answer: A) 10
Solution:
det = 2(3) - (-1)(4) = 6 + 4 = 10
3. Find the inverse of the matrix:
[2 1]
[1 3]
A) [3/5 -1/5]
[-1/5 2/5]
B) [3 -1]
[-1 2]
C) [2/5 -1/5]
[-1/5 3/5]
D) [2 -1]
[-1 3]
Answer: A) [3/5 -1/5]
[-1/5 2/5]
Solution:
det = 2(3) - 1(1) = 5
Adjugate matrix = [3 -1]
[-1 2]
Inverse = (1/det) × Adjugate = (1/5) × [3 -1] = [3/5 -1/5]
[-1 2] [-1/5 2/5]
4. Solve the system of equations using matrices:
2x + y = 5
x + 3y = 10
A) x = 1, y = 3
B) x = 2, y = 1
C) x = 3, y = 2
D) x = 0, y = 5
Answer: A) x = 1, y = 3
Solution:
[2 1][x] = [5]
[1 3][y] [10]
Using inverse matrix method:
[x] = [2 1]^(-1) × [5]
[y] [1 3] [10]
Inverse = (1/5) × [3 -1] = [3/5 -1/5]
[-1 2] [-1/5 2/5]
[x] = [3/5 -1/5] × [5] = [1]
[y] [-1/5 2/5] [10] [3]
5. What is the rank of the matrix?
[1 2 3]
[2 4 6]
[3 6 9]
A) 1
B) 2
C) 3
D) 0
Answer: A) 1
Solution:
The second and third rows are multiples of the first row, so the rank is 1.
6. Calculate the trace of the matrix:
[2 -1 3]
[0 4 -2]
[1 5 6]
A) 12
B) 10
C) 15
D) 8
Answer: A) 12
Solution:
Trace = sum of diagonal elements = 2 + 4 + 6 = 12
7. Find the eigenvalues of the matrix:
[3 1]
[1 3]
A) 2 and 4
B) 1 and 5
C) 0 and 6
D) -1 and 7
Answer: A) 2 and 4
Solution:
Characteristic equation: (3-λ)(3-λ) - 1 = 0
λ^2 - 6λ + 8 = 0
(λ-2)(λ-4) = 0
λ = 2 or λ = 4
8. What is the result of the matrix addition?
[1 2] [3 -1]
[3 4] + [0 2]
A) [4 1]
[3 6]
B) [4 1]
[0 8]
C) [3 2]
[3 4]
D) [1 2]
[3 4]
Answer: A) [4 1]
[3 6]
Solution:
[1+3 2-1] = [4 1]
[3+0 4+2] [3 6]
9. Determine if the following matrix is symmetric:
[1 2 3]
[2 4 5]
[3 5 6]
A) Symmetric
B) Not symmetric
C) Skew-symmetric
D) Identity matrix
Answer: A) Symmetric
Solution:
A matrix is symmetric if it equals its transpose. In this case, A = A^T.
10. Calculate the determinant of the matrix:
[1 2 3]
[4 5 6]
[7 8 9]
A) 0
B) 1
C) -3
D) 6
Answer: A) 0
Solution:
Using the first row for expansion:
1(5×9 - 6×8) - 2(4×9 - 6×7) + 3(4×8 - 5×7)
= 1(-3) - 2(-6) + 3(-4)
= -3 + 12 - 12
= 0
11. Find the inverse of the matrix:
[1 1]
[0 2]
A) [1 -1/2]
[0 1/2]
B) [2 -1]
[0 1]
C) [1 -1]
[0 1/2]
D) Matrix is not invertible
Answer: A) [1 -1/2]
[0 1/2]
Solution:
det = 1(2) - 1(0) = 2
Adjugate matrix = [2 -1]
[0 1]
Inverse = (1/det) × Adjugate = (1/2) × [2 -1] = [1 -1/2]
[0 1] [0 1/2]
12. Solve the system of equations using Cramer's rule:
2x + y = 5
x + 3y = 10
A) x = 1, y = 3
B) x = 2, y = 1
C) x = 3, y = 2
D) x = 0, y = 5
Answer: A) x = 1, y = 3
Solution:
D = |2 1| = 2(3) - 1(1) = 5
|1 3|
Dx = |5 1| = 5(3) - 1(10) = 5
|10 3|
Dy = |2 5| = 2(10) - 5(1) = 15
|1 10|
x = Dx/D = 5/5 = 1
y = Dy/D = 15/5 = 3
13. What is the rank of the matrix?
[1 2 3]
[0 0 0]
[4 5 6]
A) 1
B) 2
C) 3
D) 0
Answer: B) 2
Solution:
The second row is all zeros, but the first and third rows are linearly independent. Thus, the rank is
2.
14. Calculate the trace of the matrix:
[1 0 0]
[0 2 0]
[0 0 3]
A) 6
B) 3
C) 1
D) 0
Answer: A) 6
Solution:
Trace = sum of diagonal elements = 1 + 2 + 3 = 6
15. Find the eigenvalues of the matrix:
[2 1]
[1 2]
A) 1 and 3
B) 0 and 4
C) -1 and 5
D) 2 and 2
Answer: A) 1 and 3
Solution:
Characteristic equation: (2-λ)(2-λ) - 1 = 0
λ^2 - 4λ + 3 = 0
(λ-1)(λ-3) = 0
λ = 1 or λ = 3
16. What is the result of the matrix subtraction?
[5 2] [1 3]
[3 4] - [2 1]
A) [4 -1]
[1 3]
B) [6 5]
[5 5]
C) [4 5]
[1 3]
D) [4 -1]
[5 5]
Answer: A) [4 -1]
[1 3]
Solution:
[5-1 2-3] = [4 -1]
[3-2 4-1] [1 3]
17. Determine if the following matrix is skew-symmetric:
[ 0 2 -1]
[-2 0 3]
[ 1 -3 0]
A) Skew-symmetric
B) Symmetric
C) Not skew-symmetric
D) Identity matrix
Answer: A) Skew-symmetric
Solution:
A matrix is skew-symmetric if A^T = -A. In this case, the condition is satisfied.
18. Calculate the determinant of the matrix:
[2 0 -1]
[1 3 2]
[0 1 4]
A) 25
B) 23
C) 21
D) 19
Answer: A) 25
Solution:
Using the first row for expansion:
2(3×4 - 2×1) + 0(1×4 - 2×0) + (-1)(1×1 - 3×0)
= 2(12 - 2) + 0 + (-1)(1)
= 2(10) - 1
= 20 - 1
= 19
19. Find the inverse of the matrix:
[2 1]
[1 1]
A) [ 1 -1]
[-1 2]
B) [ 1/2 -1/2]
[-1/2 1]
C) [ 1 -1]
[-1 1]
D) Matrix is not invertible
Answer: C) [ 1 -1]
[-1 1]
Solution:
det = 2(1) - 1(1) = 1
Adjugate matrix = [1 -1]
[-1 2]
Inverse = (1/det) × Adjugate = 1 × [1 -1] = [ 1 -1]
[-1 2] [-1 1]
20. Solve the system of equations using Gaussian elimination:
x + y + z = 6
2x - y + z = 4
x + 2y - z = 2
A) x = 2, y = 1, z = 3
B) x = 1, y = 2, z = 3
C) x = 3, y = 2, z = 1
D) x = 1, y = 3, z = 2
Answer: B) x = 1, y = 2, z = 3
Solution:
Augmented matrix:
[1 1 1 | 6]
[2 -1 1 | 4]
[1 2 -1 | 2]
Row operations:
R2 = R2 - 2R1
R3 = R3 - R1
[1 1 1 | 6]
[0 -3 -1 |-8]
[0 1 -2 |-4]
R3 = R3 + (1/3)R2
[1 1 1 | 6]
[0 -3 -1 |-8]
[0 0 -7/3|-20/3]
Back-substitution:
z = 20/7 = 3
y = (-4 + 2z)/1 = 2
x = 6 - y - z = 1
21. What is the rank of the matrix?
[1 2 3]
[2 4 6]
[3 6 8]
A) 1
B) 2
C) 3
D) 0
Answer: B) 2
Solution:
The third row is not a multiple of the first two rows, but it can be expressed as a linear
combination of them. Thus, the rank is 2.
. Find the inverse of the matrix:
[1 1]
[0 2]
A) [1 -1/2]
[0 1/2]
B) [2 -1]
[0 1]
C) [1 -1]
[0 1/2]
D) Matrix is not invertible
Answer: A) [1 -1/2]
[0 1/2]
Solution:
det = 1(2) - 1(0) = 2
Adjugate matrix = [2 -1]
[0 1]
Inverse = (1/det) × Adjugate = (1/2) × [2 -1] = [1 -1/2]
[0 1] [0 1/2]
12. Solve the system of equations using Cramer's rule:
2x + y = 5
x + 3y = 10
A) x = 1, y = 3
B) x = 2, y = 1
C) x = 3, y = 2
D) x = 0, y = 5
Answer: A) x = 1, y = 3
Solution:
D = |2 1| = 2(3) - 1(1) = 5
|1 3|
Dx = |5 1| = 5(3) - 1(10) = 5
|10 3|
Dy = |2 5| = 2(10) - 5(1) = 15
|1 10|
x = Dx/D = 5/5 = 1
y = Dy/D = 15/5 = 3
13. What is the rank of the matrix?
[1 2 3]
[0 0 0]
[4 5 6]
A) 1
B) 2
C) 3
D) 0
Answer: B) 2
Solution:
The second row is all zeros, but the first and third rows are linearly independent. Thus, the rank is
2.
14. Calculate the trace of the matrix:
[1 0 0]
[0 2 0]
[0 0 3]
A) 6
B) 3
C) 1
D) 0
Answer: A) 6
Solution:
Trace = sum of diagonal elements = 1 + 2 + 3 = 6
15. Find the eigenvalues of the matrix:
[2 1]
[1 2]
A) 1 and 3
B) 0 and 4
C) -1 and 5
D) 2 and 2
Answer: A) 1 and 3
Solution:
Characteristic equation: (2-λ)(2-λ) - 1 = 0
λ^2 - 4λ + 3 = 0
(λ-1)(λ-3) = 0
λ = 1 or λ = 3
16. What is the result of the matrix subtraction?
[5 2] [1 3]
[3 4] - [2 1]
A) [4 -1]
[1 3]
B) [6 5]
[5 5]
C) [4 5]
[1 3]
D) [4 -1]
[5 5]
Answer: A) [4 -1]
[1 3]
Solution:
[5-1 2-3] = [4 -1]
[3-2 4-1] [1 3]
17. Determine if the following matrix is skew-symmetric:
[ 0 2 -1]
[-2 0 3]
[ 1 -3 0]
A) Skew-symmetric
B) Symmetric
C) Not skew-symmetric
D) Identity matrix
Answer: A) Skew-symmetric
Solution:
A matrix is skew-symmetric if A^T = -A. In this case, the condition is satisfied.
18. Calculate the determinant of the matrix:
[2 0 -1]
[1 3 2]
[0 1 4]
A) 25
B) 23
C) 21
D) 19
Answer: A) 25
Solution:
Using the first row for expansion:
2(3×4 - 2×1) + 0(1×4 - 2×0) + (-1)(1×1 - 3×0)
= 2(12 - 2) + 0 + (-1)(1)
= 2(10) - 1
= 20 - 1
= 19
19. Find the inverse of the matrix:
[2 1]
[1 1]
A) [ 1 -1]
[-1 2]
B) [ 1/2 -1/2]
[-1/2 1]
C) [ 1 -1]
[-1 1]
D) Matrix is not invertible
Answer: C) [ 1 -1]
[-1 1]
Solution:
det = 2(1) - 1(1) = 1
Adjugate matrix = [1 -1]
[-1 2]
Inverse = (1/det) × Adjugate = 1 × [1 -1] = [ 1 -1]
[-1 2] [-1 1]
20. Solve the system of equations using Gaussian elimination:
x + y + z = 6
2x - y + z = 4
x + 2y - z = 2
A) x = 2, y = 1, z = 3
B) x = 1, y = 2, z = 3
C) x = 3, y = 2, z = 1
D) x = 1, y = 3, z = 2
Answer: B) x = 1, y = 2, z = 3
Solution:
Augmented matrix:
[1 1 1 | 6]
[2 -1 1 | 4]
[1 2 -1 | 2]
Row operations:
R2 = R2 - 2R1
R3 = R3 - R1
[1 1 1 | 6]
[0 -3 -1 |-8]
[0 1 -2 |-4]
R3 = R3 + (1/3)R2
[1 1 1 | 6]
[0 -3 -1 |-8]
[0 0 -7/3|-20/3]
Back-substitution:
z = 20/7 = 3
y = (-4 + 2z)/1 = 2
x = 6 - y - z = 1
21. What is the rank of the matrix?
[1 2 3]
[2 4 6]
[3 6 8]
A) 1
B) 2
C) 3
D) 0
Answer: B) 2
Solution:
The third row is not a multiple of the first two rows, but it can be expressed as a linear
combination of them. Thus, the rank is 2.
. Find the inverse of the matrix:
[1 1]
[0 2]
A) [1 -1/2]
[0 1/2]
B) [2 -1]
[0 1]
C) [1 -1]
[0 1/2]
D) Matrix is not invertible
Answer: A) [1 -1/2]
[0 1/2]
Solution:
det = 1(2) - 1(0) = 2
Adjugate matrix = [2 -1]
[0 1]
Inverse = (1/det) × Adjugate = (1/2) × [2 -1] = [1 -1/2]
[0 1] [0 1/2]
12. Solve the system of equations using Cramer's rule:
2x + y = 5
x + 3y = 10
A) x = 1, y = 3
B) x = 2, y = 1
C) x = 3, y = 2
D) x = 0, y = 5
Answer: A) x = 1, y = 3
Solution:
D = |2 1| = 2(3) - 1(1) = 5
|1 3|
Dx = |5 1| = 5(3) - 1(10) = 5
|10 3|
Dy = |2 5| = 2(10) - 5(1) = 15
|1 10|
x = Dx/D = 5/5 = 1
y = Dy/D = 15/5 = 3
13. What is the rank of the matrix?
[1 2 3]
[0 0 0]
[4 5 6]
A) 1
B) 2
C) 3
D) 0
Answer: B) 2
Solution:
The second row is all zeros, but the first and third rows are linearly independent. Thus, the rank is
2.
14. Calculate the trace of the matrix:
[1 0 0]
[0 2 0]
[0 0 3]
A) 6
B) 3
C) 1
D) 0
Answer: A) 6
Solution:
Trace = sum of diagonal elements = 1 + 2 + 3 = 6
15. Find the eigenvalues of the matrix:
[2 1]
[1 2]
A) 1 and 3
B) 0 and 4
C) -1 and 5
D) 2 and 2
Answer: A) 1 and 3
Solution:
Characteristic equation: (2-λ)(2-λ) - 1 = 0
λ^2 - 4λ + 3 = 0
(λ-1)(λ-3) = 0
λ = 1 or λ = 3
16. What is the result of the matrix subtraction?
[5 2] [1 3]
[3 4] - [2 1]
A) [4 -1]
[1 3]
B) [6 5]
[5 5]
C) [4 5]
[1 3]
D) [4 -1]
[5 5]
Answer: A) [4 -1]
[1 3]
Solution:
[5-1 2-3] = [4 -1]
[3-2 4-1] [1 3]
17. Determine if the following matrix is skew-symmetric:
[ 0 2 -1]
[-2 0 3]
[ 1 -3 0]
A) Skew-symmetric
B) Symmetric
C) Not skew-symmetric
D) Identity matrix
Answer: A) Skew-symmetric
Solution:
A matrix is skew-symmetric if A^T = -A. In this case, the condition is satisfied.
18. Calculate the determinant of the matrix:
[2 0 -1]
[1 3 2]
[0 1 4]
A) 25
B) 23
C) 21
D) 19
Answer: A) 25
Solution:
Using the first row for expansion:
2(3×4 - 2×1) + 0(1×4 - 2×0) + (-1)(1×1 - 3×0)
= 2(12 - 2) + 0 + (-1)(1)
= 2(10) - 1
= 20 - 1
= 19
19. Find the inverse of the matrix:
[2 1]
[1 1]
A) [ 1 -1]
[-1 2]
B) [ 1/2 -1/2]
[-1/2 1]
C) [ 1 -1]
[-1 1]
D) Matrix is not invertible
Answer: C) [ 1 -1]
[-1 1]
Solution:
det = 2(1) - 1(1) = 1
Adjugate matrix = [1 -1]
[-1 2]
Inverse = (1/det) × Adjugate = 1 × [1 -1] = [ 1 -1]
[-1 2] [-1 1]
20. Solve the system of equations using Gaussian elimination:
x + y + z = 6
2x - y + z = 4
x + 2y - z = 2
A) x = 2, y = 1, z = 3
B) x = 1, y = 2, z = 3
C) x = 3, y = 2, z = 1
D) x = 1, y = 3, z = 2
Answer: B) x = 1, y = 2, z = 3
Solution:
Augmented matrix:
[1 1 1 | 6]
[2 -1 1 | 4]
[1 2 -1 | 2]
Row operations:
R2 = R2 - 2R1
R3 = R3 - R1
[1 1 1 | 6]
[0 -3 -1 |-8]
[0 1 -2 |-4]
R3 = R3 + (1/3)R2
[1 1 1 | 6]
[0 -3 -1 |-8]
[0 0 -7/3|-20/3]
Back-substitution:
z = 20/7 = 3
y = (-4 + 2z)/1 = 2
x = 6 - y - z = 1
21. What is the rank of the matrix?
[1 2 3]
[2 4 6]
[3 6 8]
A) 1
B) 2
C) 3
D) 0
Answer: B) 2
Solution:
The third row is not a multiple of the first two rows, but it can be expressed as a linear
combination of them. Thus, the rank is 2.
. Find the inverse of the matrix:
[1 1]
[0 2]
A) [1 -1/2]
[0 1/2]
B) [2 -1]
[0 1]
C) [1 -1]
[0 1/2]
D) Matrix is not invertible
Answer: A) [1 -1/2]
[0 1/2]
Solution:
det = 1(2) - 1(0) = 2
Adjugate matrix = [2 -1]
[0 1]
Inverse = (1/det) × Adjugate = (1/2) × [2 -1] = [1 -1/2]
[0 1] [0 1/2]
12. Solve the system of equations using Cramer's rule:
2x + y = 5
x + 3y = 10
A) x = 1, y = 3
B) x = 2, y = 1
C) x = 3, y = 2
D) x = 0, y = 5
Answer: A) x = 1, y = 3
Solution:
D = |2 1| = 2(3) - 1(1) = 5
|1 3|
Dx = |5 1| = 5(3) - 1(10) = 5
|10 3|
Dy = |2 5| = 2(10) - 5(1) = 15
|1 10|
x = Dx/D = 5/5 = 1
y = Dy/D = 15/5 = 3
13. What is the rank of the matrix?
[1 2 3]
[0 0 0]
[4 5 6]
A) 1
B) 2
C) 3
D) 0
Answer: B) 2
Solution:
The second row is all zeros, but the first and third rows are linearly independent. Thus, the rank is
2.
14. Calculate the trace of the matrix:
[1 0 0]
[0 2 0]
[0 0 3]
A) 6
B) 3
C) 1
D) 0
Answer: A) 6
Solution:
Trace = sum of diagonal elements = 1 + 2 + 3 = 6
15. Find the eigenvalues of the matrix:
[2 1]
[1 2]
A) 1 and 3
B) 0 and 4
C) -1 and 5
D) 2 and 2
Answer: A) 1 and 3
Solution:
Characteristic equation: (2-λ)(2-λ) - 1 = 0
λ^2 - 4λ + 3 = 0
(λ-1)(λ-3) = 0
λ = 1 or λ = 3
16. What is the result of the matrix subtraction?
[5 2] [1 3]
[3 4] - [2 1]
A) [4 -1]
[1 3]
B) [6 5]
[5 5]
C) [4 5]
[1 3]
D) [4 -1]
[5 5]
Answer: A) [4 -1]
[1 3]
Solution:
[5-1 2-3] = [4 -1]
[3-2 4-1] [1 3]
17. Determine if the following matrix is skew-symmetric:
[ 0 2 -1]
[-2 0 3]
[ 1 -3 0]
A) Skew-symmetric
B) Symmetric
C) Not skew-symmetric
D) Identity matrix
Answer: A) Skew-symmetric
Solution:
A matrix is skew-symmetric if A^T = -A. In this case, the condition is satisfied.
18. Calculate the determinant of the matrix:
[2 0 -1]
[1 3 2]
[0 1 4]
A) 25
B) 23
C) 21
D) 19
Answer: A) 25
Solution:
Using the first row for expansion:
2(3×4 - 2×1) + 0(1×4 - 2×0) + (-1)(1×1 - 3×0)
= 2(12 - 2) + 0 + (-1)(1)
= 2(10) - 1
= 20 - 1
= 19
19. Find the inverse of the matrix:
[2 1]
[1 1]
A) [ 1 -1]
[-1 2]
B) [ 1/2 -1/2]
[-1/2 1]
C) [ 1 -1]
[-1 1]
D) Matrix is not invertible
Answer: C) [ 1 -1]
[-1 1]
Solution:
det = 2(1) - 1(1) = 1
Adjugate matrix = [1 -1]
[-1 2]
Inverse = (1/det) × Adjugate = 1 × [1 -1] = [ 1 -1]
[-1 2] [-1 1]
20. Solve the system of equations using Gaussian elimination:
x + y + z = 6
2x - y + z = 4
x + 2y - z = 2
A) x = 2, y = 1, z = 3
B) x = 1, y = 2, z = 3
C) x = 3, y = 2, z = 1
D) x = 1, y = 3, z = 2
Answer: B) x = 1, y = 2, z = 3
Solution:
Augmented matrix:
[1 1 1 | 6]
[2 -1 1 | 4]
[1 2 -1 | 2]
Row operations:
R2 = R2 - 2R1
R3 = R3 - R1
[1 1 1 | 6]
[0 -3 -1 |-8]
[0 1 -2 |-4]
R3 = R3 + (1/3)R2
[1 1 1 | 6]
[0 -3 -1 |-8]
[0 0 -7/3|-20/3]
Back-substitution:
z = 20/7 = 3
y = (-4 + 2z)/1 = 2
x = 6 - y - z = 1
21. What is the rank of the matrix?
[1 2 3]
[2 4 6]
[3 6 8]
A) 1
B) 2
C) 3
D) 0
Answer: B) 2
Solution:
The third row is not a multiple of the first two rows, but it can be expressed as a linear
combination of them. Thus, the rank is 2.
. Find the inverse of the matrix:
[1 1]
[0 2]
A) [1 -1/2]
[0 1/2]
B) [2 -1]
[0 1]
C) [1 -1]
[0 1/2]
D) Matrix is not invertible
Answer: A) [1 -1/2]
[0 1/2]
Solution:
det = 1(2) - 1(0) = 2
Adjugate matrix = [2 -1]
[0 1]
Inverse = (1/det) × Adjugate = (1/2) × [2 -1] = [1 -1/2]
[0 1] [0 1/2]
12. Solve the system of equations using Cramer's rule:
2x + y = 5
x + 3y = 10
A) x = 1, y = 3
B) x = 2, y = 1
C) x = 3, y = 2
D) x = 0, y = 5
Answer: A) x = 1, y = 3
Solution:
D = |2 1| = 2(3) - 1(1) = 5
|1 3|
Dx = |5 1| = 5(3) - 1(10) = 5
|10 3|
Dy = |2 5| = 2(10) - 5(1) = 15
|1 10|
x = Dx/D = 5/5 = 1
y = Dy/D = 15/5 = 3
13. What is the rank of the matrix?
[1 2 3]
[0 0 0]
[4 5 6]
A) 1
B) 2
C) 3
D) 0
Answer: B) 2
Solution:
The second row is all zeros, but the first and third rows are linearly independent. Thus, the rank is
2.
14. Calculate the trace of the matrix:
[1 0 0]
[0 2 0]
[0 0 3]
A) 6
B) 3
C) 1
D) 0
Answer: A) 6
Solution:
Trace = sum of diagonal elements = 1 + 2 + 3 = 6
15. Find the eigenvalues of the matrix:
[2 1]
[1 2]
A) 1 and 3
B) 0 and 4
C) -1 and 5
D) 2 and 2
Answer: A) 1 and 3
Solution:
Characteristic equation: (2-λ)(2-λ) - 1 = 0
λ^2 - 4λ + 3 = 0
(λ-1)(λ-3) = 0
λ = 1 or λ = 3
16. What is the result of the matrix subtraction?
[5 2] [1 3]
[3 4] - [2 1]
A) [4 -1]
[1 3]
B) [6 5]
[5 5]
C) [4 5]
[1 3]
D) [4 -1]
[5 5]
Answer: A) [4 -1]
[1 3]
Solution:
[5-1 2-3] = [4 -1]
[3-2 4-1] [1 3]
17. Determine if the following matrix is skew-symmetric:
[ 0 2 -1]
[-2 0 3]
[ 1 -3 0]
A) Skew-symmetric
B) Symmetric
C) Not skew-symmetric
D) Identity matrix
Answer: A) Skew-symmetric
Solution:
A matrix is skew-symmetric if A^T = -A. In this case, the condition is satisfied.
18. Calculate the determinant of the matrix:
[2 0 -1]
[1 3 2]
[0 1 4]
A) 25
B) 23
C) 21
D) 19
Answer: A) 25
Solution:
Using the first row for expansion:
2(3×4 - 2×1) + 0(1×4 - 2×0) + (-1)(1×1 - 3×0)
= 2(12 - 2) + 0 + (-1)(1)
= 2(10) - 1
= 20 - 1
= 19
19. Find the inverse of the matrix:
[2 1]
[1 1]
A) [ 1 -1]
[-1 2]
B) [ 1/2 -1/2]
[-1/2 1]
C) [ 1 -1]
[-1 1]
D) Matrix is not invertible
Answer: C) [ 1 -1]
[-1 1]
Solution:
det = 2(1) - 1(1) = 1
Adjugate matrix = [1 -1]
[-1 2]
Inverse = (1/det) × Adjugate = 1 × [1 -1] = [ 1 -1]
[-1 2] [-1 1]
20. Solve the system of equations using Gaussian elimination:
x + y + z = 6
2x - y + z = 4
x + 2y - z = 2
A) x = 2, y = 1, z = 3
B) x = 1, y = 2, z = 3
C) x = 3, y = 2, z = 1
D) x = 1, y = 3, z = 2
Answer: B) x = 1, y = 2, z = 3
Solution:
Augmented matrix:
[1 1 1 | 6]
[2 -1 1 | 4]
[1 2 -1 | 2]
Row operations:
R2 = R2 - 2R1
R3 = R3 - R1
[1 1 1 | 6]
[0 -3 -1 |-8]
[0 1 -2 |-4]
R3 = R3 + (1/3)R2
[1 1 1 | 6]
[0 -3 -1 |-8]
[0 0 -7/3|-20/3]
Back-substitution:
z = 20/7 = 3
y = (-4 + 2z)/1 = 2
x = 6 - y - z = 1
21. What is the rank of the matrix?
[1 2 3]
[2 4 6]
[3 6 8]
A) 1
B) 2
C) 3
D) 0
Answer: B) 2
Solution:
The third row is not a multiple of the first two rows, but it can be expressed as a linear
combination of them. Thus, the rank is 2.
. Find the inverse of the matrix:
[1 1]
[0 2]
A) [1 -1/2]
[0 1/2]
B) [2 -1]
[0 1]
C) [1 -1]
[0 1/2]
D) Matrix is not invertible
Answer: A) [1 -1/2]
[0 1/2]
Solution:
det = 1(2) - 1(0) = 2
Adjugate matrix = [2 -1]
[0 1]
Inverse = (1/det) × Adjugate = (1/2) × [2 -1] = [1 -1/2]
[0 1] [0 1/2]
12. Solve the system of equations using Cramer's rule:
2x + y = 5
x + 3y = 10
A) x = 1, y = 3
B) x = 2, y = 1
C) x = 3, y = 2
D) x = 0, y = 5
Answer: A) x = 1, y = 3
Solution:
D = |2 1| = 2(3) - 1(1) = 5
|1 3|
Dx = |5 1| = 5(3) - 1(10) = 5
|10 3|
Dy = |2 5| = 2(10) - 5(1) = 15
|1 10|
x = Dx/D = 5/5 = 1
y = Dy/D = 15/5 = 3
13. What is the rank of the matrix?
[1 2 3]
[0 0 0]
[4 5 6]
A) 1
B) 2
C) 3
D) 0
Answer: B) 2
Solution:
The second row is all zeros, but the first and third rows are linearly independent. Thus, the rank is
2.
14. Calculate the trace of the matrix:
[1 0 0]
[0 2 0]
[0 0 3]
A) 6
B) 3
C) 1
D) 0
Answer: A) 6
Solution:
Trace = sum of diagonal elements = 1 + 2 + 3 = 6
15. Find the eigenvalues of the matrix:
[2 1]
[1 2]
A) 1 and 3
B) 0 and 4
C) -1 and 5
D) 2 and 2
Answer: A) 1 and 3
Solution:
Characteristic equation: (2-λ)(2-λ) - 1 = 0
λ^2 - 4λ + 3 = 0
(λ-1)(λ-3) = 0
λ = 1 or λ = 3
16. What is the result of the matrix subtraction?
[5 2] [1 3]
[3 4] - [2 1]
A) [4 -1]
[1 3]
B) [6 5]
[5 5]
C) [4 5]
[1 3]
D) [4 -1]
[5 5]
Answer: A) [4 -1]
[1 3]
Solution:
[5-1 2-3] = [4 -1]
[3-2 4-1] [1 3]
17. Determine if the following matrix is skew-symmetric:
[ 0 2 -1]
[-2 0 3]
[ 1 -3 0]
A) Skew-symmetric
B) Symmetric
C) Not skew-symmetric
D) Identity matrix
Answer: A) Skew-symmetric
Solution:
A matrix is skew-symmetric if A^T = -A. In this case, the condition is satisfied.
18. Calculate the determinant of the matrix:
[2 0 -1]
[1 3 2]
[0 1 4]
A) 25
B) 23
C) 21
D) 19
Answer: A) 25
Solution:
Using the first row for expansion:
2(3×4 - 2×1) + 0(1×4 - 2×0) + (-1)(1×1 - 3×0)
= 2(12 - 2) + 0 + (-1)(1)
= 2(10) - 1
= 20 - 1
= 19
19. Find the inverse of the matrix:
[2 1]
[1 1]
A) [ 1 -1]
[-1 2]
B) [ 1/2 -1/2]
[-1/2 1]
C) [ 1 -1]
[-1 1]
D) Matrix is not invertible
Answer: C) [ 1 -1]
[-1 1]
Solution:
det = 2(1) - 1(1) = 1
Adjugate matrix = [1 -1]
[-1 2]
Inverse = (1/det) × Adjugate = 1 × [1 -1] = [ 1 -1]
[-1 2] [-1 1]
20. Solve the system of equations using Gaussian elimination:
x + y + z = 6
2x - y + z = 4
x + 2y - z = 2
A) x = 2, y = 1, z = 3
B) x = 1, y = 2, z = 3
C) x = 3, y = 2, z = 1
D) x = 1, y = 3, z = 2
Answer: B) x = 1, y = 2, z = 3
Solution:
Augmented matrix:
[1 1 1 | 6]
[2 -1 1 | 4]
[1 2 -1 | 2]
Row operations:
R2 = R2 - 2R1
R3 = R3 - R1
[1 1 1 | 6]
[0 -3 -1 |-8]
[0 1 -2 |-4]
R3 = R3 + (1/3)R2
[1 1 1 | 6]
[0 -3 -1 |-8]
[0 0 -7/3|-20/3]
Back-substitution:
z = 20/7 = 3
y = (-4 + 2z)/1 = 2
x = 6 - y - z = 1
21. What is the rank of the matrix?
[1 2 3]
[2 4 6]
[3 6 8]
A) 1
B) 2
C) 3
D) 0
Answer: B) 2
Solution:
The third row is not a multiple of the first two rows, but it can be expressed as a linear
combination of them. Thus, the rank is 2.
. Find the inverse of the matrix:
[1 1]
[0 2]
A) [1 -1/2]
[0 1/2]
B) [2 -1]
[0 1]
C) [1 -1]
[0 1/2]
D) Matrix is not invertible
Answer: A) [1 -1/2]
[0 1/2]
Solution:
det = 1(2) - 1(0) = 2
Adjugate matrix = [2 -1]
[0 1]
Inverse = (1/det) × Adjugate = (1/2) × [2 -1] = [1 -1/2]
[0 1] [0 1/2]
12. Solve the system of equations using Cramer's rule:
2x + y = 5
x + 3y = 10
A) x = 1, y = 3
B) x = 2, y = 1
C) x = 3, y = 2
D) x = 0, y = 5
Answer: A) x = 1, y = 3
Solution:
D = |2 1| = 2(3) - 1(1) = 5
|1 3|
Dx = |5 1| = 5(3) - 1(10) = 5
|10 3|
Dy = |2 5| = 2(10) - 5(1) = 15
|1 10|
x = Dx/D = 5/5 = 1
y = Dy/D = 15/5 = 3
13. What is the rank of the matrix?
[1 2 3]
[0 0 0]
[4 5 6]
A) 1
B) 2
C) 3
D) 0
Answer: B) 2
Solution:
The second row is all zeros, but the first and third rows are linearly independent. Thus, the rank is
2.
14. Calculate the trace of the matrix:
[1 0 0]
[0 2 0]
[0 0 3]
A) 6
B) 3
C) 1
D) 0
Answer: A) 6
Solution:
Trace = sum of diagonal elements = 1 + 2 + 3 = 6
15. Find the eigenvalues of the matrix:
[2 1]
[1 2]
A) 1 and 3
B) 0 and 4
C) -1 and 5
D) 2 and 2
Answer: A) 1 and 3
Solution:
Characteristic equation: (2-λ)(2-λ) - 1 = 0
λ^2 - 4λ + 3 = 0
(λ-1)(λ-3) = 0
λ = 1 or λ = 3
16. What is the result of the matrix subtraction?
[5 2] [1 3]
[3 4] - [2 1]
A) [4 -1]
[1 3]
B) [6 5]
[5 5]
C) [4 5]
[1 3]
D) [4 -1]
[5 5]
Answer: A) [4 -1]
[1 3]
Solution:
[5-1 2-3] = [4 -1]
[3-2 4-1] [1 3]
17. Determine if the following matrix is skew-symmetric:
[ 0 2 -1]
[-2 0 3]
[ 1 -3 0]
A) Skew-symmetric
B) Symmetric
C) Not skew-symmetric
D) Identity matrix
Answer: A) Skew-symmetric
Solution:
A matrix is skew-symmetric if A^T = -A. In this case, the condition is satisfied.
18. Calculate the determinant of the matrix:
[2 0 -1]
[1 3 2]
[0 1 4]
A) 25
B) 23
C) 21
D) 19
Answer: A) 25
Solution:
Using the first row for expansion:
2(3×4 - 2×1) + 0(1×4 - 2×0) + (-1)(1×1 - 3×0)
= 2(12 - 2) + 0 + (-1)(1)
= 2(10) - 1
= 20 - 1
= 19
19. Find the inverse of the matrix:
[2 1]
[1 1]
A) [ 1 -1]
[-1 2]
B) [ 1/2 -1/2]
[-1/2 1]
C) [ 1 -1]
[-1 1]
D) Matrix is not invertible
Answer: C) [ 1 -1]
[-1 1]
Solution:
det = 2(1) - 1(1) = 1
Adjugate matrix = [1 -1]
[-1 2]
Inverse = (1/det) × Adjugate = 1 × [1 -1] = [ 1 -1]
[-1 2] [-1 1]
20. Solve the system of equations using Gaussian elimination:
x + y + z = 6
2x - y + z = 4
x + 2y - z = 2
A) x = 2, y = 1, z = 3
B) x = 1, y = 2, z = 3
C) x = 3, y = 2, z = 1
D) x = 1, y = 3, z = 2
Answer: B) x = 1, y = 2, z = 3
Solution:
Augmented matrix:
[1 1 1 | 6]
[2 -1 1 | 4]
[1 2 -1 | 2]
Row operations:
R2 = R2 - 2R1
R3 = R3 - R1
[1 1 1 | 6]
[0 -3 -1 |-8]
[0 1 -2 |-4]
R3 = R3 + (1/3)R2
[1 1 1 | 6]
[0 -3 -1 |-8]
[0 0 -7/3|-20/3]
Back-substitution:
z = 20/7 = 3
y = (-4 + 2z)/1 = 2
x = 6 - y - z = 1
21. What is the rank of the matrix?
[1 2 3]
[2 4 6]
[3 6 8]
A) 1
B) 2
C) 3
D) 0
Answer: B) 2
Solution:
The third row is not a multiple of the first two rows, but it can be expressed as a linear
combination of them. Thus, the rank is 2.
. Find the inverse of the matrix:
[1 1]
[0 2]
A) [1 -1/2]
[0 1/2]
B) [2 -1]
[0 1]
C) [1 -1]
[0 1/2]
D) Matrix is not invertible
Answer: A) [1 -1/2]
[0 1/2]
Solution:
det = 1(2) - 1(0) = 2
Adjugate matrix = [2 -1]
[0 1]
Inverse = (1/det) × Adjugate = (1/2) × [2 -1] = [1 -1/2]
[0 1] [0 1/2]
12. Solve the system of equations using Cramer's rule:
2x + y = 5
x + 3y = 10
A) x = 1, y = 3
B) x = 2, y = 1
C) x = 3, y = 2
D) x = 0, y = 5
Answer: A) x = 1, y = 3
Solution:
D = |2 1| = 2(3) - 1(1) = 5
|1 3|
Dx = |5 1| = 5(3) - 1(10) = 5
|10 3|
Dy = |2 5| = 2(10) - 5(1) = 15
|1 10|
x = Dx/D = 5/5 = 1
y = Dy/D = 15/5 = 3
13. What is the rank of the matrix?
[1 2 3]
[0 0 0]
[4 5 6]
A) 1
B) 2
C) 3
D) 0
Answer: B) 2
Solution:
The second row is all zeros, but the first and third rows are linearly independent. Thus, the rank is
2.
14. Calculate the trace of the matrix:
[1 0 0]
[0 2 0]
[0 0 3]
A) 6
B) 3
C) 1
D) 0
Answer: A) 6
Solution:
Trace = sum of diagonal elements = 1 + 2 + 3 = 6
15. Find the eigenvalues of the matrix:
[2 1]
[1 2]
A) 1 and 3
B) 0 and 4
C) -1 and 5
D) 2 and 2
Answer: A) 1 and 3
Solution:
Characteristic equation: (2-λ)(2-λ) - 1 = 0
λ^2 - 4λ + 3 = 0
(λ-1)(λ-3) = 0
λ = 1 or λ = 3
16. What is the result of the matrix subtraction?
[5 2] [1 3]
[3 4] - [2 1]
A) [4 -1]
[1 3]
B) [6 5]
[5 5]
C) [4 5]
[1 3]
D) [4 -1]
[5 5]
Answer: A) [4 -1]
[1 3]
Solution:
[5-1 2-3] = [4 -1]
[3-2 4-1] [1 3]
17. Determine if the following matrix is skew-symmetric:
[ 0 2 -1]
[-2 0 3]
[ 1 -3 0]
A) Skew-symmetric
B) Symmetric
C) Not skew-symmetric
D) Identity matrix
Answer: A) Skew-symmetric
Solution:
A matrix is skew-symmetric if A^T = -A. In this case, the condition is satisfied.
18. Calculate the determinant of the matrix:
[2 0 -1]
[1 3 2]
[0 1 4]
A) 25
B) 23
C) 21
D) 19
Answer: A) 25
Solution:
Using the first row for expansion:
2(3×4 - 2×1) + 0(1×4 - 2×0) + (-1)(1×1 - 3×0)
= 2(12 - 2) + 0 + (-1)(1)
= 2(10) - 1
= 20 - 1
= 19
19. Find the inverse of the matrix:
[2 1]
[1 1]
A) [ 1 -1]
[-1 2]
B) [ 1/2 -1/2]
[-1/2 1]
C) [ 1 -1]
[-1 1]
D) Matrix is not invertible
Answer: C) [ 1 -1]
[-1 1]
Solution:
det = 2(1) - 1(1) = 1
Adjugate matrix = [1 -1]
[-1 2]
Inverse = (1/det) × Adjugate = 1 × [1 -1] = [ 1 -1]
[-1 2] [-1 1]
20. Solve the system of equations using Gaussian elimination:
x + y + z = 6
2x - y + z = 4
x + 2y - z = 2
A) x = 2, y = 1, z = 3
B) x = 1, y = 2, z = 3
C) x = 3, y = 2, z = 1
D) x = 1, y = 3, z = 2
Answer: B) x = 1, y = 2, z = 3
Solution:
Augmented matrix:
[1 1 1 | 6]
[2 -1 1 | 4]
[1 2 -1 | 2]
Row operations:
R2 = R2 - 2R1
R3 = R3 - R1
[1 1 1 | 6]
[0 -3 -1 |-8]
[0 1 -2 |-4]
R3 = R3 + (1/3)R2
[1 1 1 | 6]
[0 -3 -1 |-8]
[0 0 -7/3|-20/3]
Back-substitution:
z = 20/7 = 3
y = (-4 + 2z)/1 = 2
x = 6 - y - z = 1
21. What is the rank of the matrix?
[1 2 3]
[2 4 6]
[3 6 8]
A) 1
B) 2
C) 3
D) 0
Answer: B) 2
Solution:
The third row is not a multiple of the first two rows, but it can be expressed as a linear
combination of them. Thus, the rank is 2.
. Find the inverse of the matrix:
[1 1]
[0 2]
A) [1 -1/2]
[0 1/2]
B) [2 -1]
[0 1]
C) [1 -1]
[0 1/2]
D) Matrix is not invertible
Answer: A) [1 -1/2]
[0 1/2]
Solution:
det = 1(2) - 1(0) = 2
Adjugate matrix = [2 -1]
[0 1]
Inverse = (1/det) × Adjugate = (1/2) × [2 -1] = [1 -1/2]
[0 1] [0 1/2]
12. Solve the system of equations using Cramer's rule:
2x + y = 5
x + 3y = 10
A) x = 1, y = 3
B) x = 2, y = 1
C) x = 3, y = 2
D) x = 0, y = 5
Answer: A) x = 1, y = 3
Solution:
D = |2 1| = 2(3) - 1(1) = 5
|1 3|
Dx = |5 1| = 5(3) - 1(10) = 5
|10 3|
Dy = |2 5| = 2(10) - 5(1) = 15
|1 10|
x = Dx/D = 5/5 = 1
y = Dy/D = 15/5 = 3
13. What is the rank of the matrix?
[1 2 3]
[0 0 0]
[4 5 6]
A) 1
B) 2
C) 3
D) 0
Answer: B) 2
Solution:
The second row is all zeros, but the first and third rows are linearly independent. Thus, the rank is
2.
14. Calculate the trace of the matrix:
[1 0 0]
[0 2 0]
[0 0 3]
A) 6
B) 3
C) 1
D) 0
Answer: A) 6
Solution:
Trace = sum of diagonal elements = 1 + 2 + 3 = 6
15. Find the eigenvalues of the matrix:
[2 1]
[1 2]
A) 1 and 3
B) 0 and 4
C) -1 and 5
D) 2 and 2
Answer: A) 1 and 3
Solution:
Characteristic equation: (2-λ)(2-λ) - 1 = 0
λ^2 - 4λ + 3 = 0
(λ-1)(λ-3) = 0
λ = 1 or λ = 3
16. What is the result of the matrix subtraction?
[5 2] [1 3]
[3 4] - [2 1]
A) [4 -1]
[1 3]
B) [6 5]
[5 5]
C) [4 5]
[1 3]
D) [4 -1]
[5 5]
Answer: A) [4 -1]
[1 3]
Solution:
[5-1 2-3] = [4 -1]
[3-2 4-1] [1 3]
17. Determine if the following matrix is skew-symmetric:
[ 0 2 -1]
[-2 0 3]
[ 1 -3 0]
A) Skew-symmetric
B) Symmetric
C) Not skew-symmetric
D) Identity matrix
Answer: A) Skew-symmetric
Solution:
A matrix is skew-symmetric if A^T = -A. In this case, the condition is satisfied.
18. Calculate the determinant of the matrix:
[2 0 -1]
[1 3 2]
[0 1 4]
A) 25
B) 23
C) 21
D) 19
Answer: A) 25
Solution:
Using the first row for expansion:
2(3×4 - 2×1) + 0(1×4 - 2×0) + (-1)(1×1 - 3×0)
= 2(12 - 2) + 0 + (-1)(1)
= 2(10) - 1
= 20 - 1
= 19
19. Find the inverse of the matrix:
[2 1]
[1 1]
A) [ 1 -1]
[-1 2]
B) [ 1/2 -1/2]
[-1/2 1]
C) [ 1 -1]
[-1 1]
D) Matrix is not invertible
Answer: C) [ 1 -1]
[-1 1]
Solution:
det = 2(1) - 1(1) = 1
Adjugate matrix = [1 -1]
[-1 2]
Inverse = (1/det) × Adjugate = 1 × [1 -1] = [ 1 -1]
[-1 2] [-1 1]
20. Solve the system of equations using Gaussian elimination:
x + y + z = 6
2x - y + z = 4
x + 2y - z = 2
A) x = 2, y = 1, z = 3
B) x = 1, y = 2, z = 3
C) x = 3, y = 2, z = 1
D) x = 1, y = 3, z = 2
Answer: B) x = 1, y = 2, z = 3
Solution:
Augmented matrix:
[1 1 1 | 6]
[2 -1 1 | 4]
[1 2 -1 | 2]
Row operations:
R2 = R2 - 2R1
R3 = R3 - R1
[1 1 1 | 6]
[0 -3 -1 |-8]
[0 1 -2 |-4]
R3 = R3 + (1/3)R2
[1 1 1 | 6]
[0 -3 -1 |-8]
[0 0 -7/3|-20/3]
Back-substitution:
z = 20/7 = 3
y = (-4 + 2z)/1 = 2
x = 6 - y - z = 1
21. What is the rank of the matrix?
[1 2 3]
[2 4 6]
[3 6 8]
A) 1
B) 2
C) 3
D) 0
Answer: B) 2
Solution:
The third row is not a multiple of the first two rows, but it can be expressed as a linear
combination of them. Thus, the rank is 2.
. Find the inverse of the matrix:
[1 1]
[0 2]
A) [1 -1/2]
[0 1/2]
B) [2 -1]
[0 1]
C) [1 -1]
[0 1/2]
D) Matrix is not invertible
Answer: A) [1 -1/2]
[0 1/2]
Solution:
det = 1(2) - 1(0) = 2
Adjugate matrix = [2 -1]
[0 1]
Inverse = (1/det) × Adjugate = (1/2) × [2 -1] = [1 -1/2]
[0 1] [0 1/2]
12. Solve the system of equations using Cramer's rule:
2x + y = 5
x + 3y = 10
A) x = 1, y = 3
B) x = 2, y = 1
C) x = 3, y = 2
D) x = 0, y = 5
Answer: A) x = 1, y = 3
Solution:
D = |2 1| = 2(3) - 1(1) = 5
|1 3|
Dx = |5 1| = 5(3) - 1(10) = 5
|10 3|
Dy = |2 5| = 2(10) - 5(1) = 15
|1 10|
x = Dx/D = 5/5 = 1
y = Dy/D = 15/5 = 3
13. What is the rank of the matrix?
[1 2 3]
[0 0 0]
[4 5 6]
A) 1
B) 2
C) 3
D) 0
Answer: B) 2
Solution:
The second row is all zeros, but the first and third rows are linearly independent. Thus, the rank is
2.
14. Calculate the trace of the matrix:
[1 0 0]
[0 2 0]
[0 0 3]
A) 6
B) 3
C) 1
D) 0
Answer: A) 6
Solution:
Trace = sum of diagonal elements = 1 + 2 + 3 = 6
15. Find the eigenvalues of the matrix:
[2 1]
[1 2]
A) 1 and 3
B) 0 and 4
C) -1 and 5
D) 2 and 2
Answer: A) 1 and 3
Solution:
Characteristic equation: (2-λ)(2-λ) - 1 = 0
λ^2 - 4λ + 3 = 0
(λ-1)(λ-3) = 0
λ = 1 or λ = 3
16. What is the result of the matrix subtraction?
[5 2] [1 3]
[3 4] - [2 1]
A) [4 -1]
[1 3]
B) [6 5]
[5 5]
C) [4 5]
[1 3]
D) [4 -1]
[5 5]
Answer: A) [4 -1]
[1 3]
Solution:
[5-1 2-3] = [4 -1]
[3-2 4-1] [1 3]
17. Determine if the following matrix is skew-symmetric:
[ 0 2 -1]
[-2 0 3]
[ 1 -3 0]
A) Skew-symmetric
B) Symmetric
C) Not skew-symmetric
D) Identity matrix
Answer: A) Skew-symmetric
Solution:
A matrix is skew-symmetric if A^T = -A. In this case, the condition is satisfied.
18. Calculate the determinant of the matrix:
[2 0 -1]
[1 3 2]
[0 1 4]
A) 25
B) 23
C) 21
D) 19
Answer: A) 25
Solution:
Using the first row for expansion:
2(3×4 - 2×1) + 0(1×4 - 2×0) + (-1)(1×1 - 3×0)
= 2(12 - 2) + 0 + (-1)(1)
= 2(10) - 1
= 20 - 1
= 19
19. Find the inverse of the matrix:
[2 1]
[1 1]
A) [ 1 -1]
[-1 2]
B) [ 1/2 -1/2]
[-1/2 1]
C) [ 1 -1]
[-1 1]
D) Matrix is not invertible
Answer: C) [ 1 -1]
[-1 1]
Solution:
det = 2(1) - 1(1) = 1
Adjugate matrix = [1 -1]
[-1 2]
Inverse = (1/det) × Adjugate = 1 × [1 -1] = [ 1 -1]
[-1 2] [-1 1]
20. Solve the system of equations using Gaussian elimination:
x + y + z = 6
2x - y + z = 4
x + 2y - z = 2
A) x = 2, y = 1, z = 3
B) x = 1, y = 2, z = 3
C) x = 3, y = 2, z = 1
D) x = 1, y = 3, z = 2
Answer: B) x = 1, y = 2, z = 3
Solution:
Augmented matrix:
[1 1 1 | 6]
[2 -1 1 | 4]
[1 2 -1 | 2]
Row operations:
R2 = R2 - 2R1
R3 = R3 - R1
[1 1 1 | 6]
[0 -3 -1 |-8]
[0 1 -2 |-4]
R3 = R3 + (1/3)R2
[1 1 1 | 6]
[0 -3 -1 |-8]
[0 0 -7/3|-20/3]
Back-substitution:
z = 20/7 = 3
y = (-4 + 2z)/1 = 2
x = 6 - y - z = 1
21. What is the rank of the matrix?
[1 2 3]
[2 4 6]
[3 6 8]
A) 1
B) 2
C) 3
D) 0
Answer: B) 2
Solution:
The third row is not a multiple of the first two rows, but it can be expressed as a linear
combination of them. Thus, the rank is 2.
. Find the inverse of the matrix:
[1 1]
[0 2]
A) [1 -1/2]
[0 1/2]
B) [2 -1]
[0 1]
C) [1 -1]
[0 1/2]
D) Matrix is not invertible
Answer: A) [1 -1/2]
[0 1/2]
Solution:
det = 1(2) - 1(0) = 2
Adjugate matrix = [2 -1]
[0 1]
Inverse = (1/det) × Adjugate = (1/2) × [2 -1] = [1 -1/2]
[0 1] [0 1/2]
12. Solve the system of equations using Cramer's rule:
2x + y = 5
x + 3y = 10
A) x = 1, y = 3
B) x = 2, y = 1
C) x = 3, y = 2
D) x = 0, y = 5
Answer: A) x = 1, y = 3
Solution:
D = |2 1| = 2(3) - 1(1) = 5
|1 3|
Dx = |5 1| = 5(3) - 1(10) = 5
|10 3|
Dy = |2 5| = 2(10) - 5(1) = 15
|1 10|
x = Dx/D = 5/5 = 1
y = Dy/D = 15/5 = 3
13. What is the rank of the matrix?
[1 2 3]
[0 0 0]
[4 5 6]
A) 1
B) 2
C) 3
D) 0
Answer: B) 2
Solution:
The second row is all zeros, but the first and third rows are linearly independent. Thus, the rank is
2.
14. Calculate the trace of the matrix:
[1 0 0]
[0 2 0]
[0 0 3]
A) 6
B) 3
C) 1
D) 0
Answer: A) 6
Solution:
Trace = sum of diagonal elements = 1 + 2 + 3 = 6
15. Find the eigenvalues of the matrix:
[2 1]
[1 2]
A) 1 and 3
B) 0 and 4
C) -1 and 5
D) 2 and 2
Answer: A) 1 and 3
Solution:
Characteristic equation: (2-λ)(2-λ) - 1 = 0
λ^2 - 4λ + 3 = 0
(λ-1)(λ-3) = 0
λ = 1 or λ = 3
16. What is the result of the matrix subtraction?
[5 2] [1 3]
[3 4] - [2 1]
A) [4 -1]
[1 3]
B) [6 5]
[5 5]
C) [4 5]
[1 3]
D) [4 -1]
[5 5]
Answer: A) [4 -1]
[1 3]
Solution:
[5-1 2-3] = [4 -1]
[3-2 4-1] [1 3]
17. Determine if the following matrix is skew-symmetric:
[ 0 2 -1]
[-2 0 3]
[ 1 -3 0]
A) Skew-symmetric
B) Symmetric
C) Not skew-symmetric
D) Identity matrix
Answer: A) Skew-symmetric
Solution:
A matrix is skew-symmetric if A^T = -A. In this case, the condition is satisfied.
18. Calculate the determinant of the matrix:
[2 0 -1]
[1 3 2]
[0 1 4]
A) 25
B) 23
C) 21
D) 19
Answer: A) 25
Solution:
Using the first row for expansion:
2(3×4 - 2×1) + 0(1×4 - 2×0) + (-1)(1×1 - 3×0)
= 2(12 - 2) + 0 + (-1)(1)
= 2(10) - 1
= 20 - 1
= 19
19. Find the inverse of the matrix:
[2 1]
[1 1]
A) [ 1 -1]
[-1 2]
B) [ 1/2 -1/2]
[-1/2 1]
C) [ 1 -1]
[-1 1]
D) Matrix is not invertible
Answer: C) [ 1 -1]
[-1 1]
Solution:
det = 2(1) - 1(1) = 1
Adjugate matrix = [1 -1]
[-1 2]
Inverse = (1/det) × Adjugate = 1 × [1 -1] = [ 1 -1]
[-1 2] [-1 1]
20. Solve the system of equations using Gaussian elimination:
x + y + z = 6
2x - y + z = 4
x + 2y - z = 2
A) x = 2, y = 1, z = 3
B) x = 1, y = 2, z = 3
C) x = 3, y = 2, z = 1
D) x = 1, y = 3, z = 2
Answer: B) x = 1, y = 2, z = 3
Solution:
Augmented matrix:
[1 1 1 | 6]
[2 -1 1 | 4]
[1 2 -1 | 2]
Row operations:
R2 = R2 - 2R1
R3 = R3 - R1
[1 1 1 | 6]
[0 -3 -1 |-8]
[0 1 -2 |-4]
R3 = R3 + (1/3)R2
[1 1 1 | 6]
[0 -3 -1 |-8]
[0 0 -7/3|-20/3]
Back-substitution:
z = 20/7 = 3
y = (-4 + 2z)/1 = 2
x = 6 - y - z = 1
21. What is the rank of the matrix?
[1 2 3]
[2 4 6]
[3 6 8]
A) 1
B) 2
C) 3
D) 0
Answer: B) 2
Solution:
The third row is not a multiple of the first two rows, but it can be expressed as a linear
combination of them. Thus, the rank is 2.
. Find the inverse of the matrix:
[1 1]
[0 2]
A) [1 -1/2]
[0 1/2]
B) [2 -1]
[0 1]
C) [1 -1]
[0 1/2]
D) Matrix is not invertible
Answer: A) [1 -1/2]
[0 1/2]
Solution:
det = 1(2) - 1(0) = 2
Adjugate matrix = [2 -1]
[0 1]
Inverse = (1/det) × Adjugate = (1/2) × [2 -1] = [1 -1/2]
[0 1] [0 1/2]
12. Solve the system of equations using Cramer's rule:
2x + y = 5
x + 3y = 10
A) x = 1, y = 3
B) x = 2, y = 1
C) x = 3, y = 2
D) x = 0, y = 5
Answer: A) x = 1, y = 3
Solution:
D = |2 1| = 2(3) - 1(1) = 5
|1 3|
Dx = |5 1| = 5(3) - 1(10) = 5
|10 3|
Dy = |2 5| = 2(10) - 5(1) = 15
|1 10|
x = Dx/D = 5/5 = 1
y = Dy/D = 15/5 = 3
13. What is the rank of the matrix?
[1 2 3]
[0 0 0]
[4 5 6]
A) 1
B) 2
C) 3
D) 0
Answer: B) 2
Solution:
The second row is all zeros, but the first and third rows are linearly independent. Thus, the rank is
2.
14. Calculate the trace of the matrix:
[1 0 0]
[0 2 0]
[0 0 3]
A) 6
B) 3
C) 1
D) 0
Answer: A) 6
Solution:
Trace = sum of diagonal elements = 1 + 2 + 3 = 6
15. Find the eigenvalues of the matrix:
[2 1]
[1 2]
A) 1 and 3
B) 0 and 4
C) -1 and 5
D) 2 and 2
Answer: A) 1 and 3
Solution:
Characteristic equation: (2-λ)(2-λ) - 1 = 0
λ^2 - 4λ + 3 = 0
(λ-1)(λ-3) = 0
λ = 1 or λ = 3
16. What is the result of the matrix subtraction?
[5 2] [1 3]
[3 4] - [2 1]
A) [4 -1]
[1 3]
B) [6 5]
[5 5]
C) [4 5]
[1 3]
D) [4 -1]
[5 5]
Answer: A) [4 -1]
[1 3]
Solution:
[5-1 2-3] = [4 -1]
[3-2 4-1] [1 3]
17. Determine if the following matrix is skew-symmetric:
[ 0 2 -1]
[-2 0 3]
[ 1 -3 0]
A) Skew-symmetric
B) Symmetric
C) Not skew-symmetric
D) Identity matrix
Answer: A) Skew-symmetric
Solution:
A matrix is skew-symmetric if A^T = -A. In this case, the condition is satisfied.
18. Calculate the determinant of the matrix:
[2 0 -1]
[1 3 2]
[0 1 4]
A) 25
B) 23
C) 21
D) 19
Answer: A) 25
Solution:
Using the first row for expansion:
2(3×4 - 2×1) + 0(1×4 - 2×0) + (-1)(1×1 - 3×0)
= 2(12 - 2) + 0 + (-1)(1)
= 2(10) - 1
= 20 - 1
= 19
19. Find the inverse of the matrix:
[2 1]
[1 1]
A) [ 1 -1]
[-1 2]
B) [ 1/2 -1/2]
[-1/2 1]
C) [ 1 -1]
[-1 1]
D) Matrix is not invertible
Answer: C) [ 1 -1]
[-1 1]
Solution:
det = 2(1) - 1(1) = 1
Adjugate matrix = [1 -1]
[-1 2]
Inverse = (1/det) × Adjugate = 1 × [1 -1] = [ 1 -1]
[-1 2] [-1 1]
20. Solve the system of equations using Gaussian elimination:
x + y + z = 6
2x - y + z = 4
x + 2y - z = 2
A) x = 2, y = 1, z = 3
B) x = 1, y = 2, z = 3
C) x = 3, y = 2, z = 1
D) x = 1, y = 3, z = 2
Answer: B) x = 1, y = 2, z = 3
Solution:
Augmented matrix:
[1 1 1 | 6]
[2 -1 1 | 4]
[1 2 -1 | 2]
Row operations:
R2 = R2 - 2R1
R3 = R3 - R1
[1 1 1 | 6]
[0 -3 -1 |-8]
[0 1 -2 |-4]
R3 = R3 + (1/3)R2
[1 1 1 | 6]
[0 -3 -1 |-8]
[0 0 -7/3|-20/3]
Back-substitution:
z = 20/7 = 3
y = (-4 + 2z)/1 = 2
x = 6 - y - z = 1
21. What is the rank of the matrix?
[1 2 3]
[2 4 6]
[3 6 8]
A) 1
B) 2
C) 3
D) 0
Answer: B) 2
Solution:
The third row is not a multiple of the first two rows, but it can be expressed as a linear
combination of them. Thus, the rank is 2.
. Find the inverse of the matrix:
[1 1]
[0 2]
A) [1 -1/2]
[0 1/2]
B) [2 -1]
[0 1]
C) [1 -1]
[0 1/2]
D) Matrix is not invertible
Answer: A) [1 -1/2]
[0 1/2]
Solution:
det = 1(2) - 1(0) = 2
Adjugate matrix = [2 -1]
[0 1]
Inverse = (1/det) × Adjugate = (1/2) × [2 -1] = [1 -1/2]
[0 1] [0 1/2]
12. Solve the system of equations using Cramer's rule:
2x + y = 5
x + 3y = 10
A) x = 1, y = 3
B) x = 2, y = 1
C) x = 3, y = 2
D) x = 0, y = 5
Answer: A) x = 1, y = 3
Solution:
D = |2 1| = 2(3) - 1(1) = 5
|1 3|
Dx = |5 1| = 5(3) - 1(10) = 5
|10 3|
Dy = |2 5| = 2(10) - 5(1) = 15
|1 10|
x = Dx/D = 5/5 = 1
y = Dy/D = 15/5 = 3
13. What is the rank of the matrix?
[1 2 3]
[0 0 0]
[4 5 6]
A) 1
B) 2
C) 3
D) 0
Answer: B) 2
Solution:
The second row is all zeros, but the first and third rows are linearly independent. Thus, the rank is
2.
14. Calculate the trace of the matrix:
[1 0 0]
[0 2 0]
[0 0 3]
A) 6
B) 3
C) 1
D) 0
Answer: A) 6
Solution:
Trace = sum of diagonal elements = 1 + 2 + 3 = 6
15. Find the eigenvalues of the matrix:
[2 1]
[1 2]
A) 1 and 3
B) 0 and 4
C) -1 and 5
D) 2 and 2
Answer: A) 1 and 3
Solution:
Characteristic equation: (2-λ)(2-λ) - 1 = 0
λ^2 - 4λ + 3 = 0
(λ-1)(λ-3) = 0
λ = 1 or λ = 3
16. What is the result of the matrix subtraction?
[5 2] [1 3]
[3 4] - [2 1]
A) [4 -1]
[1 3]
B) [6 5]
[5 5]
C) [4 5]
[1 3]
D) [4 -1]
[5 5]
Answer: A) [4 -1]
[1 3]
Solution:
[5-1 2-3] = [4 -1]
[3-2 4-1] [1 3]
17. Determine if the following matrix is skew-symmetric:
[ 0 2 -1]
[-2 0 3]
[ 1 -3 0]
A) Skew-symmetric
B) Symmetric
C) Not skew-symmetric
D) Identity matrix
Answer: A) Skew-symmetric
Solution:
A matrix is skew-symmetric if A^T = -A. In this case, the condition is satisfied.
18. Calculate the determinant of the matrix:
[2 0 -1]
[1 3 2]
[0 1 4]
A) 25
B) 23
C) 21
D) 19
Answer: A) 25
Solution:
Using the first row for expansion:
2(3×4 - 2×1) + 0(1×4 - 2×0) + (-1)(1×1 - 3×0)
= 2(12 - 2) + 0 + (-1)(1)
= 2(10) - 1
= 20 - 1
= 19
19. Find the inverse of the matrix:
[2 1]
[1 1]
A) [ 1 -1]
[-1 2]
B) [ 1/2 -1/2]
[-1/2 1]
C) [ 1 -1]
[-1 1]
D) Matrix is not invertible
Answer: C) [ 1 -1]
[-1 1]
Solution:
det = 2(1) - 1(1) = 1
Adjugate matrix = [1 -1]
[-1 2]
Inverse = (1/det) × Adjugate = 1 × [1 -1] = [ 1 -1]
[-1 2] [-1 1]
20. Solve the system of equations using Gaussian elimination:
x + y + z = 6
2x - y + z = 4
x + 2y - z = 2
A) x = 2, y = 1, z = 3
B) x = 1, y = 2, z = 3
C) x = 3, y = 2, z = 1
D) x = 1, y = 3, z = 2
Answer: B) x = 1, y = 2, z = 3
Solution:
Augmented matrix:
[1 1 1 | 6]
[2 -1 1 | 4]
[1 2 -1 | 2]
Row operations:
R2 = R2 - 2R1
R3 = R3 - R1
[1 1 1 | 6]
[0 -3 -1 |-8]
[0 1 -2 |-4]
R3 = R3 + (1/3)R2
[1 1 1 | 6]
[0 -3 -1 |-8]
[0 0 -7/3|-20/3]
Back-substitution:
z = 20/7 = 3
y = (-4 + 2z)/1 = 2
x = 6 - y - z = 1
21. What is the rank of the matrix?
[1 2 3]
[2 4 6]
[3 6 8]
A) 1
B) 2
C) 3
D) 0
Answer: B) 2
Solution:
The third row is not a multiple of the first two rows, but it can be expressed as a linear
combination of them. Thus, the rank is 2.
. Find the inverse of the matrix:
[1 1]
[0 2]
A) [1 -1/2]
[0 1/2]
B) [2 -1]
[0 1]
C) [1 -1]
[0 1/2]
D) Matrix is not invertible
Answer: A) [1 -1/2]
[0 1/2]
Solution:
det = 1(2) - 1(0) = 2
Adjugate matrix = [2 -1]
[0 1]
Inverse = (1/det) × Adjugate = (1/2) × [2 -1] = [1 -1/2]
[0 1] [0 1/2]
12. Solve the system of equations using Cramer's rule:
2x + y = 5
x + 3y = 10
A) x = 1, y = 3
B) x = 2, y = 1
C) x = 3, y = 2
D) x = 0, y = 5
Answer: A) x = 1, y = 3
Solution:
D = |2 1| = 2(3) - 1(1) = 5
|1 3|
Dx = |5 1| = 5(3) - 1(10) = 5
|10 3|
Dy = |2 5| = 2(10) - 5(1) = 15
|1 10|
x = Dx/D = 5/5 = 1
y = Dy/D = 15/5 = 3
13. What is the rank of the matrix?
[1 2 3]
[0 0 0]
[4 5 6]
A) 1
B) 2
C) 3
D) 0
Answer: B) 2
Solution:
The second row is all zeros, but the first and third rows are linearly independent. Thus, the rank is
2.
14. Calculate the trace of the matrix:
[1 0 0]
[0 2 0]
[0 0 3]
A) 6
B) 3
C) 1
D) 0
Answer: A) 6
Solution:
Trace = sum of diagonal elements = 1 + 2 + 3 = 6
15. Find the eigenvalues of the matrix:
[2 1]
[1 2]
A) 1 and 3
B) 0 and 4
C) -1 and 5
D) 2 and 2
Answer: A) 1 and 3
Solution:
Characteristic equation: (2-λ)(2-λ) - 1 = 0
λ^2 - 4λ + 3 = 0
(λ-1)(λ-3) = 0
λ = 1 or λ = 3
16. What is the result of the matrix subtraction?
[5 2] [1 3]
[3 4] - [2 1]
A) [4 -1]
[1 3]
B) [6 5]
[5 5]
C) [4 5]
[1 3]
D) [4 -1]
[5 5]
Answer: A) [4 -1]
[1 3]
Solution:
[5-1 2-3] = [4 -1]
[3-2 4-1] [1 3]
17. Determine if the following matrix is skew-symmetric:
[ 0 2 -1]
[-2 0 3]
[ 1 -3 0]
A) Skew-symmetric
B) Symmetric
C) Not skew-symmetric
D) Identity matrix
Answer: A) Skew-symmetric
Solution:
A matrix is skew-symmetric if A^T = -A. In this case, the condition is satisfied.
18. Calculate the determinant of the matrix:
[2 0 -1]
[1 3 2]
[0 1 4]
A) 25
B) 23
C) 21
D) 19
Answer: A) 25
Solution:
Using the first row for expansion:
2(3×4 - 2×1) + 0(1×4 - 2×0) + (-1)(1×1 - 3×0)
= 2(12 - 2) + 0 + (-1)(1)
= 2(10) - 1
= 20 - 1
= 19
19. Find the inverse of the matrix:
[2 1]
[1 1]
A) [ 1 -1]
[-1 2]
B) [ 1/2 -1/2]
[-1/2 1]
C) [ 1 -1]
[-1 1]
D) Matrix is not invertible
Answer: C) [ 1 -1]
[-1 1]
Solution:
det = 2(1) - 1(1) = 1
Adjugate matrix = [1 -1]
[-1 2]
Inverse = (1/det) × Adjugate = 1 × [1 -1] = [ 1 -1]
[-1 2] [-1 1]
20. Solve the system of equations using Gaussian elimination:
x + y + z = 6
2x - y + z = 4
x + 2y - z = 2
A) x = 2, y = 1, z = 3
B) x = 1, y = 2, z = 3
C) x = 3, y = 2, z = 1
D) x = 1, y = 3, z = 2
Answer: B) x = 1, y = 2, z = 3
Solution:
Augmented matrix:
[1 1 1 | 6]
[2 -1 1 | 4]
[1 2 -1 | 2]
Row operations:
R2 = R2 - 2R1
R3 = R3 - R1
[1 1 1 | 6]
[0 -3 -1 |-8]
[0 1 -2 |-4]
R3 = R3 + (1/3)R2
[1 1 1 | 6]
[0 -3 -1 |-8]
[0 0 -7/3|-20/3]
Back-substitution:
z = 20/7 = 3
y = (-4 + 2z)/1 = 2
x = 6 - y - z = 1
21. What is the rank of the matrix?
[1 2 3]
[2 4 6]
[3 6 8]
A) 1
B) 2
C) 3
D) 0
Answer: B) 2
Solution:
The third row is not a multiple of the first two rows, but it can be expressed as a linear
combination of them. Thus, the rank is 2.
. Find the inverse of the matrix:
[1 1]
[0 2]
A) [1 -1/2]
[0 1/2]
B) [2 -1]
[0 1]
C) [1 -1]
[0 1/2]
D) Matrix is not invertible
Answer: A) [1 -1/2]
[0 1/2]
Solution:
det = 1(2) - 1(0) = 2
Adjugate matrix = [2 -1]
[0 1]
Inverse = (1/det) × Adjugate = (1/2) × [2 -1] = [1 -1/2]
[0 1] [0 1/2]
12. Solve the system of equations using Cramer's rule:
2x + y = 5
x + 3y = 10
A) x = 1, y = 3
B) x = 2, y = 1
C) x = 3, y = 2
D) x = 0, y = 5
Answer: A) x = 1, y = 3
Solution:
D = |2 1| = 2(3) - 1(1) = 5
|1 3|
Dx = |5 1| = 5(3) - 1(10) = 5
|10 3|
Dy = |2 5| = 2(10) - 5(1) = 15
|1 10|
x = Dx/D = 5/5 = 1
y = Dy/D = 15/5 = 3
13. What is the rank of the matrix?
[1 2 3]
[0 0 0]
[4 5 6]
A) 1
B) 2
C) 3
D) 0
Answer: B) 2
Solution:
The second row is all zeros, but the first and third rows are linearly independent. Thus, the rank is
2.
14. Calculate the trace of the matrix:
[1 0 0]
[0 2 0]
[0 0 3]
A) 6
B) 3
C) 1
D) 0
Answer: A) 6
Solution:
Trace = sum of diagonal elements = 1 + 2 + 3 = 6
15. Find the eigenvalues of the matrix:
[2 1]
[1 2]
A) 1 and 3
B) 0 and 4
C) -1 and 5
D) 2 and 2
Answer: A) 1 and 3
Solution:
Characteristic equation: (2-λ)(2-λ) - 1 = 0
λ^2 - 4λ + 3 = 0
(λ-1)(λ-3) = 0
λ = 1 or λ = 3
16. What is the result of the matrix subtraction?
[5 2] [1 3]
[3 4] - [2 1]
A) [4 -1]
[1 3]
B) [6 5]
[5 5]
C) [4 5]
[1 3]
D) [4 -1]
[5 5]
Answer: A) [4 -1]
[1 3]
Solution:
[5-1 2-3] = [4 -1]
[3-2 4-1] [1 3]
17. Determine if the following matrix is skew-symmetric:
[ 0 2 -1]
[-2 0 3]
[ 1 -3 0]
A) Skew-symmetric
B) Symmetric
C) Not skew-symmetric
D) Identity matrix
Answer: A) Skew-symmetric
Solution:
A matrix is skew-symmetric if A^T = -A. In this case, the condition is satisfied.
18. Calculate the determinant of the matrix:
[2 0 -1]
[1 3 2]
[0 1 4]
A) 25
B) 23
C) 21
D) 19
Answer: A) 25
Solution:
Using the first row for expansion:
2(3×4 - 2×1) + 0(1×4 - 2×0) + (-1)(1×1 - 3×0)
= 2(12 - 2) + 0 + (-1)(1)
= 2(10) - 1
= 20 - 1
= 19
19. Find the inverse of the matrix:
[2 1]
[1 1]
A) [ 1 -1]
[-1 2]
B) [ 1/2 -1/2]
[-1/2 1]
C) [ 1 -1]
[-1 1]
D) Matrix is not invertible
Answer: C) [ 1 -1]
[-1 1]
Solution:
det = 2(1) - 1(1) = 1
Adjugate matrix = [1 -1]
[-1 2]
Inverse = (1/det) × Adjugate = 1 × [1 -1] = [ 1 -1]
[-1 2] [-1 1]
20. Solve the system of equations using Gaussian elimination:
x + y + z = 6
2x - y + z = 4
x + 2y - z = 2
A) x = 2, y = 1, z = 3
B) x = 1, y = 2, z = 3
C) x = 3, y = 2, z = 1
D) x = 1, y = 3, z = 2
Answer: B) x = 1, y = 2, z = 3
Solution:
Augmented matrix:
[1 1 1 | 6]
[2 -1 1 | 4]
[1 2 -1 | 2]
Row operations:
R2 = R2 - 2R1
R3 = R3 - R1
[1 1 1 | 6]
[0 -3 -1 |-8]
[0 1 -2 |-4]
R3 = R3 + (1/3)R2
[1 1 1 | 6]
[0 -3 -1 |-8]
[0 0 -7/3|-20/3]
Back-substitution:
z = 20/7 = 3
y = (-4 + 2z)/1 = 2
x = 6 - y - z = 1
21. What is the rank of the matrix?
[1 2 3]
[2 4 6]
[3 6 8]
A) 1
B) 2
C) 3
D) 0
Answer: B) 2
Solution:
The third row is not a multiple of the first two rows, but it can be expressed as a linear
combination of them. Thus, the rank is 2.
22. Calculate the trace of the matrix:
[1 2 3]
[4 5 6]
[7 8 9]
A) 15
B) 18
C) 21
D) 24
Answer: A) 15
Solution:
Trace = sum of diagonal elements = 1 + 5 + 9 = 15
23. Find the eigenvalues of the matrix:
[4 1]
[1 4]
A) 3 and 5
B) 2 and 6
C) 1 and 7
D) 0 and 8
Answer: A) 3 and 5
Solution:
Characteristic equation: (4-λ)(4-λ) - 1 = 0
λ^2 - 8λ + 15 = 0
(λ-3)(λ-5) = 0
λ = 3 or λ = 5
24. What is the result of the matrix multiplication?
[1 2] [5 6]
[3 4] × [7 8]
A) [19 22]
[43 50]
B) [12 14]
[20 22]
C) [5 12]
[21 32]
D) [26 30]
[38 44]
Answer: A) [19 22]
[43 50]
Solution:
[1×5+2×7 1×6+2×8] = [5+14 6+16] = [19 22]
[3×5+4×7 3×6+4×8] [15+28 18+32] [43 50]
25. Determine if the following matrix is orthogonal:
[1/√2 -1/√2]
[1/√2 1/√2]
A) Orthogonal
B) Not orthogonal
C) Symmetric
D) Skew-symmetric
Answer: A) Orthogonal
Solution:
A matrix is orthogonal if A^T × A = I
[1/√2 1/√2] [1/√2 -1/√2] = [1 0]
[-1/√2 1/√2] × [1/√2 1/√2] [
Students also viewed