Browse papers
A

Section A: Long Answer Questions

Attempt all questions.

5 questions
1long8 marks

Solve the following system of linear equations by the matrix inversion method:

x+2y+3z=6,2x+4y+5z=11,3x+5y+6z=14.x + 2y + 3z = 6, \qquad 2x + 4y + 5z = 11, \qquad 3x + 5y + 6z = 14.

Setting up the matrix equation.

Write the system as Ax=bA\mathbf{x} = \mathbf{b} where

A=(123245356),x=(xyz),b=(61114).A = \begin{pmatrix} 1 & 2 & 3 \\ 2 & 4 & 5 \\ 3 & 5 & 6 \end{pmatrix}, \quad \mathbf{x} = \begin{pmatrix} x \\ y \\ z \end{pmatrix}, \quad \mathbf{b} = \begin{pmatrix} 6 \\ 11 \\ 14 \end{pmatrix}.

Step 1 — Determinant of AA. Expanding along the first row:

A=1(4655)2(2653)+3(2543)|A| = 1(4\cdot6 - 5\cdot5) - 2(2\cdot6 - 5\cdot3) + 3(2\cdot5 - 4\cdot3) =1(2425)2(1215)+3(1012)=1(1)2(3)+3(2)=1+66=1.= 1(24-25) - 2(12-15) + 3(10-12) = 1(-1) - 2(-3) + 3(-2) = -1 + 6 - 6 = -1.

Since A=10|A| = -1 \neq 0, A1A^{-1} exists and the system has a unique solution.

Step 2 — Cofactor matrix. Compute each cofactor CijC_{ij}:

C11=+(2425)=1,C12=(1215)=3,C13=+(1012)=2,C_{11} = +(24-25) = -1, \quad C_{12} = -(12-15) = 3, \quad C_{13} = +(10-12) = -2, C21=(1215)=3,C22=+(69)=3,C23=(56)=1,C_{21} = -(12-15) = 3, \quad C_{22} = +(6-9) = -3, \quad C_{23} = -(5-6) = 1, C31=+(1012)=2,C32=(56)=1,C33=+(44)=0.C_{31} = +(10-12) = -2, \quad C_{32} = -(5-6) = 1, \quad C_{33} = +(4-4) = 0.

Step 3 — Adjoint (transpose of the cofactor matrix). Since the cofactor matrix is symmetric here:

adj(A)=(132331210).\operatorname{adj}(A) = \begin{pmatrix} -1 & 3 & -2 \\ 3 & -3 & 1 \\ -2 & 1 & 0 \end{pmatrix}.

Step 4 — Inverse. A1=1Aadj(A)=11adj(A)A^{-1} = \dfrac{1}{|A|}\operatorname{adj}(A) = \dfrac{1}{-1}\operatorname{adj}(A):

A1=(132331210).A^{-1} = \begin{pmatrix} 1 & -3 & 2 \\ -3 & 3 & -1 \\ 2 & -1 & 0 \end{pmatrix}.

Step 5 — Solve. x=A1b\mathbf{x} = A^{-1}\mathbf{b}:

x=1(6)+(3)(11)+2(14)=633+28=1,x = 1(6) + (-3)(11) + 2(14) = 6 - 33 + 28 = 1, y=3(6)+3(11)+(1)(14)=18+3314=1,y = -3(6) + 3(11) + (-1)(14) = -18 + 33 - 14 = 1, z=2(6)+(1)(11)+0(14)=1211+0=1.z = 2(6) + (-1)(11) + 0(14) = 12 - 11 + 0 = 1.

Verification. 1+2+3=61 + 2 + 3 = 6 ✓, 2+4+5=112 + 4 + 5 = 11 ✓, 3+5+6=143 + 5 + 6 = 14 ✓.

Final answer: x=1,  y=1,  z=1.\boxed{x = 1,\; y = 1,\; z = 1.}

determinantsmatricessystem-of-equations
2long8 marks

Find the equation of the plane passing through the points A(2,1,1)A(2, -1, 1), B(1,1,0)B(1, 1, 0) and C(3,0,2)C(3, 0, 2). Hence find the perpendicular distance of the point P(4,3,5)P(4, 3, 5) from this plane.

Step 1 — Two direction vectors in the plane.

AB=BA=(12,  1(1),  01)=(1,2,1),\vec{AB} = B - A = (1-2,\; 1-(-1),\; 0-1) = (-1, 2, -1), AC=CA=(32,  0(1),  21)=(1,1,1).\vec{AC} = C - A = (3-2,\; 0-(-1),\; 2-1) = (1, 1, 1).

Step 2 — Normal vector n=AB×AC\mathbf{n} = \vec{AB} \times \vec{AC}:

n=ijk121111=i(21(1)1)j((1)1(1)1)+k((1)121).\mathbf{n} = \begin{vmatrix} \mathbf{i} & \mathbf{j} & \mathbf{k} \\ -1 & 2 & -1 \\ 1 & 1 & 1 \end{vmatrix} = \mathbf{i}(2\cdot1 - (-1)\cdot1) - \mathbf{j}((-1)\cdot1 - (-1)\cdot1) + \mathbf{k}((-1)\cdot1 - 2\cdot1). n=i(2+1)j(1+1)+k(12)=(3,0,3).\mathbf{n} = \mathbf{i}(2+1) - \mathbf{j}(-1+1) + \mathbf{k}(-1-2) = (3, 0, -3).

Divide by 3: take n=(1,0,1)\mathbf{n} = (1, 0, -1).

Step 3 — Equation of the plane. Using point A(2,1,1)A(2,-1,1):

1(x2)+0(y+1)1(z1)=0    x2z+1=0    xz1=0.1(x-2) + 0(y+1) - 1(z-1) = 0 \;\Rightarrow\; x - 2 - z + 1 = 0 \;\Rightarrow\; \boxed{x - z - 1 = 0}.

Check with BB and CC: BB: 101=01 - 0 - 1 = 0 ✓; CC: 321=03 - 2 - 1 = 0 ✓.

Step 4 — Perpendicular distance of P(4,3,5)P(4,3,5). For plane xz1=0x - z - 1 = 0:

d=x0z0112+02+(1)2=4512=22=22=2.d = \frac{|x_0 - z_0 - 1|}{\sqrt{1^2 + 0^2 + (-1)^2}} = \frac{|4 - 5 - 1|}{\sqrt{2}} = \frac{|-2|}{\sqrt{2}} = \frac{2}{\sqrt{2}} = \sqrt{2}.

Final answers: Plane: xz1=0\boxed{x - z - 1 = 0}; distance =21.414 units= \boxed{\sqrt{2} \approx 1.414 \text{ units}}.

3d-geometryplaneline
3long8 marks

Solve the differential equation

d2ydx25dydx+6y=e4x.\frac{d^2y}{dx^2} - 5\frac{dy}{dx} + 6y = e^{4x}.

Step 1 — Complementary function (CF). The auxiliary equation is

m25m+6=0    (m2)(m3)=0    m=2,3.m^2 - 5m + 6 = 0 \;\Rightarrow\; (m-2)(m-3) = 0 \;\Rightarrow\; m = 2,\, 3.

Real distinct roots give

yc=C1e2x+C2e3x.y_c = C_1 e^{2x} + C_2 e^{3x}.

Step 2 — Particular integral (PI). For RHS e4xe^{4x}, the operator method gives

yp=1D25D+6e4x.y_p = \frac{1}{D^2 - 5D + 6}\, e^{4x}.

Substitute D=4D = 4 (since 44 is not a root of the auxiliary equation):

yp=1425(4)+6e4x=11620+6e4x=12e4x.y_p = \frac{1}{4^2 - 5(4) + 6}\, e^{4x} = \frac{1}{16 - 20 + 6}\, e^{4x} = \frac{1}{2}\, e^{4x}.

Verification. Let yp=12e4xy_p = \tfrac12 e^{4x}. Then yp=2e4xy_p' = 2e^{4x}, yp=8e4xy_p'' = 8e^{4x}, so

yp5yp+6yp=8e4x10e4x+3e4x=e4x.y_p'' - 5y_p' + 6y_p = 8e^{4x} - 10e^{4x} + 3e^{4x} = e^{4x}.

Step 3 — General solution.

y=C1e2x+C2e3x+12e4x\boxed{y = C_1 e^{2x} + C_2 e^{3x} + \tfrac{1}{2} e^{4x}}

where C1,C2C_1, C_2 are arbitrary constants.

second-order-odemethod-of-undetermined-coefficientslinear-ode
4long8 marks

Obtain the Fourier series expansion of the function f(x)=x2f(x) = x^2 in the interval π<x<π-\pi < x < \pi, with f(x+2π)=f(x)f(x+2\pi)=f(x). Hence deduce that

n=11n2=π26.\sum_{n=1}^{\infty}\frac{1}{n^2} = \frac{\pi^2}{6}.

Setup. Period 2π2\pi, so f(x)=a02+n=1(ancosnx+bnsinnx)f(x) = \dfrac{a_0}{2} + \sum_{n=1}^{\infty}\big(a_n\cos nx + b_n\sin nx\big).

Since f(x)=x2f(x)=x^2 is an even function, bn=0b_n = 0 for all nn.

Step 1 — Constant term a0a_0.

a0=1πππx2dx=2π0πx2dx=2ππ33=2π23.a_0 = \frac{1}{\pi}\int_{-\pi}^{\pi} x^2\,dx = \frac{2}{\pi}\int_{0}^{\pi} x^2\,dx = \frac{2}{\pi}\cdot\frac{\pi^3}{3} = \frac{2\pi^2}{3}.

Step 2 — Cosine coefficients ana_n.

an=2π0πx2cosnxdx.a_n = \frac{2}{\pi}\int_{0}^{\pi} x^2 \cos nx\, dx.

Integrate by parts twice:

x2cosnxdx=x2sinnxn+2xcosnxn22sinnxn3.\int x^2\cos nx\,dx = \frac{x^2\sin nx}{n} + \frac{2x\cos nx}{n^2} - \frac{2\sin nx}{n^3}.

Evaluate from 00 to π\pi. At x=πx=\pi: sinnπ=0\sin n\pi = 0, cosnπ=(1)n\cos n\pi = (-1)^n; at x=0x=0 all terms vanish. So

0πx2cosnxdx=0+2π(1)nn20=2π(1)nn2.\int_{0}^{\pi} x^2\cos nx\,dx = 0 + \frac{2\pi(-1)^n}{n^2} - 0 = \frac{2\pi(-1)^n}{n^2}.

Therefore

an=2π2π(1)nn2=4(1)nn2.a_n = \frac{2}{\pi}\cdot\frac{2\pi(-1)^n}{n^2} = \frac{4(-1)^n}{n^2}.

Step 3 — Fourier series.

x2=π23+4n=1(1)nn2cosnx,π<x<π.\boxed{x^2 = \frac{\pi^2}{3} + 4\sum_{n=1}^{\infty}\frac{(-1)^n}{n^2}\cos nx}, \qquad -\pi < x < \pi.

Step 4 — Deduction. Put x=πx = \pi, where f(π)=π2f(\pi)=\pi^2 and cosnπ=(1)n\cos n\pi = (-1)^n, so (1)ncosnπ=(1)2n=1(-1)^n\cos n\pi = (-1)^{2n}=1:

π2=π23+4n=11n2.\pi^2 = \frac{\pi^2}{3} + 4\sum_{n=1}^{\infty}\frac{1}{n^2}. 4n=11n2=π2π23=2π23    n=11n2=2π212=π26.4\sum_{n=1}^{\infty}\frac{1}{n^2} = \pi^2 - \frac{\pi^2}{3} = \frac{2\pi^2}{3} \;\Rightarrow\; \sum_{n=1}^{\infty}\frac{1}{n^2} = \frac{2\pi^2}{12} = \boxed{\frac{\pi^2}{6}}.

fourier-seriesperiodic-functionhalf-range
5long8 marks

Test the convergence of the following series:

(a) n=1n2n\displaystyle \sum_{n=1}^{\infty} \frac{n}{2^n}

(b) n=1n+1n3+2\displaystyle \sum_{n=1}^{\infty} \frac{n+1}{n^3 + 2}

(a) n2n\sum \dfrac{n}{2^n} — use the Ratio Test.

Let un=n2nu_n = \dfrac{n}{2^n}. Then

un+1un=(n+1)/2n+1n/2n=n+12n=12(1+1n).\frac{u_{n+1}}{u_n} = \frac{(n+1)/2^{n+1}}{n/2^n} = \frac{n+1}{2n} = \frac{1}{2}\Big(1 + \frac{1}{n}\Big).

Taking the limit:

L=limnun+1un=12(1+0)=12<1.L = \lim_{n\to\infty} \frac{u_{n+1}}{u_n} = \frac{1}{2}\,(1+0) = \frac{1}{2} < 1.

Since L<1L < 1, by the Ratio Test the series converges (absolutely).


(b) n+1n3+2\sum \dfrac{n+1}{n^3+2} — use the Limit Comparison Test.

For large nn, n+1n3+2nn3=1n2\dfrac{n+1}{n^3+2} \sim \dfrac{n}{n^3} = \dfrac{1}{n^2}. Compare with vn=1n2v_n = \dfrac{1}{n^2} (a convergent pp-series, p=2>1p=2>1).

limnunvn=limn(n+1)/(n3+2)1/n2=limnn2(n+1)n3+2=limnn3+n2n3+2.\lim_{n\to\infty}\frac{u_n}{v_n} = \lim_{n\to\infty}\frac{(n+1)/(n^3+2)}{1/n^2} = \lim_{n\to\infty}\frac{n^2(n+1)}{n^3+2} = \lim_{n\to\infty}\frac{n^3+n^2}{n^3+2}.

Divide numerator and denominator by n3n^3:

=limn1+1/n1+2/n3=1+01+0=1.= \lim_{n\to\infty}\frac{1 + 1/n}{1 + 2/n^3} = \frac{1+0}{1+0} = 1.

The limit is a finite non-zero number (=1=1), and 1n2\sum \dfrac{1}{n^2} converges, so by the Limit Comparison Test the given series converges.

Conclusion: Both series (a) and (b) converge.

infinite-seriescomparison-testratio-test
B

Section B: Short Answer Questions

Attempt all questions.

6 questions
6short7 marks

Find the rank of the matrix by reducing it to echelon form:

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

Step 1 — Eliminate below the first pivot.

R2R22R1R_2 \to R_2 - 2R_1 and R3R33R1R_3 \to R_3 - 3R_1:

(123223446335679)=(123012012).\begin{pmatrix} 1 & 2 & 3 \\ 2-2 & 3-4 & 4-6 \\ 3-3 & 5-6 & 7-9 \end{pmatrix} = \begin{pmatrix} 1 & 2 & 3 \\ 0 & -1 & -2 \\ 0 & -1 & -2 \end{pmatrix}.

Step 2 — Eliminate below the second pivot.

R3R3R2R_3 \to R_3 - R_2:

(123012000).\begin{pmatrix} 1 & 2 & 3 \\ 0 & -1 & -2 \\ 0 & 0 & 0 \end{pmatrix}.

Step 3 — Count non-zero rows. The echelon form has 2 non-zero rows.

Final answer: rank(A)=2\operatorname{rank}(A) = \boxed{2}.

(Consistent with A=1(2120)2(1412)+3(109)=14+3=0|A| = 1(21-20) - 2(14-12) + 3(10-9) = 1 - 4 + 3 = 0, so the rank is less than 3.)

matricesrankechelon-form
7short7 marks

Find the centre and radius of the sphere x2+y2+z22x+4y6z11=0x^2 + y^2 + z^2 - 2x + 4y - 6z - 11 = 0. Verify whether the point P(1,2,7)P(1, -2, 7) lies inside, on, or outside the sphere.

Step 1 — Compare with the general sphere x2+y2+z2+2ux+2vy+2wz+d=0x^2+y^2+z^2 + 2ux + 2vy + 2wz + d = 0, whose centre is (u,v,w)(-u,-v,-w) and radius u2+v2+w2d\sqrt{u^2+v^2+w^2-d}.

Here 2u=2u=12u = -2 \Rightarrow u = -1; 2v=4v=22v = 4 \Rightarrow v = 2; 2w=6w=32w = -6 \Rightarrow w = -3; d=11d = -11.

Step 2 — Centre.

C=(u,v,w)=(1,2,3).C = (-u, -v, -w) = (1, -2, 3).

Step 3 — Radius.

r=u2+v2+w2d=1+4+9(11)=14+11=25=5.r = \sqrt{u^2 + v^2 + w^2 - d} = \sqrt{1 + 4 + 9 - (-11)} = \sqrt{14 + 11} = \sqrt{25} = 5.

Step 4 — Position of P(1,2,7)P(1,-2,7). Distance from centre C(1,2,3)C(1,-2,3):

CP=(11)2+(2+2)2+(73)2=0+0+16=4.CP = \sqrt{(1-1)^2 + (-2+2)^2 + (7-3)^2} = \sqrt{0 + 0 + 16} = 4.

Since CP=4<r=5CP = 4 < r = 5, the point PP lies inside the sphere.

Final answers: Centre (1,2,3)\boxed{(1,-2,3)}, radius 5\boxed{5} units; P(1,2,7)P(1,-2,7) lies inside the sphere (CP=4<5CP=4<5).

3d-geometryspheretangent-plane
8short7 marks

Solve the initial value problem

d2ydx2+4dydx+13y=0,y(0)=1,y(0)=2.\frac{d^2y}{dx^2} + 4\frac{dy}{dx} + 13y = 0, \qquad y(0) = 1, \quad y'(0) = 2.

Step 1 — Auxiliary equation.

m2+4m+13=0    m=4±16522=4±362=4±6i2=2±3i.m^2 + 4m + 13 = 0 \;\Rightarrow\; m = \frac{-4 \pm \sqrt{16 - 52}}{2} = \frac{-4 \pm \sqrt{-36}}{2} = \frac{-4 \pm 6i}{2} = -2 \pm 3i.

Complex conjugate roots α±iβ\alpha \pm i\beta with α=2\alpha = -2, β=3\beta = 3.

Step 2 — General solution.

y=e2x(Acos3x+Bsin3x).y = e^{-2x}\big(A\cos 3x + B\sin 3x\big).

Step 3 — Apply y(0)=1y(0)=1.

y(0)=e0(Acos0+Bsin0)=A=1    A=1.y(0) = e^{0}(A\cos 0 + B\sin 0) = A = 1 \;\Rightarrow\; A = 1.

Step 4 — Differentiate.

y=2e2x(Acos3x+Bsin3x)+e2x(3Asin3x+3Bcos3x).y' = -2e^{-2x}(A\cos 3x + B\sin 3x) + e^{-2x}(-3A\sin 3x + 3B\cos 3x).

At x=0x=0:

y(0)=2(A)+3B=2(1)+3B=2+3B.y'(0) = -2(A) + 3B = -2(1) + 3B = -2 + 3B.

Set equal to 22: 2+3B=23B=4B=43.-2 + 3B = 2 \Rightarrow 3B = 4 \Rightarrow B = \dfrac{4}{3}.

Step 5 — Solution.

y=e2x(cos3x+43sin3x).\boxed{y = e^{-2x}\Big(\cos 3x + \tfrac{4}{3}\sin 3x\Big).}

Check: y(0)=1y(0) = 1 ✓; y(0)=2+343=2+4=2y'(0) = -2 + 3\cdot\tfrac43 = -2 + 4 = 2 ✓.

second-order-odecomplex-rootshomogeneous
9short7 marks

Examine the convergence of the alternating series

n=1(1)n112n1=113+1517+\sum_{n=1}^{\infty} (-1)^{n-1} \frac{1}{2n-1} = 1 - \frac{1}{3} + \frac{1}{5} - \frac{1}{7} + \cdots

State whether it converges absolutely or conditionally.

Step 1 — Leibnitz (alternating series) Test. Write un=12n1>0u_n = \dfrac{1}{2n-1} > 0.

(i) Monotonic decrease: Since 2(n+1)1=2n+1>2n12(n+1)-1 = 2n+1 > 2n-1, we have

un+1=12n+1<12n1=unfor all n.u_{n+1} = \frac{1}{2n+1} < \frac{1}{2n-1} = u_n \quad\text{for all } n.

So {un}\{u_n\} is monotonically decreasing.

(ii) Limit:

limnun=limn12n1=0.\lim_{n\to\infty} u_n = \lim_{n\to\infty}\frac{1}{2n-1} = 0.

Both Leibnitz conditions hold, so the series converges.

Step 2 — Test for absolute convergence. Consider

n=1un=n=112n1=1+13+15+\sum_{n=1}^{\infty} |u_n| = \sum_{n=1}^{\infty}\frac{1}{2n-1} = 1 + \frac{1}{3} + \frac{1}{5} + \cdots

Compare with the divergent harmonic-type series. By the Limit Comparison Test with vn=1nv_n = \dfrac{1}{n}:

limn1/(2n1)1/n=limnn2n1=120.\lim_{n\to\infty}\frac{1/(2n-1)}{1/n} = \lim_{n\to\infty}\frac{n}{2n-1} = \frac{1}{2} \neq 0.

Since 1n\sum \dfrac1n diverges and the limit is finite non-zero, un\sum |u_n| diverges.

Conclusion. The series converges (by Leibnitz) but the series of absolute values diverges. Hence the series is conditionally convergent.

(In fact its sum is π4\dfrac{\pi}{4}.)

infinite-seriesleibnitz-testalternating-series
10short6 marks

Solve the Cauchy–Euler equation

x2d2ydx23xdydx+4y=0.x^2 \frac{d^2y}{dx^2} - 3x\frac{dy}{dx} + 4y = 0.

Step 1 — Trial solution. For a Cauchy–Euler equation, try y=xmy = x^m. Then

y=mxm1,y=m(m1)xm2.y' = m x^{m-1}, \qquad y'' = m(m-1)x^{m-2}.

Substitute:

x2m(m1)xm23xmxm1+4xm=0x^2\,m(m-1)x^{m-2} - 3x\,m x^{m-1} + 4x^m = 0 [m(m1)3m+4]xm=0.\Rightarrow \big[m(m-1) - 3m + 4\big]x^m = 0.

Step 2 — Indicial (auxiliary) equation.

m(m1)3m+4=m2m3m+4=m24m+4=0.m(m-1) - 3m + 4 = m^2 - m - 3m + 4 = m^2 - 4m + 4 = 0. (m2)2=0    m=2,2(repeated root).(m-2)^2 = 0 \;\Rightarrow\; m = 2,\, 2 \quad(\text{repeated root}).

Step 3 — General solution. For a repeated root mm in a Cauchy–Euler equation, the second independent solution carries a factor lnx\ln x:

y=(C1+C2lnx)x2,x>0,\boxed{y = \big(C_1 + C_2 \ln x\big)x^2}, \qquad x > 0,

where C1,C2C_1, C_2 are arbitrary constants.

higher-order-odecauchy-eulerlinear-ode
11short6 marks

Find the half-range sine series of f(x)=xf(x) = x in the interval 0<x<20 < x < 2.

Setup. For a half-range sine series on (0,L)(0, L) with L=2L = 2:

f(x)=n=1bnsinnπxL,bn=2L0Lf(x)sinnπxLdx.f(x) = \sum_{n=1}^{\infty} b_n \sin\frac{n\pi x}{L}, \qquad b_n = \frac{2}{L}\int_0^L f(x)\sin\frac{n\pi x}{L}\,dx.

Here L=2L = 2, so bn=2202xsinnπx2dx=02xsinnπx2dx.b_n = \dfrac{2}{2}\displaystyle\int_0^2 x\sin\frac{n\pi x}{2}\,dx = \int_0^2 x\sin\frac{n\pi x}{2}\,dx.

Step 1 — Integrate by parts. With u=xu = x, dv=sinnπx2dxdv = \sin\frac{n\pi x}{2}dx:

xsinnπx2dx=2xnπcosnπx2+2nπcosnπx2dx\int x\sin\frac{n\pi x}{2}\,dx = -\frac{2x}{n\pi}\cos\frac{n\pi x}{2} + \frac{2}{n\pi}\int \cos\frac{n\pi x}{2}\,dx =2xnπcosnπx2+4n2π2sinnπx2.= -\frac{2x}{n\pi}\cos\frac{n\pi x}{2} + \frac{4}{n^2\pi^2}\sin\frac{n\pi x}{2}.

Step 2 — Evaluate from 00 to 22. At x=2x=2: cosnπ22=cosnπ=(1)n\cos\frac{n\pi\cdot2}{2} = \cos n\pi = (-1)^n and sinnπ=0\sin n\pi = 0. At x=0x=0 both terms vanish.

bn=[2(2)nπ(1)n+0]0=4(1)nnπ=4(1)n+1nπ.b_n = \left[-\frac{2(2)}{n\pi}(-1)^n + 0\right] - 0 = -\frac{4(-1)^n}{n\pi} = \frac{4(-1)^{n+1}}{n\pi}.

Step 3 — Series.

x=4πn=1(1)n+1nsinnπx2,0<x<2.\boxed{x = \frac{4}{\pi}\sum_{n=1}^{\infty}\frac{(-1)^{n+1}}{n}\sin\frac{n\pi x}{2}}, \qquad 0 < x < 2.

Written out: x=4π(sinπx212sinπx+13sin3πx2).x = \dfrac{4}{\pi}\Big(\sin\dfrac{\pi x}{2} - \dfrac{1}{2}\sin\pi x + \dfrac{1}{3}\sin\dfrac{3\pi x}{2} - \cdots\Big).

fourier-serieshalf-rangesine-series

Frequently asked questions

Where can I find the BE Civil Engineering (IOE, TU) Engineering Mathematics II (IOE, SH 451) question paper 2077?
The full BE Civil Engineering (IOE, TU) Engineering Mathematics II (IOE, SH 451) 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 Engineering Mathematics II (IOE, SH 451) 2077 paper come with solutions?
Yes. Every question on this Engineering Mathematics II (IOE, SH 451) past paper includes a step-by-step solution, plus instant AI feedback when you attempt it on Kekkei.
How many marks is the BE Civil Engineering (IOE, TU) Engineering Mathematics II (IOE, SH 451) 2077 paper?
The BE Civil Engineering (IOE, TU) Engineering Mathematics II (IOE, SH 451) 2077 paper carries 80 full marks and is meant to be completed in 180 minutes, across 11 questions.
Is practising this Engineering Mathematics II (IOE, SH 451) past paper free?
Yes — reading and attempting this Engineering Mathematics II (IOE, SH 451) past paper on Kekkei is completely free.