Question: Given A=(3214) and B=(10−12)(a) calculate AB and BA. Is matrix multiplication commutative? (b) Calculate det(A) and A−1. (c) Solve Ax=(712). (d) Calculate (AB)−1 and verify it equals B−1A−1.
Solution:
(a) AB=(3214)(10−12)=(32−16). BA=(10−12)(3214)=(14−38). AB=BASo matrix multiplication is not commutative.
(d) If det(M)=0The matrix is singular (non-invertible). This means: the rows (and columns) are linearly dependent, the matrix does not have full rank, the system Mx=b has either no solution or infinitely many solutions (depending on b), and the corresponding linear transformation collapses the space into a lower dimension.
Question:A=(4213). (a) Find the eigenvalues of A. (b) Find the corresponding eigenvectors. (c) Form the matrix P of eigenvectors and P−1AP. What form does this take? (d) Use the eigenvalues to calculate A5.
Question: The matrix T=(01−10) represents a rotation. (a) Find the angle and direction of rotation. (b) The point (3,4) is transformed by T. Calculate the image. (c) If S=(−1001) (reflection in the y-axis), find TS and describe the combined transformation. (d) Calculate det(T) and det(S)And explain how determinants relate to area scale factors.
Solution:
(a) T maps (1,0) to (0,1) and (0,1) to (−1,0). This is a rotation of 90∘anticlockwise about the origin.
(b) (01−10)(34)=(−43). Image: (−4,3).
(c) TS=(01−10)(−1001)=(0−1−10).
This maps (1,0) to (0,−1) and (0,1) to (−1,0): a reflection in the line y=−x.
(d) det(T)=0×0−(−1)×1=1. det(S)=−1×1−0=−1.
The absolute value of the determinant gives the area scale factor: T preserves area (scale factor 1), S preserves area (scale factor ∣−1∣=1). The sign indicates orientation: positive = orientation preserved (rotation), negative = orientation reversed (reflection).
IT-2: Systems of Linear Equations (with Complex Numbers)
Question: Solve the system: x + 2y + z = 4$$2x - y + 3z = 9$$x + y + z = 5. (a) Write in matrix form Ax=b. (b) Calculate det(A). (c) Find A−1 and solve for x. (d) Explain what would happen if det(A)=0.
(d) If det(A)=0The matrix is singular and A−1 does not exist. This means the three equations are linearly dependent. The system has either no unique solution: either no solution (inconsistent) or infinitely many solutions.
Question: The matrix A=(2112) defines a system of coupled differential equations dtdx=Ax where x=(xy). (a) Find the eigenvalues and eigenvectors of A. (b) Write the general solution for x(t) given that x(0)=(31). (c) Calculate x(1). (d) Describe the long-term behaviour of the solution.
(d) As t→∞The term e3t dominates (both eigenvalues are positive). Both x and y grow exponentially, with x≈2e3t and y≈2e3t. The solution diverges away from the origin — the origin is an unstable node. The ratio x/y→1 as t→∞Meaning the trajectory approaches the direction of the eigenvector (11).
Multiplying matrices in the wrong order: For a system Ax=b, the solution is x=A−1b, not bA−1. Matrix multiplication is not commutative. Always multiply the inverse on the left: A−1 times b, not b times A−1.
Confusing eigenvalues with eigenvectors: An eigenvalue λ is a scalar satisfying det(A−λI)=0. An eigenvector v satisfies Av=λv. Students often compute the characteristic equation correctly but then substitute the eigenvalue back into A−λI instead of solving (A−λI)v=0 for the eigenvector.
Forgetting to normalise or verify eigenvectors: After finding an eigenvector, always verify by computing Av and checking it equals λv. A common error is a sign mistake in the eigenvector components that goes undetected. Also, any scalar multiple of an eigenvector is still an eigenvector — you can scale to simplify.