Browse papers
A

Section A: Long Answer Questions

Attempt any TWO questions.

3 questions·10 marks each
1long10 marks

Solve the system of linear equations using the Gauss-Jordan method. Discuss the consistency of the system using the rank of the coefficient and augmented matrices.

Gauss-Jordan Method and Consistency

Method

The Gauss-Jordan method reduces the augmented matrix [Ab][A \mid b] to reduced row echelon form (RREF) using elementary row operations, so the solution can be read off directly.

Worked Example

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.

Augmented matrix:

[Ab]=[111621131212][A\mid b]=\begin{bmatrix} 1 & 1 & 1 & 6\\ 2 & -1 & 1 & 3\\ 1 & 2 & -1 & 2 \end{bmatrix}

Step 1. R2R22R1R_2 \to R_2 - 2R_1, R3R3R1R_3 \to R_3 - R_1:

[111603190124]\begin{bmatrix} 1 & 1 & 1 & 6\\ 0 & -3 & -1 & -9\\ 0 & 1 & -2 & -4 \end{bmatrix}

Step 2. R213R2R_2 \to -\tfrac{1}{3}R_2, then R1R1R2R_1 \to R_1 - R_2, R3R3R2R_3 \to R_3 - R_2:

[102330113300737]\begin{bmatrix} 1 & 0 & \tfrac{2}{3} & 3\\ 0 & 1 & \tfrac{1}{3} & 3\\ 0 & 0 & -\tfrac{7}{3} & -7 \end{bmatrix}

Step 3. R337R3z=3R_3 \to -\tfrac{3}{7}R_3 \Rightarrow z = 3. Back-eliminate column 3: R1R123R3R_1 \to R_1 - \tfrac{2}{3}R_3, R2R213R3R_2 \to R_2 - \tfrac{1}{3}R_3:

[100101020013]\begin{bmatrix} 1 & 0 & 0 & 1\\ 0 & 1 & 0 & 2\\ 0 & 0 & 1 & 3 \end{bmatrix}

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

Consistency via Rank

Let r(A)r(A) be the rank of the coefficient matrix, r([Ab])r([A\mid b]) the rank of the augmented matrix, and nn the number of unknowns.

  • If r(A)r([Ab])r(A) \neq r([A\mid b]) — the system is inconsistent (no solution).
  • If r(A)=r([Ab])=nr(A) = r([A\mid b]) = nconsistent with a unique solution.
  • If r(A)=r([Ab])<nr(A) = r([A\mid b]) < nconsistent with infinitely many solutions (with nrn - r free parameters).

Here r(A)=r([Ab])=3=nr(A) = r([A\mid b]) = 3 = n, so the system is consistent with a unique solution.

linear-systemsgauss-jordan
2long10 marks

Define orthogonal and orthonormal sets of vectors. Apply the Gram-Schmidt orthogonalization process to a given set of vectors.

Orthogonal and Orthonormal Sets; Gram-Schmidt

Definitions

Let VV be an inner product space with inner product ,\langle\,,\rangle.

  • A set {v1,,vk}\{v_1,\dots,v_k\} of non-zero vectors is orthogonal if vi,vj=0\langle v_i, v_j\rangle = 0 for all iji \neq j.
  • It is orthonormal if it is orthogonal and each vector is a unit vector: vi,vj=δij\langle v_i, v_j\rangle = \delta_{ij} (i.e. vi=1\|v_i\| = 1).

Gram-Schmidt Process

Given linearly independent {u1,,uk}\{u_1,\dots,u_k\}, construct an orthogonal set {w1,,wk}\{w_1,\dots,w_k\}:

w1=u1,wi=uij=1i1ui,wjwj,wjwj.w_1 = u_1,\qquad w_i = u_i - \sum_{j=1}^{i-1}\frac{\langle u_i, w_j\rangle}{\langle w_j, w_j\rangle}\,w_j.

Normalize: ei=wiwie_i = \dfrac{w_i}{\|w_i\|} to get an orthonormal set.

Worked Example

Let u1=(1,1,0), u2=(1,0,1), u3=(0,1,1)u_1 = (1,1,0),\ u_2 = (1,0,1),\ u_3 = (0,1,1) in R3\mathbb{R}^3.

w1=(1,1,0)w_1 = (1,1,0), w1,w1=2\langle w_1,w_1\rangle = 2.

w2w_2: u2,w1=1\langle u_2, w_1\rangle = 1, so

w2=(1,0,1)12(1,1,0)=(12,12,1).w_2 = (1,0,1) - \tfrac{1}{2}(1,1,0) = \left(\tfrac{1}{2}, -\tfrac{1}{2}, 1\right).

w2,w2=14+14+1=32.\langle w_2, w_2\rangle = \tfrac14 + \tfrac14 + 1 = \tfrac32.

w3w_3: u3,w1=1\langle u_3, w_1\rangle = 1, u3,w2=12+1=12\langle u_3, w_2\rangle = -\tfrac12 + 1 = \tfrac12, so

w3=(0,1,1)12(1,1,0)1/23/2(12,12,1)=(23,23,23).w_3 = (0,1,1) - \tfrac{1}{2}(1,1,0) - \frac{1/2}{3/2}\left(\tfrac12,-\tfrac12,1\right) = \left(-\tfrac{2}{3}, \tfrac{2}{3}, \tfrac{2}{3}\right).

Orthonormal set (normalizing):

e1=12(1,1,0),e2=16(1,1,2),e3=13(1,1,1).e_1 = \tfrac{1}{\sqrt2}(1,1,0),\quad e_2 = \tfrac{1}{\sqrt6}(1,-1,2),\quad e_3 = \tfrac{1}{\sqrt3}(-1,1,1).
gram-schmidtorthogonal
3long10 marks

Diagonalize the given matrix A by finding a matrix P such that (P^{-1}AP) is diagonal. State the conditions under which a matrix is diagonalizable.

Diagonalization of a Matrix

Conditions for Diagonalizability

An n×nn\times n matrix AA is diagonalizable if there exists an invertible PP with P1AP=DP^{-1}AP = D diagonal. This holds iff:

  • AA has nn linearly independent eigenvectors, equivalently
  • For every eigenvalue, its geometric multiplicity equals its algebraic multiplicity.

(Sufficient condition: if AA has nn distinct eigenvalues, it is diagonalizable.) The columns of PP are the eigenvectors and DD holds the corresponding eigenvalues.

Worked Example

Let A=[4123]A = \begin{bmatrix} 4 & 1\\ 2 & 3 \end{bmatrix}.

Eigenvalues: det(AλI)=(4λ)(3λ)2=λ27λ+10=(λ5)(λ2)\det(A - \lambda I) = (4-\lambda)(3-\lambda) - 2 = \lambda^2 - 7\lambda + 10 = (\lambda-5)(\lambda-2). So λ1=5, λ2=2\lambda_1 = 5,\ \lambda_2 = 2 (distinct \Rightarrow diagonalizable).

Eigenvector for λ=5\lambda = 5: (A5I)v=0[1122]v=0v1=(1,1)T.(A-5I)v=0 \Rightarrow \begin{bmatrix}-1 & 1\\ 2 & -2\end{bmatrix}v = 0 \Rightarrow v_1 = (1,1)^T.

Eigenvector for λ=2\lambda = 2: (A2I)v=0[2121]v=0v2=(1,2)T.(A-2I)v=0 \Rightarrow \begin{bmatrix}2 & 1\\ 2 & 1\end{bmatrix}v = 0 \Rightarrow v_2 = (1,-2)^T.

Result:

P=[1112],P1AP=D=[5002].P = \begin{bmatrix} 1 & 1\\ 1 & -2 \end{bmatrix},\qquad P^{-1}AP = D = \begin{bmatrix} 5 & 0\\ 0 & 2 \end{bmatrix}.

Verification: detP=30\det P = -3 \neq 0, so PP is invertible and the diagonalization is valid.

diagonalization
B

Section B: Short Answer Questions

Attempt any EIGHT questions.

9 questions·5 marks each
4short5 marks

Define linearly dependent vectors with an example.

A set of vectors {v1,v2,,vn}\{v_1, v_2, \dots, v_n\} is linearly dependent if there exist scalars c1,c2,,cnc_1, c_2, \dots, c_n, not all zero, such that

c1v1+c2v2++cnvn=0.c_1 v_1 + c_2 v_2 + \cdots + c_n v_n = 0.

This means at least one vector can be written as a linear combination of the others.

Example: In R2\mathbb{R}^2, the vectors v1=(1,2)v_1 = (1,2) and v2=(2,4)v_2 = (2,4) are linearly dependent because 2v1v2=02v_1 - v_2 = 0 (here c1=2, c2=1c_1 = 2,\ c_2 = -1), and v2=2v1v_2 = 2v_1.

linear-independence
5short5 marks

What is an augmented matrix?

An augmented matrix of a linear system Ax=bAx = b is the matrix [Ab][A \mid b] formed by appending the column of constants bb to the coefficient matrix AA.

For the system

a11x+a12y=b1,a21x+a22y=b2,a_{11}x + a_{12}y = b_1,\quad a_{21}x + a_{22}y = b_2,

the augmented matrix is

[a11a12b1a21a22b2].\left[\begin{array}{cc|c} a_{11} & a_{12} & b_1\\ a_{21} & a_{22} & b_2 \end{array}\right].

It is used to solve the system by row reduction (Gaussian / Gauss-Jordan elimination).

linear-systems
6short5 marks

Define dimension of a vector space.

The dimension of a vector space VV is the number of vectors in any basis of VV — that is, the maximum number of linearly independent vectors in VV. It is denoted dim(V)\dim(V).

All bases of a given vector space contain the same number of vectors, so the dimension is well-defined.

Examples: dim(Rn)=n\dim(\mathbb{R}^n) = n; the space of 2×22\times 2 matrices has dimension 44; dim({0})=0\dim(\{0\}) = 0.

dimension
7short5 marks

State the conditions for diagonalizability of a matrix.

An n×nn\times n matrix AA is diagonalizable if and only if any of the following equivalent conditions holds:

  1. AA has nn linearly independent eigenvectors.
  2. For every eigenvalue, its geometric multiplicity equals its algebraic multiplicity.
  3. The sum of the dimensions of the eigenspaces equals nn.

Sufficient (but not necessary) condition: if AA has nn distinct eigenvalues, then it is diagonalizable. (Real symmetric matrices are always diagonalizable.)

diagonalization
8short5 marks

Define an inner product space.

An inner product space is a vector space VV over R\mathbb{R} (or C\mathbb{C}) equipped with an inner product ,:V×VR\langle\,,\rangle : V \times V \to \mathbb{R} (or C\mathbb{C}) satisfying, for all u,v,wVu,v,w \in V and scalars α\alpha:

  1. Linearity: αu+v,w=αu,w+v,w\langle \alpha u + v, w\rangle = \alpha\langle u,w\rangle + \langle v,w\rangle.
  2. Symmetry (conjugate symmetry): u,v=v,u\langle u,v\rangle = \overline{\langle v,u\rangle} (just u,v=v,u\langle u,v\rangle = \langle v,u\rangle in the real case).
  3. Positive-definiteness: v,v0\langle v,v\rangle \ge 0, with equality iff v=0v = 0.

Example: Rn\mathbb{R}^n with the dot product x,y=ixiyi\langle x,y\rangle = \sum_i x_i y_i.

inner-product
9short5 marks

Find the eigenvalues of [[4,1],[2,3]].

For A=[4123]A = \begin{bmatrix} 4 & 1\\ 2 & 3 \end{bmatrix}, solve the characteristic equation det(AλI)=0\det(A - \lambda I) = 0:

det[4λ123λ]=(4λ)(3λ)(1)(2)=λ27λ+10=0.\det\begin{bmatrix} 4-\lambda & 1\\ 2 & 3-\lambda \end{bmatrix} = (4-\lambda)(3-\lambda) - (1)(2) = \lambda^2 - 7\lambda + 10 = 0.

Factoring: (λ5)(λ2)=0(\lambda - 5)(\lambda - 2) = 0.

Eigenvalues: λ1=5,λ2=2.\lambda_1 = 5,\quad \lambda_2 = 2.

(Check: trace =4+3=7=5+2= 4+3 = 7 = 5+2; determinant =122=10=5×2= 12-2 = 10 = 5\times 2.)

eigenvalues
10short5 marks

What is the kernel of a linear transformation?

The kernel (or null space) of a linear transformation T:VWT: V \to W is the set of all vectors in VV that map to the zero vector in WW:

ker(T)={vV:T(v)=0}.\ker(T) = \{\, v \in V : T(v) = 0 \,\}.

The kernel is a subspace of the domain VV. Its dimension is called the nullity of TT. The transformation TT is injective (one-to-one) if and only if ker(T)={0}\ker(T) = \{0\}.

By the rank-nullity theorem, dim(kerT)+dim(ImT)=dimV\dim(\ker T) + \dim(\operatorname{Im} T) = \dim V.

linear-transformation
11short5 marks

Define a Hermitian matrix.

A square complex matrix AA is Hermitian if it is equal to its own conjugate transpose:

A=A=AT,i.e.aij=aji for all i,j.A = A^{*} = \overline{A}^{\,T},\quad\text{i.e.}\quad a_{ij} = \overline{a_{ji}} \text{ for all } i,j.

The diagonal entries of a Hermitian matrix are real. Its eigenvalues are always real, and eigenvectors for distinct eigenvalues are orthogonal. (A real Hermitian matrix is just a symmetric matrix.)

Example: [23i3+i5]\begin{bmatrix} 2 & 3-i\\ 3+i & 5 \end{bmatrix} is Hermitian.

matrix
12short5 marks

State Cramer's rule.

Cramer's Rule gives the solution of a system Ax=bAx = b of nn linear equations in nn unknowns, provided det(A)0\det(A) \neq 0.

The solution is

xi=det(Ai)det(A),i=1,2,,n,x_i = \frac{\det(A_i)}{\det(A)},\qquad i = 1, 2, \dots, n,

where AiA_i is the matrix obtained from AA by replacing its ii-th column with the constant vector bb.

If det(A)=0\det(A) = 0, the rule does not apply (the system has either no solution or infinitely many).

Example (2×2): for [abcd][xy]=[ef]\begin{bmatrix} a & b\\ c & d \end{bmatrix}\begin{bmatrix} x\\ y \end{bmatrix} = \begin{bmatrix} e\\ f \end{bmatrix},

x=ebfdabcd,y=aecfabcd.x = \frac{\begin{vmatrix} e & b\\ f & d \end{vmatrix}}{\begin{vmatrix} a & b\\ c & d \end{vmatrix}},\qquad y = \frac{\begin{vmatrix} a & e\\ c & f \end{vmatrix}}{\begin{vmatrix} a & b\\ c & d \end{vmatrix}}.
cramers-rule

Frequently asked questions

Where can I find the BSc CSIT (TU) Mathematics II (BSc CSIT, MTH163) question paper 2077?
The full BSc CSIT (TU) Mathematics II (BSc CSIT, MTH163) 2077 (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) 2077 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) 2077 paper?
The BSc CSIT (TU) Mathematics II (BSc CSIT, MTH163) 2077 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.