Browse papers
A

Section A: Long Answer Questions

Attempt any TWO questions.

3 questions·10 marks each
1long10 marks

Define rank of a matrix. Find the rank of the matrix by reducing it to echelon form, and solve a system of linear equations using the Gauss elimination method.

Rank of a matrix

The rank of a matrix AA is the number of non-zero rows in its row-echelon form, equivalently the order of the largest non-zero minor (the maximum number of linearly independent rows or columns). It is denoted ρ(A)\rho(A) or rank(A)\operatorname{rank}(A).

Rank by reduction to echelon form

Consider

A=(123234357).A=\begin{pmatrix}1&2&3\\2&3&4\\3&5&7\end{pmatrix}.

Apply elementary row operations:

  • R2R22R1,R3R33R1R_2\to R_2-2R_1,\quad R_3\to R_3-3R_1:
(123012012).\begin{pmatrix}1&2&3\\0&-1&-2\\0&-1&-2\end{pmatrix}.
  • R3R3R2R_3\to R_3-R_2:
(123012000).\begin{pmatrix}1&2&3\\0&-1&-2\\0&0&0\end{pmatrix}.

There are 2 non-zero rows, so ρ(A)=2\rho(A)=2.

Solving a system by Gauss elimination

Solve

x+y+z=6,2xy+z=3,x+2yz=2.x+y+z=6,\quad 2x-y+z=3,\quad x+2y-z=2.

Form the augmented matrix and eliminate:

(111621131212)R3R1R22R1(111603190124).\left(\begin{array}{ccc|c}1&1&1&6\\2&-1&1&3\\1&2&-1&2\end{array}\right)\xrightarrow[R_3-R_1]{R_2-2R_1}\left(\begin{array}{ccc|c}1&1&1&6\\0&-3&-1&-9\\0&1&-2&-4\end{array}\right).

R33R3+R2R_3\to 3R_3+R_2:

(1116031900721).\left(\begin{array}{ccc|c}1&1&1&6\\0&-3&-1&-9\\0&0&-7&-21\end{array}\right).

Back-substitution:

  • 7z=21z=3-7z=-21\Rightarrow z=3.
  • 3yz=93y3=9y=2-3y-z=-9\Rightarrow -3y-3=-9\Rightarrow y=2.
  • x+y+z=6x=623=1x+y+z=6\Rightarrow x=6-2-3=1.

Solution: x=1, y=2, z=3x=1,\ y=2,\ z=3.

matrixranklinear-systems
2long10 marks

State and prove the Cayley-Hamilton theorem. Use it to find the inverse of a given 3x3 matrix.

Cayley–Hamilton theorem (statement)

Every square matrix satisfies its own characteristic equation. If AA is an n×nn\times n matrix with characteristic polynomial p(λ)=det(AλI)p(\lambda)=\det(A-\lambda I), then p(A)=Op(A)=O (the zero matrix).

Proof (outline)

Let p(λ)=det(AλI)p(\lambda)=\det(A-\lambda I). Consider the adjoint adj(AλI)\operatorname{adj}(A-\lambda I), whose entries are polynomials in λ\lambda of degree at most n1n-1. By the adjoint property,

(AλI)adj(AλI)=det(AλI)I=p(λ)I.(A-\lambda I)\,\operatorname{adj}(A-\lambda I)=\det(A-\lambda I)\,I=p(\lambda)I.

Write adj(AλI)=Bn1λn1++B1λ+B0\operatorname{adj}(A-\lambda I)=B_{n-1}\lambda^{n-1}+\dots+B_1\lambda+B_0 with matrix coefficients BiB_i, and p(λ)=k=0nckλkp(\lambda)=\sum_{k=0}^{n}c_k\lambda^{k}. Equating like powers of λ\lambda on both sides of (AλI)adj(AλI)=p(λ)I(A-\lambda I)\,\operatorname{adj}(A-\lambda I)=p(\lambda)I gives relations among the BiB_i. Multiplying these matrix equations successively by I,A,A2,,AnI,A,A^2,\dots,A^n and adding causes all terms to telescope, yielding kckAk=p(A)=O\sum_k c_k A^{k}=p(A)=O. \blacksquare

Finding A1A^{-1} using the theorem

Let

A=(121211112).A=\begin{pmatrix}1&2&-1\\2&-1&1\\1&1&-2\end{pmatrix}.

Characteristic polynomial (with trA=2\operatorname{tr}A=-2, sum of principal 2×22\times2 minors =6=-6, detA=6\det A=6):

p(λ)=λ32λ2+6λ+6, i.e. λ3+2λ26λ6=0.p(\lambda)=-\lambda^{3}-2\lambda^{2}+6\lambda+6,\ \text{i.e. } \lambda^{3}+2\lambda^{2}-6\lambda-6=0.

So A3+2A26A6I=OA^{3}+2A^{2}-6A-6I=O.

Multiply by A1A^{-1}:

A2+2A6I6A1=O    A1=16(A2+2A6I).A^{2}+2A-6I-6A^{-1}=O\;\Rightarrow\; A^{-1}=\tfrac{1}{6}\left(A^{2}+2A-6I\right).

Compute A2A^{2}, substitute, and the result is A1=16(A2+2A6I)A^{-1}=\tfrac{1}{6}(A^{2}+2A-6I), which can be evaluated entrywise to obtain the inverse.

Method: the Cayley–Hamilton relation lets us express A1A^{-1} as a polynomial in AA, avoiding the adjoint/cofactor computation.

matrixcayley-hamilton
3long10 marks

Define eigenvalues and eigenvectors. Find the eigenvalues and corresponding eigenvectors of a given 3x3 matrix.

Definitions

For a square matrix AA, a scalar λ\lambda is an eigenvalue if there exists a non-zero vector XX with

AX=λX,X0.AX=\lambda X,\quad X\neq 0.

The vector XX is the corresponding eigenvector. Eigenvalues are the roots of the characteristic equation det(AλI)=0\det(A-\lambda I)=0.

Worked example

Let

A=(201020102).A=\begin{pmatrix}2&0&1\\0&2&0\\1&0&2\end{pmatrix}.

Characteristic equation:

det(AλI)=2λ0102λ0102λ=(2λ)[(2λ)21]=0.\det(A-\lambda I)=\begin{vmatrix}2-\lambda&0&1\\0&2-\lambda&0\\1&0&2-\lambda\end{vmatrix}=(2-\lambda)\big[(2-\lambda)^2-1\big]=0.

So (2λ)=0(2-\lambda)=0 or (2λ)2=1(2-\lambda)^2=1, giving eigenvalues

λ1=2,λ2=3,λ3=1.\lambda_1=2,\quad \lambda_2=3,\quad \lambda_3=1.

Eigenvectors:

  • λ=1\lambda=1: (AI)X=0x1+x3=0, x2=0X1=(1,0,1)T(A-I)X=0\Rightarrow x_1+x_3=0,\ x_2=0\Rightarrow X_1=(1,0,-1)^T.
  • λ=2\lambda=2: (A2I)X=0x3=0, x1=0, x2(A-2I)X=0\Rightarrow x_3=0,\ x_1=0,\ x_2 free X2=(0,1,0)T\Rightarrow X_2=(0,1,0)^T.
  • λ=3\lambda=3: (A3I)X=0x1+x3=0, x2=0X3=(1,0,1)T(A-3I)X=0\Rightarrow -x_1+x_3=0,\ x_2=0\Rightarrow X_3=(1,0,1)^T.

Eigenvalues 1,2,31,2,3 with eigenvectors (1,0,1)T,(0,1,0)T,(1,0,1)T(1,0,-1)^T,\,(0,1,0)^T,\,(1,0,1)^T respectively.

eigenvalueseigenvectors
B

Section B: Short Answer Questions

Attempt any EIGHT questions.

9 questions·5 marks each
4short5 marks

Define a symmetric matrix and an orthogonal matrix with examples.

Symmetric matrix: a square matrix AA that equals its transpose, AT=AA^{T}=A (so aij=ajia_{ij}=a_{ji}). Example: (1223)\begin{pmatrix}1&2\\2&3\end{pmatrix}.

Orthogonal matrix: a square matrix AA whose transpose is its inverse, ATA=AAT=IA^{T}A=AA^{T}=I, equivalently A1=ATA^{-1}=A^{T}. Its rows (and columns) form an orthonormal set and detA=±1\det A=\pm1. Example: (cosθsinθsinθcosθ)\begin{pmatrix}\cos\theta&-\sin\theta\\\sin\theta&\cos\theta\end{pmatrix}, since ATA=IA^{T}A=I.

matrix
5short5 marks

Find the rank of the matrix [[1,2,3],[2,4,6],[1,1,1]].

Reduce A=(123246111)A=\begin{pmatrix}1&2&3\\2&4&6\\1&1&1\end{pmatrix} to echelon form.

  • R2R22R1R_2\to R_2-2R_1, R3R3R1R_3\to R_3-R_1:
(123000012).\begin{pmatrix}1&2&3\\0&0&0\\0&-1&-2\end{pmatrix}.
  • Swap R2R3R_2\leftrightarrow R_3:
(123012000).\begin{pmatrix}1&2&3\\0&-1&-2\\0&0&0\end{pmatrix}.

There are 2 non-zero rows, so ρ(A)=2\rho(A)=2. (Note row 2 is twice row 1, so the rank cannot be 3.)

rank
6short5 marks

State the properties of determinants.

Properties of determinants:

  1. det(AT)=det(A)\det(A^{T})=\det(A) — value is unchanged by transposing.
  2. Interchanging two rows (or columns) multiplies the determinant by 1-1.
  3. If any two rows (or columns) are identical or proportional, det=0\det=0.
  4. Multiplying one row/column by a scalar kk multiplies the determinant by kk.
  5. Adding a multiple of one row (column) to another leaves the determinant unchanged.
  6. If a row or column is all zeros, det=0\det=0.
  7. det(AB)=det(A)det(B)\det(AB)=\det(A)\det(B); for an n×nn\times n matrix, det(kA)=kndet(A)\det(kA)=k^{n}\det(A).
  8. For a triangular (or diagonal) matrix, det\det equals the product of the diagonal entries; det(I)=1\det(I)=1. Also det(A1)=1/det(A)\det(A^{-1})=1/\det(A).
determinant
7short5 marks

What is a null space of a matrix?

The null space (or kernel) of an m×nm\times n matrix AA is the set of all vectors XX satisfying AX=0AX=0:

N(A)={XRn:AX=0}.N(A)=\{X\in\mathbb{R}^{n}: AX=0\}.

It is a subspace of Rn\mathbb{R}^{n} (it contains 00 and is closed under addition and scalar multiplication). Its dimension is the nullity of AA, and by the rank–nullity theorem rank(A)+nullity(A)=n\operatorname{rank}(A)+\text{nullity}(A)=n.

Example: for A=(1122)A=\begin{pmatrix}1&1\\2&2\end{pmatrix}, AX=0AX=0 gives x+y=0x+y=0, so N(A)={t(1,1)T}N(A)=\{t(1,-1)^T\}, a 1-dimensional subspace.

vector-space
8short5 marks

Define a basis of a vector space.

A basis of a vector space VV is a set of vectors {v1,v2,,vn}\{v_1,v_2,\dots,v_n\} that is

  1. linearly independent, and
  2. spans VV (every vector in VV is a linear combination of them).

Thus a basis is a minimal spanning set / maximal linearly independent set. The number of vectors in any basis is the dimension of VV, and every vector has a unique representation in a given basis.

Example: {(1,0),(0,1)}\{(1,0),(0,1)\} is the standard basis of R2\mathbb{R}^{2}.

basis
9short5 marks

Find the eigenvalues of the matrix [[2,0],[0,3]].

For a diagonal matrix the eigenvalues are simply the diagonal entries. Formally:

det(AλI)=2λ003λ=(2λ)(3λ)=0.\det(A-\lambda I)=\begin{vmatrix}2-\lambda&0\\0&3-\lambda\end{vmatrix}=(2-\lambda)(3-\lambda)=0.

Hence the eigenvalues are λ1=2\lambda_1=2 and λ2=3\lambda_2=3 (with eigenvectors (1,0)T(1,0)^T and (0,1)T(0,1)^T).

eigenvalues
10short5 marks

Show that the vectors (1,0) and (0,1) are linearly independent.

Consider the linear combination set to zero:

c1(1,0)+c2(0,1)=(0,0)    (c1,c2)=(0,0).c_1(1,0)+c_2(0,1)=(0,0)\;\Rightarrow\;(c_1,c_2)=(0,0).

This forces c1=0c_1=0 and c2=0c_2=0. Since the only solution is the trivial one, the vectors (1,0)(1,0) and (0,1)(0,1) are linearly independent.

Equivalently, the matrix (1001)\begin{pmatrix}1&0\\0&1\end{pmatrix} has det=10\det=1\neq0, confirming independence.

linear-independence
11short5 marks

Define adjoint of a matrix.

The adjoint (adjugate) of a square matrix AA is the transpose of its cofactor matrix:

adj(A)=[Cij]T,Cij=(1)i+jMij,\operatorname{adj}(A)=[C_{ij}]^{T},\qquad C_{ij}=(-1)^{i+j}M_{ij},

where MijM_{ij} is the minor obtained by deleting row ii and column jj. It satisfies the key identity

Aadj(A)=adj(A)A=det(A)I,A\,\operatorname{adj}(A)=\operatorname{adj}(A)\,A=\det(A)\,I,

so for det(A)0\det(A)\neq0, A1=1det(A)adj(A)A^{-1}=\dfrac{1}{\det(A)}\operatorname{adj}(A).

Example: for A=(abcd)A=\begin{pmatrix}a&b\\c&d\end{pmatrix}, adj(A)=(dbca)\operatorname{adj}(A)=\begin{pmatrix}d&-b\\-c&a\end{pmatrix}.

matrix
12short5 marks

What is a singular matrix?

A singular matrix is a square matrix whose determinant is zero, det(A)=0\det(A)=0. Consequences:

  • It has no inverse (it is non-invertible).
  • Its rows/columns are linearly dependent, so its rank is less than its order.
  • The system AX=0AX=0 has non-trivial solutions, and λ=0\lambda=0 is an eigenvalue.

Example: (1224)\begin{pmatrix}1&2\\2&4\end{pmatrix} has det=1422=0\det=1\cdot4-2\cdot2=0, so it is singular. (A matrix with det0\det\neq0 is called non-singular.)

matrix

Frequently asked questions

Where can I find the BSc CSIT (TU) Mathematics II (BSc CSIT, MTH163) question paper 2074?
The full BSc CSIT (TU) Mathematics II (BSc CSIT, MTH163) 2074 (regular) question paper is available free on Kekkei. You can read every question online and attempt the paper under timed exam conditions.
Does the Mathematics II (BSc CSIT, MTH163) 2074 paper come with solutions?
Yes. Every question on this Mathematics II (BSc CSIT, MTH163) past paper includes a step-by-step solution, plus instant AI feedback when you attempt it on Kekkei.
How many marks is the BSc CSIT (TU) Mathematics II (BSc CSIT, MTH163) 2074 paper?
The BSc CSIT (TU) Mathematics II (BSc CSIT, MTH163) 2074 paper carries 60 full marks and is meant to be completed in 180 minutes, across 12 questions.
Is practising this Mathematics II (BSc CSIT, MTH163) past paper free?
Yes — reading and attempting this Mathematics II (BSc CSIT, MTH163) past paper on Kekkei is completely free.