Engineering Mathematics
This subject page now includes a complete Module 1 study chapter for matrices and linear algebra in a textbook-style format aligned with common engineering mathematics syllabi.
Module 1: Matrices and Linear Algebra
Chapter Objective
Master matrix operations, solve linear systems, find eigenvalues and eigenvectors, apply the Cayley-Hamilton theorem, diagonalize matrices, and analyze quadratic forms.
- Exam weightage: 15 to 20 percent
- Target: 4 to 5 long questions and 3 to 4 short questions
1.1 Matrix Basics and Properties
Matrices are rectangular arrays of numbers arranged in rows and columns. They are used in solving linear equations, modeling transformations, circuit analysis, optimization, and numerical methods.
| Concept | Formula / Rule | Quick Note | ||||
|---|---|---|---|---|---|---|
| Trace | Tr(A) = sum of a_ii | Sum of diagonal elements | ||||
| Determinant | | A | | Defined only for square matrices | ||
| Adjoint | adj(A) = [C_ij]^T | Transpose of the cofactor matrix | ||||
| Inverse | `A^-1 = adj(A) / | A | | Exists only when ` | A | != 0` |
| Key identity | `A * adj(A) = | A | I` | Used to derive the inverse |
Important properties
- Two matrices are equal only if they have the same order and the same corresponding entries.
- Matrix addition is defined only for matrices of the same order.
- Matrix multiplication is defined when columns of the first matrix equal rows of the second matrix.
- Matrix multiplication is not commutative in general.
(AB)^T = B^T A^T(AB)^-1 = B^-1 A^-1wheneverAandBare invertible.
Exam note
Always state the condition |A| != 0 before using the inverse formula.
1.2 Rank of a Matrix
The rank of a matrix is the maximum number of linearly independent rows or columns. It is denoted by rho(A) or r(A).
Methods to find rank
1. Minor method: largest non-zero minor order gives the rank. 2. Echelon form method: reduce to row echelon form and count non-zero rows. 3. Normal form method: reduce to PAQ = [I_r 0; 0 0], then rank is r.
Solved Example 1
Q: Find the rank of
A = [1 2 3
2 4 6
3 6 9]Solution
R2 -> R2 - 2R1gives[0 0 0]R3 -> R3 - 3R1gives[0 0 0]
Echelon form:
[1 2 3
0 0 0
0 0 0]Number of non-zero rows = 1, therefore
rank(A) = 1Quick reminders
- If determinant of a
3 x 3matrix is non-zero, rank is 3. - Elementary row operations do not change rank.
- In exams, echelon form is usually the fastest reliable method.
1.3 Consistency of Linear Systems AX = B
Let A be the coefficient matrix and [A | B] the augmented matrix.
Rouche-Capelli Theorem
| Condition | Solution Type | |
|---|---|---|
| `rho(A) = rho([A | B]) = n` | Unique solution |
| `rho(A) = rho([A | B]) < n` | Infinitely many solutions |
| `rho(A) != rho([A | B])` | No solution |
Solved Example 2
Q: Solve
x + y + z = 6
2x + 3y + z = 11
3x + y + 2z = 10Solution
Augmented matrix:
[1 1 1 | 6]
[2 3 1 | 11]
[3 1 2 | 10]Apply:
R2 -> R2 - 2R1R3 -> R3 - 3R1
[1 1 1 | 6]
[0 1 -1 | -1]
[0 -2 -1 | -8]Now apply
R3 -> R3 + 2R2
[1 1 1 | 6]
[0 1 -1 | -1]
[0 0 -3 | -10]Hence,
rho(A) = 3, rho([A | B]) = 3, n = 3So the system has a unique solution.
Back substitution:
z = 10/3
y - z = -1
y = 7/3
x + y + z = 6
x = 1/3Hence,
x = 1/3, y = 7/3, z = 10/3Since rho(A) = rho([A | B]) = 3, the system is consistent and has a unique solution.
1.4 Eigenvalues and Eigenvectors
If there exists a non-zero vector X such that
AX = lambda Xthen lambda is an eigenvalue and X is the corresponding eigenvector.
Characteristic equation
|A - lambda I| = 0Key properties
- Sum of eigenvalues =
Tr(A) - Product of eigenvalues =
|A| - For symmetric matrices, all eigenvalues are real.
- Eigenvectors corresponding to distinct eigenvalues are linearly independent.
- For real symmetric matrices, eigenvectors corresponding to distinct eigenvalues are orthogonal.
Solved Example 3
Q: Find eigenvalues and eigenvectors of
A = [ 2 -1 2
-1 2 -1
2 -1 2]Solution
Characteristic equation:
|A - lambda I| =
|2-lambda -1 2 |
|-1 2-lambda -1 | = 0
|2 -1 2-lambda|On expansion,
-(lambda - 1)^2 (lambda - 4) = 0So eigenvalues are
lambda = 1, 1, 4For lambda = 1:
(A - I)X = 0This gives the relation
x1 - x2 + x3 = 0Two independent eigenvectors may be taken as
[1 1 0]^T and [0 1 1]^TFor lambda = 4, a corresponding eigenvector is
[1 -1 1]^TExam tip
Always verify one eigenvector by substitution. Many errors in exams come from copying the wrong sign while solving (A - lambda I)X = 0.
1.5 Cayley-Hamilton Theorem
Statement
Every square matrix satisfies its own characteristic equation.
If
p(lambda) = 0is the characteristic equation of A, then
p(A) = 0Applications
- Verify the theorem
- Find
A^-1 - Find higher powers like
A^2,A^3,A^4 - Solve matrix equations
Solved Example 4
For
A = [1 2
3 4]verify Cayley-Hamilton theorem and find A^-1.
Solution
Characteristic equation:
|A - lambda I|
= (1 - lambda)(4 - lambda) - 6
= lambda^2 - 5lambda - 2 = 0Replace lambda with A:
A^2 - 5A - 2I = 0Now
A^2 = [1 2 [1 2 = [7 10
3 4] * 3 4] 15 22]Then
A^2 - 5A - 2I
= [7 10 [5 10 [2 0
15 22] - 15 20] - 0 2]
= [0 0
0 0]So the theorem is verified.
From
A^2 - 5A = 2I
A(A - 5I) = 2Iwe obtain
A^-1 = (A - 5I) / 2Hence,
A^-1 = [-2 1
3/2 -1/2]1.6 Diagonalization and Quadratic Forms
Diagonalization
If A has n linearly independent eigenvectors, then there exists an invertible matrix P such that
P^-1 A P = Dwhere D is a diagonal matrix of eigenvalues.
Quadratic form
Q(x, y, z) = X^T A Xwhere A is symmetric.
Nature test
| Eigenvalues | Nature |
|---|---|
| All positive | Positive definite |
| All negative | Negative definite |
| Mixed signs | Indefinite |
| Some zero, rest same sign | Semi-definite |
Solved Example 5
Reduce
Q = 3x^2 + 3y^2 + 3z^2 - 2xy - 2yz - 2zxto canonical form.
Solution
The associated matrix is
A = [ 3 -1 -1
-1 3 -1
-1 -1 3]Its characteristic equation is
-(lambda - 2)^2 (lambda - 5) = 0So eigenvalues are
2, 2, 5Hence the canonical form is
2y1^2 + 2y2^2 + 5y3^2All eigenvalues are positive, so the quadratic form is positive definite.
Exercise Sets
Basic
1. Find rank of [[1,2,3],[2,3,4],[3,4,5]]. 2. Solve 2x + y - z = 3, x + 2y + z = 4, x + y + z = 3. 3. Find eigenvalues of [[4,1],[2,3]]. 4. Verify A * adj(A) = |A| I for a 2 x 2 matrix.
Intermediate
1. Use Cayley-Hamilton theorem to find A^-1 for [[2,1,1],[1,2,1],[1,1,2]]. 2. Diagonalize [[6,-2,2],[-2,3,-1],[2,-1,3]]. 3. Reduce x^2 + y^2 + z^2 - 2xy - 2yz + 2zx to canonical form and state nature. 4. Check consistency of x + 2y + 3z = 1, 2x + 3y + 4z = 2, 3x + 4y + 5z = 3.
Advanced
1. If A^3 - 6A^2 + 11A - 6I = 0, find A^-1 and A^4. 2. For a symmetric matrix with eigenvalues 2, -1, 0, find index and signature. 3. Prove eigenvectors of distinct eigenvalues are linearly independent. 4. Solve AX = B where A is singular using a generalized inverse approach.
Quick Reference Sheet
rho(A) =number of non-zero rows in echelon formAX = Bis consistent if and only ifrho(A) = rho([A | B])sum of eigenvalues = Tr(A)product of eigenvalues = |A|- Cayley-Hamilton:
P(A) = 0, useful forA^-1and higher powers - A matrix is diagonalizable if it has
nindependent eigenvectors Q(X) = X^T A X, and its nature is decided by the signs of eigenvaluesA^-1exists if and only if|A| != 0andrho(A) = n
Exam Focus and PYQ Pattern
| Question Type | Marks | Frequency |
|---|---|---|
| Rank and consistency | 4 to 5 | 80 percent exams |
| Eigenvalues and eigenvectors | 5 to 7 | 90 percent exams |
| Cayley-Hamilton and inverse | 5 to 7 | 75 percent exams |
| Diagonalization | 6 to 8 | 60 percent exams |
| Quadratic form nature | 4 to 6 | 50 percent exams |
Pro tip
Many university papers repeat standard matrix patterns. Practice 3 x 3 symmetric matrices and inverse by Cayley-Hamilton thoroughly.
Study Strategy and Common Mistakes
| Mistake | How to Avoid | ||
|---|---|---|---|
| Sign error in characteristic equation | Expand along the row or column with the most zeros | ||
| Wrong eigenvector relation | Always verify (A - lambda I)X = 0 | ||
| Forgetting determinant condition for inverse | Mention ` | A | != 0` before applying the inverse formula |
| Mixing row and column operations in rank problems | Stick to row operations for echelon form | ||
| Skipping final verification in Cayley-Hamilton | Substitute back into P(A) and confirm the zero matrix |
Revision Order
1. Learn determinant, adjoint, inverse, and rank. 2. Practice consistency questions using augmented matrices. 3. Solve at least five eigenvalue problems, especially symmetric matrices. 4. Practice one Cayley-Hamilton inverse problem daily. 5. Finish with diagonalization and quadratic form nature tests.
Module Outcome
After finishing this module, you should be able to:
- test whether a matrix is invertible,
- compute rank quickly using echelon form,
- decide whether a linear system is consistent,
- find eigenvalues and eigenvectors with confidence,
- use Cayley-Hamilton to simplify matrix powers,
- diagonalize standard matrices, and
- classify quadratic forms correctly.
---
Module 2: Differential Calculus (Single Variable)
Chapter Objective
Master higher-order differentiation, mean value theorems, series expansions, curvature concepts, and curve tracing techniques.
- Exam weightage: 10 to 15 percent
- Target: 3 to 4 long questions and 2 to 3 short questions
2.1 Successive Differentiation and Leibniz Theorem
Successive differentiation means finding second, third, and higher-order derivatives of a function. It is especially useful in series expansion, differential equations, and repeated derivative questions.
| Concept | Formula / Rule | Standard Result |
|---|---|---|
nth derivative | D^n y = d^n y / dx^n | General repeated derivative notation |
| Exponential | D^n(e^(ax)) = a^n e^(ax) | Direct standard result |
| Sine | D^n(sin(ax+b)) = a^n sin(ax+b+n pi / 2) | Cyclic pattern |
| Cosine | D^n(cos(ax+b)) = a^n cos(ax+b+n pi / 2) | Cyclic pattern |
| Reciprocal linear | D^n(1 / (ax+b)) = (-1)^n n! a^n / (ax+b)^(n+1) | Frequently asked |
| Leibniz theorem | (uv)_n = sum from r=0 to n of nCr u_(n-r) v_r | Used for product of functions |
Solved Example 1
Q: Find y_n if
y = x^2 e^(2x)Solution
Take
u = e^(2x), v = x^2Then
u_k = 2^k e^(2x)
v_0 = x^2, v_1 = 2x, v_2 = 2, v_k = 0 for k >= 3By Leibniz theorem,
y_n = nC0 u_n v_0 + nC1 u_(n-1) v_1 + nC2 u_(n-2) v_2So
y_n = 2^n e^(2x) x^2 + n . 2^(n-1) e^(2x) . 2x + [n(n-1)/2] . 2^(n-2) e^(2x) . 2Therefore,
y_n = 2^(n-2) e^(2x) [4x^2 + 4nx + n(n-1)]Basic Example
Q: Find y_n if
y = log(ax + b)Solution
Step 1: Differentiate successively
y_1 = d/dx [log(ax+b)] = a / (ax+b)
y_2 = d/dx [a(ax+b)^(-1)] = -a^2 (ax+b)^(-2)
y_3 = d/dx [-a^2(ax+b)^(-2)] = 2a^3 (ax+b)^(-3)
y_4 = -6a^4 (ax+b)^(-4)Step 2: Identify the pattern
- Coefficients:
1, -1, 2, -6, ... = (-1)^(n-1) (n-1)! - Power of
a:a^n - Denominator:
(ax+b)^n
Final answer:
y_n = (-1)^(n-1) (n-1)! a^n / (ax+b)^n2.2 Mean Value Theorems
Mean value theorems connect continuity and differentiability with the existence of a special point inside an interval.
| Theorem | Conditions | Statement |
|---|---|---|
| Rolle's theorem | Continuous on [a,b], differentiable on (a,b), and f(a)=f(b) | There exists c in (a,b) such that f'(c)=0 |
| Lagrange Mean Value Theorem | Continuous on [a,b], differentiable on (a,b) | There exists c in (a,b) such that f'(c) = [f(b)-f(a)] / (b-a) |
| Cauchy's Mean Value Theorem | f and g satisfy LMVT conditions and g'(x) != 0 | [f(b)-f(a)] / [g(b)-g(a)] = f'(c) / g'(c) |
Solved Example 2
Q: Verify LMVT for
f(x) = x^3 - 2x^2 - x + 3 on [0, 2]Solution
First,
f(0) = 3
f(2) = 8 - 8 - 2 + 3 = 1Then
[f(2)-f(0)] / (2-0) = (1-3)/2 = -1Now
f'(x) = 3x^2 - 4x - 1Set f'(c) = -1:
3c^2 - 4c - 1 = -1
3c^2 - 4c = 0
c(3c - 4) = 0So
c = 0 or c = 4/3Since 4/3 lies in (0,2), LMVT is verified.
Basic Example
Q: Verify Rolle's theorem for
f(x) = x(x-1)(x-2) on [0,2]Solution
Step 1: Check conditions
- Polynomial function, so it is continuous on
[0,2] - Polynomial function, so it is differentiable on
(0,2) f(0) = 0andf(2) = 2(1)(0) = 0
Hence all conditions of Rolle's theorem are satisfied.
Step 2: Find c such that f'(c) = 0
f(x) = x^3 - 3x^2 + 2x
f'(x) = 3x^2 - 6x + 2Set
3c^2 - 6c + 2 = 0Then
c = [6 +- sqrt(36-24)] / 6
= [6 +- sqrt(12)] / 6
= 1 +- 1/sqrt(3)So
c_1 approx 0.423, c_2 approx 1.577Both values lie in (0,2), therefore Rolle's theorem is verified.
Intermediate Example
Q: Verify LMVT for
f(x) = sqrt(x) on [1,4]Solution
Step 1: Check conditions
sqrt(x)is continuous on[1,4]f'(x) = 1 / (2sqrt(x))exists for allxin(1,4)
Step 2: Apply LMVT
[f(4)-f(1)] / (4-1) = (2-1)/3 = 1/3Now
f'(c) = 1 / (2sqrt(c))Set
1 / (2sqrt(c)) = 1/3Then
2sqrt(c) = 3
sqrt(c) = 3/2
c = 9/4Since 9/4 lies in (1,4), LMVT is verified at c = 9/4.
2.3 Taylor and Maclaurin Series
Series expansion helps approximate functions near a point and is used in numerical methods, limits, and engineering models.
| Series | Formula | Convergence |
|---|---|---|
| Maclaurin series | f(x) = f(0) + x f'(0) + x^2/2! f''(0) + ... | Depends on the function |
| Taylor series | f(x+h) = f(x) + h f'(x) + h^2/2! f''(x) + ... | Expansion about x |
Standard expansions
e^x = 1 + x + x^2/2! + x^3/3! + ...sin x = x - x^3/3! + x^5/5! - ...cos x = 1 - x^2/2! + x^4/4! - ...log(1+x) = x - x^2/2 + x^3/3 - x^4/4 + ...for|x| < 1(1+x)^n = 1 + nx + n(n-1)x^2/2! + ...
Solved Example 3
Q: Expand
f(x) = e^x sin xup to x^4 using Maclaurin series.
Solution
f(0) = 0Differentiate:
f'(x) = e^x (sin x + cos x) => f'(0) = 1
f''(x) = 2 e^x cos x => f''(0) = 2
f'''(x) = 2 e^x (cos x - sin x) => f'''(0) = 2
f^(4)(x) = -4 e^x sin x => f^(4)(0) = 0Using Maclaurin expansion,
f(x) = f(0) + x f'(0) + x^2/2! f''(0) + x^3/3! f'''(0) + x^4/4! f^(4)(0) + ...Hence,
f(x) = x + x^2 + x^3/3up to the required order.
Basic Example
Q: Expand tan^(-1)x up to x^5 using Maclaurin series.
Solution
Use series integration:
d/dx [tan^(-1)x] = 1 / (1+x^2)
= 1 - x^2 + x^4 - x^6 + ...Integrate term by term:
tan^(-1)x = integral(1 - x^2 + x^4 - ...) dx
= x - x^3/3 + x^5/5 - x^7/7 + ...Final answer up to x^5:
tan^(-1)x = x - x^3/3 + x^5/5 + O(x^7)Intermediate Example
Q: Expand e^(2x) cos x up to x^3 using Maclaurin series.
Solution
Use standard expansions:
e^(2x) = 1 + 2x + (2x)^2/2! + (2x)^3/3! + ...
= 1 + 2x + 2x^2 + (4/3)x^3 + ...
cos x = 1 - x^2/2 + ...Multiply up to the required order:
(1 + 2x + 2x^2 + 4x^3/3)(1 - x^2/2)
= 1 + 2x + 2x^2 + 4x^3/3 - x^2/2 - x^3 + ...
= 1 + 2x + (3/2)x^2 + (1/3)x^3Final answer:
e^(2x) cos x approx 1 + 2x + (3/2)x^2 + (1/3)x^32.4 Curvature and Radius of Curvature
Curvature measures how sharply a curve bends. The radius of curvature tells how large the osculating circle is at a point.
| Form | Formula | ||
|---|---|---|---|
| Cartesian | `rho = [1 + (dy/dx)^2]^(3/2) / | d^2y/dx^2 | |
| Parametric | `rho = (x'^2 + y'^2)^(3/2) / | x' y'' - y' x'' | |
| Polar | `rho = (r^2 + r'^2)^(3/2) / | r^2 + 2r'^2 - r r'' | |
| Centre of curvature | (alpha, beta) = (x - y'(1+y'^2)/y'', y + (1+y'^2)/y'') |
Solved Example 4
Q: Find the radius of curvature for
y = x^3at (1,1).
Solution
y' = 3x^2 => y'(1) = 3
y'' = 6x => y''(1) = 6Using the Cartesian formula,
rho = [1 + 3^2]^(3/2) / 6
= 10^(3/2) / 6
= 10 sqrt(10) / 6
= 5 sqrt(10) / 3Therefore,
rho = 5 sqrt(10) / 3 approx 5.27 unitsBasic Example
Q: Find the radius of curvature for
y = sin xat x = pi/2.
Solution
y' = cos x => y'(pi/2) = 0
y'' = -sin x => y''(pi/2) = -1Using the Cartesian formula,
rho = [1 + (y')^2]^(3/2) / |y''|
= [1 + 0^2]^(3/2) / 1
= 1Final answer:
rho = 1 unit2.5 Curve Tracing Essentials
Curve tracing means analyzing the shape and behavior of a curve before sketching it.
Standard order for tracing a curve
1. Check symmetry. 2. Check whether the curve passes through the origin. 3. Find intercepts on the axes. 4. Look for asymptotes. 5. Identify the region in which the curve exists. 6. Find critical points and tangents. 7. Sketch the final plot.
Common checks
- Symmetry about the
x-axis - Symmetry about the
y-axis - Symmetry about the origin
- Existence of loops or cusps
- Asymptotic behavior for large values
Intermediate Example
Q: Trace the curve
y^2 = x^2(1-x)Solution
| Step | Analysis |
|---|---|
| Symmetry | Since y^2 is present, the curve is symmetric about the x-axis |
| Origin | The curve passes through (0,0) |
| Tangents at origin | Lowest degree terms give y^2 - x^2 = 0, so tangents are y=x and y=-x |
| Intercepts | x=0 => y=0, and y=0 => x=0 or x=1 |
| Domain | x^2(1-x) >= 0 implies x <= 1 |
| Asymptotes | None |
| Critical points | From 2y y' = 2x(1-x) - x^2 = 2x - 3x^2, we get y' = x(2-3x)/(2y) |
| Stationary points | y'=0 at x=0 and x=2/3 |
At x = 2/3:
y^2 = (4/9)(1/3) = 4/27
y = +- 2/(3sqrt(3))So the curve has local extreme points at
(2/3, +- 2/(3sqrt(3)))Sketch guide
- Start from the left side where the branches extend outward.
- The curve crosses the origin with tangents
y=xandy=-x. - It bulges upward and downward symmetrically.
- It reaches maximum and minimum height at
x=2/3. - It closes at
(1,0).
The overall shape is like a teardrop pointing right, with symmetry about the x-axis.
Module 2 Quick Reference Sheet
- Leibniz theorem:
(uv)_n = sum nCr u_(n-r) v_r - MVT conditions: continuous on
[a,b]and differentiable on(a,b) - Maclaurin series:
f(0) + x f'(0) + x^2/2! f''(0) + ... rhoin Cartesian form:(1+y'^2)^(3/2) / |y''|rhoin parametric form:(x'^2+y'^2)^(3/2) / |x' y'' - y' x''|- Curve tracing order: symmetry, origin, intercepts, asymptotes, region, critical points, plot
- Memorize expansions of
e^x,sin x,cos x,log(1+x), and(1+x)^n A^-1style shortcut is not used here; focus on standard derivative and expansion patternstan^(-1)x = x - x^3/3 + x^5/5 + ...rho = (1+y'^2)^(3/2) / |y''|after substituting the point carefully
Module 2 Practice Add-On
Basic
1. Find y_n if y = log(ax+b). 2. Verify Rolle's theorem for f(x)=x(x-1)(x-2) on [0,2]. 3. Expand tan^(-1)x up to x^5. 4. Find the radius of curvature for y = sin x at x = pi/2.
Intermediate
1. Use Leibniz theorem to find y_n for y = e^x x^2. 2. Verify LMVT for f(x)=sqrt(x) on [1,4]. 3. Expand e^(2x) cos x up to x^3. 4. Trace y^2 = x^2(1-x).
Module 2 Exam Focus
| Question Type | Marks | Frequency |
|---|---|---|
| Successive differentiation and Leibniz theorem | 4 to 6 | 75 percent exams |
| Mean value theorems | 3 to 5 | 60 percent exams |
| Taylor and Maclaurin series | 4 to 6 | 85 percent exams |
| Radius of curvature | 4 to 6 | 70 percent exams |
| Curve tracing basics | 5 to 7 | 50 percent exams |
Module 2 Study Strategy
| Mistake | How to Avoid |
|---|---|
| Missing terms in Leibniz theorem | Stop when derivatives of polynomial part become zero |
| Ignoring theorem conditions | Always check continuity and differentiability first |
| Wrong coefficients in Maclaurin series | Substitute derivative values carefully at zero |
| Sign mistakes in standard expansions | Revise sin x, cos x, and log(1+x) daily |
| Using the wrong curvature formula | Identify whether the curve is Cartesian, parametric, or polar first |
Module 2 Key Takeaways
| Topic | Exam Shortcut | ||
|---|---|---|---|
nth derivative | Memorize patterns for log(ax+b), sin, cos, e^(ax), and 1/(ax+b) | ||
| MVT and Rolle's theorem | Always write the three conditions first | ||
| Series expansion | Multiply standard expansions instead of differentiating many times | ||
| Curvature | Use `rho = (1+y'^2)^(3/2) / | y'' | ` after substituting point values |
| Curve tracing | Follow the 7-step checklist even if the final sketch is rough |
Module 2 Outcome
After finishing this module, you should be able to:
- compute higher-order derivatives quickly,
- apply Leibniz theorem for product functions,
- verify Rolle's theorem and LMVT,
- expand functions using Taylor and Maclaurin series,
- find radius of curvature in standard forms, and
- analyze and sketch basic curves systematically.
---
Module 3: Partial Differentiation and Applications
Chapter Objective
Master partial derivatives, chain rule, Euler's theorem, Jacobians, unconstrained and constrained optimization, and Taylor's expansion for multivariable functions.
- Exam weightage: 15 percent
- Target: 3 to 4 long questions and 2 to 3 short questions
3.1 Partial Derivatives and Higher Order Derivatives
For a function z = f(x,y), partial differentiation means differentiating with respect to one variable while treating the other as constant.
| Concept | Notation | Rule |
|---|---|---|
| First order partials | p = partial z / partial x, q = partial z / partial y | Treat the other variable as constant |
| Second order partials | r = partial^2 z / partial x^2, s = partial^2 z / partial x partial y, t = partial^2 z / partial y^2 | Mixed partials are often equal |
| Clairaut's theorem | partial^2 z / partial x partial y = partial^2 z / partial y partial x | Valid when mixed partials are continuous |
Solved Example 1
Q: If
z = x^3 y^2 + e^(xy)find
partial^2 z / partial x partial ySolution
First differentiate with respect to x:
partial z / partial x = 3x^2 y^2 + y e^(xy)Now differentiate with respect to y:
partial^2 z / partial x partial y
= partial/partial y [3x^2 y^2 + y e^(xy)]
= 6x^2 y + [1 . e^(xy) + y . x e^(xy)]
= 6x^2 y + e^(xy)(1 + xy)3.2 Total Differential and Chain Rule
When z depends on more than one variable, small changes in each variable contribute to the overall change in z.
| Concept | Formula |
|---|---|
| Total differential | dz = p dx + q dy |
| Total derivative | dz/dt = (partial z / partial x)(dx/dt) + (partial z / partial y)(dy/dt) |
| Chain rule | partial z / partial x = (partial z / partial u)(partial u / partial x) + (partial z / partial v)(partial v / partial x) |
Solved Example 2
Q: If z = f(u,v), where
u = x + y, v = x - yprove that
partial^2 z / partial x^2 - partial^2 z / partial y^2 = 4 partial^2 z / partial u partial vSolution
First-order partials:
partial z / partial x = f_u . 1 + f_v . 1 = f_u + f_v
partial z / partial y = f_u . 1 + f_v . (-1) = f_u - f_vSecond-order partials:
partial^2 z / partial x^2
= partial/partial x (f_u + f_v)
= (f_uu + f_uv) + (f_vu + f_vv)
= f_uu + 2f_uv + f_vvpartial^2 z / partial y^2
= partial/partial y (f_u - f_v)
= (f_uu - f_uv) - (f_vu - f_vv)
= f_uu - 2f_uv + f_vvSubtracting,
partial^2 z / partial x^2 - partial^2 z / partial y^2 = 4f_uvHence,
partial^2 z / partial x^2 - partial^2 z / partial y^2 = 4 partial^2 z / partial u partial v3.3 Euler's Theorem on Homogeneous Functions
A function f(x,y,z) is homogeneous of degree n if
f(tx, ty, tz) = t^n f(x,y,z)Euler's theorem states:
x partial f/partial x + y partial f/partial y + z partial f/partial z = n fImportant corollaries
- If
uis homogeneous of degreen, then
x partial u/partial x + y partial u/partial y = nu
- For second-order derivatives:
x^2 u_xx + 2xy u_xy + y^2 u_yy = n(n-1)u
- If
v = log uanduis homogeneous of degreen, then
x partial v/partial x + y partial v/partial y = n
Solved Example 3
Q: Verify Euler's theorem for
u = x^3 + y^3 + z^3 - 3xyzSolution
Each term has degree 3, so the function is homogeneous of degree 3.
partial u / partial x = 3x^2 - 3yz
partial u / partial y = 3y^2 - 3xz
partial u / partial z = 3z^2 - 3xyNow,
x(partial u / partial x) + y(partial u / partial y) + z(partial u / partial z)
= x(3x^2 - 3yz) + y(3y^2 - 3xz) + z(3z^2 - 3xy)
= 3x^3 - 3xyz + 3y^3 - 3xyz + 3z^3 - 3xyz
= 3(x^3 + y^3 + z^3 - 3xyz)
= 3uHence Euler's theorem is verified.
3.4 Jacobians and Their Properties
The Jacobian is the determinant formed by partial derivatives of transformed variables.
J = partial(u,v) / partial(x,y)For two variables,
partial(u,v) / partial(x,y)
= | partial u/partial x partial u/partial y |
| partial v/partial x partial v/partial y |Key properties
partial(u,v)/partial(x,y) . partial(x,y)/partial(u,v) = 1- Chain rule:
partial(u,v)/partial(x,y) = partial(u,v)/partial(r,s) . partial(r,s)/partial(x,y)
- If
uandvare functionally dependent, then the Jacobian is zero.
Solved Example 4
Q: If
u = x(1-y), v = xyshow that
partial(u,v) / partial(x,y) = xSolution
partial u / partial x = 1-y
partial u / partial y = -x
partial v / partial x = y
partial v / partial y = xSo
J = |1-y -x|
| y x|J = (1-y)x - (-x)(y)
= x - xy + xy
= xHence proved.
3.5 Maxima, Minima, and Lagrange Multipliers
Unconstrained optimization
For f(x,y), critical points are obtained by solving
f_x = 0, f_y = 0Then compute
D = f_xx f_yy - (f_xy)^2| Condition | Nature |
|---|---|
D > 0 and f_xx > 0 | Local minimum |
D > 0 and f_xx < 0 | Local maximum |
D < 0 | Saddle point |
D = 0 | Test fails |
Constrained optimization
To maximize or minimize f(x,y) subject to g(x,y)=c, form
F(x,y,lambda) = f(x,y) - lambda[g(x,y)-c]and solve
F_x = 0, F_y = 0, F_lambda = 0Solved Example 5
Q: Find the maximum of
f(x,y) = xysubject to
x + y = 10Solution
Constraint:
g(x,y) = x + y - 10 = 0Lagrangian:
F = xy - lambda(x + y - 10)Now,
F_x = y - lambda = 0 => y = lambda
F_y = x - lambda = 0 => x = lambdaSo
x = yUsing the constraint:
x + x = 10
2x = 10
x = 5, y = 5Hence,
f(5,5) = 25So the maximum value is 25.
3.6 Taylor's Theorem for Two Variables and Error Approximation
For a function f(x,y), the Taylor expansion about (a,b) is
f(x+h, y+k)
= f + h f_x + k f_y + 1/2! (h^2 f_xx + 2hk f_xy + k^2 f_yy) + ...The approximate error formula is
Delta f approx df = f_x Delta x + f_y Delta ySolved Example 6
Q: Expand
f(x,y) = e^x cos yaround (0,0) up to second degree.
Solution
At (0,0):
f(0,0) = 1
f_x = e^x cos y => f_x(0,0) = 1
f_y = -e^x sin y => f_y(0,0) = 0
f_xx = e^x cos y => f_xx(0,0) = 1
f_xy = -e^x sin y => f_xy(0,0) = 0
f_yy = -e^x cos y => f_yy(0,0) = -1Using Taylor's expansion:
f(x,y)
= 1 + x(1) + y(0) + 1/2 [x^2(1) + 2xy(0) + y^2(-1)]Hence,
f(x,y) approx 1 + x + (x^2 - y^2)/2Module 3 Quick Reference Sheet
p = partial z/partial x,q = partial z/partial yr = partial^2 z/partial x^2,s = partial^2 z/partial x partial y,t = partial^2 z/partial y^2- Mixed partials are equal if continuous
- Euler theorem:
x f_x + y f_y + z f_z = nf partial(u,v)/partial(x,y) . partial(x,y)/partial(u,v) = 1- Max/Min test:
D = rt - s^2 - Lagrange multipliers:
grad f = lambda grad g - Taylor two-variable expansion:
f + h f_x + k f_y + 1/2(h^2 f_xx + 2hk f_xy + k^2 f_yy)
- Error approximation:
Delta f approx f_x Delta x + f_y Delta y
Module 3 Exam Focus
| Question Type | Marks | Frequency |
|---|---|---|
| Partial derivatives and mixed derivatives | 4 to 5 | 80 percent exams |
| Chain rule and total differential | 4 to 6 | 70 percent exams |
| Euler's theorem | 4 to 6 | 75 percent exams |
| Jacobians | 5 to 7 | 70 percent exams |
| Maxima and minima | 5 to 7 | 85 percent exams |
| Taylor expansion for two variables | 4 to 6 | 60 percent exams |
Module 3 Study Strategy
| Mistake | How to Avoid |
|---|---|
| Treating the other variable incorrectly in partial derivatives | Freeze the other variable completely while differentiating |
| Missing chain rule links | Write the dependency map first |
| Forgetting homogeneity degree in Euler's theorem | Check degree of each term before differentiation |
| Sign mistakes in Jacobians | Expand the determinant carefully |
| Wrong classification in maxima/minima | Compute D = f_xx f_yy - (f_xy)^2 before concluding |
| Missing second-degree terms in Taylor expansion | Write all f_xx, f_xy, and f_yy terms explicitly |
Module 3 Key Takeaways
| Topic | Exam Shortcut |
|---|---|
| Partial derivatives | Treat all other variables as constants |
| Mixed derivatives | Use Clairaut's theorem when continuity holds |
| Chain rule | Expand step by step through intermediate variables |
| Euler theorem | Verify homogeneity first, then apply x f_x + y f_y + z f_z = nf |
| Jacobians | Inverse Jacobians multiply to 1 |
| Max/Min | Use D = rt - s^2 for quick classification |
| Lagrange multipliers | Solve F_x=0, F_y=0, F_lambda=0 together |
| Taylor expansion | Memorize the second-degree two-variable form |
Module 3 Outcome
After finishing this module, you should be able to:
- compute first and second order partial derivatives,
- apply the total differential and chain rule correctly,
- verify Euler's theorem for homogeneous functions,
- evaluate Jacobians and use their properties,
- solve unconstrained and constrained optimization problems, and
- expand multivariable functions up to second degree.
---
Module 4: Multiple Integrals and Applications
Chapter Objective
Master double and triple integrals, change of order and variables, Beta and Gamma functions, and apply them to area, volume, mass, and center of mass calculations.
- Exam weightage: 15 percent
- Target: 3 to 4 long questions and 2 to 3 short questions
4.1 Double Integrals in Cartesian and Polar Form
Double integrals are used to compute area, mass, centroid, and volume under surfaces.
| Concept | Formula | Key Rule |
|---|---|---|
| Cartesian form | double integral over R of f(x,y) dA = integral integral f(x,y) dy dx | Inner limits depend on outer variable |
| Polar form | x = r cos theta, y = r sin theta | Always replace dA by r dr dtheta |
| Type I region | a <= x <= b, g1(x) <= y <= g2(x) | Vertical strips |
| Type II region | c <= y <= d, h1(y) <= x <= h2(y) | Horizontal strips |
Solved Example 1
Q: Evaluate
double integral over R of (x+y) dAwhere R is bounded by x=0, y=0, and x+y=1.
Solution
The triangular region is:
0 <= x <= 1
0 <= y <= 1-xSo
integral from 0 to 1 [ integral from 0 to 1-x (x+y) dy ] dxIntegrate with respect to y:
= integral from 0 to 1 [xy + y^2/2] from 0 to 1-x dx= integral from 0 to 1 [x(1-x) + (1-x)^2/2] dx= integral from 0 to 1 [x - x^2 + (1 - 2x + x^2)/2] dx= integral from 0 to 1 [1/2 - x^2/2] dx= [x/2 - x^3/6] from 0 to 1
= 1/2 - 1/6
= 1/3Hence,
double integral over R of (x+y) dA = 1/34.2 Change of Order of Integration
Some double integrals become easier only after reversing the order of integration.
Standard steps
1. Draw the region from the given limits. 2. Identify the bounding curves. 3. Rewrite the region in the opposite order. 4. Rebuild the integral carefully with new limits.
Solved Example 2
Q: Change the order of integration:
integral from 0 to 1 [ integral from x^2 to x f(x,y) dy ] dxSolution
Given:
xranges from0to1yranges fromx^2tox
The boundary curves are:
y = x^2y = x
Their points of intersection are (0,0) and (1,1).
Now take y as the outer variable.
For a fixed y:
- left boundary is
x = y - right boundary is
x = sqrt(y)
Also,
0 <= y <= 1So the new integral is
integral from 0 to 1 [ integral from y to sqrt(y) f(x,y) dx ] dy4.3 Triple Integrals and Coordinate Systems
Triple integrals are used to compute volume, mass, and moments in three dimensions.
| System | Conversion | Volume Element |
|---|---|---|
| Cartesian | x, y, z | dx dy dz |
| Cylindrical | x = r cos theta, y = r sin theta, z = z | r dr dtheta dz |
| Spherical | x = rho sin phi cos theta, y = rho sin phi sin theta, z = rho cos phi | rho^2 sin phi drho dphi dtheta |
Solved Example 3
Q: Evaluate
triple integral over V of z dVwhere V is the hemisphere
x^2 + y^2 + z^2 <= a^2, z >= 0Solution
Use spherical coordinates:
0 <= rho <= a
0 <= phi <= pi/2
0 <= theta <= 2piAlso,
z = rho cos phi
dV = rho^2 sin phi drho dphi dthetaTherefore,
integral from 0 to 2pi
integral from 0 to pi/2
integral from 0 to a
(rho cos phi)(rho^2 sin phi) drho dphi dtheta= [integral from 0 to 2pi dtheta]
[integral from 0 to pi/2 sin phi cos phi dphi]
[integral from 0 to a rho^3 drho]= 2pi . [sin^2 phi / 2] from 0 to pi/2 . [rho^4/4] from 0 to a= 2pi . (1/2) . (a^4/4)
= pi a^4 / 4Hence,
triple integral over V of z dV = pi a^4 / 44.4 Change of Variables and Jacobian
When a region or integrand becomes simpler under substitution, use a new coordinate system together with the Jacobian.
double integral over R of f(x,y) dx dy
= double integral over S of f(x(u,v), y(u,v)) |J| du dvwhere
J = partial(x,y) / partial(u,v)Solved Example 4
Q: Evaluate
double integral over R of e^[(y-x)/(y+x)] dAwhere R is the triangle bounded by x=0, y=0, and x+y=1.
Solution
Take
u = y-x
v = y+xThen
x = (v-u)/2
y = (v+u)/2Jacobian:
J = | partial x/partial u partial x/partial v |
| partial y/partial u partial y/partial v | = | -1/2 1/2 |
| 1/2 1/2 |J = (-1/2)(1/2) - (1/2)(1/2) = -1/2So
|J| = 1/2The triangle transforms to
0 <= v <= 1
-v <= u <= vHence,
integral from 0 to 1
integral from -v to v
e^(u/v) (1/2) du dv= (1/2) integral from 0 to 1 [v e^(u/v)] from -v to v dv= (1/2) integral from 0 to 1 v(e - e^(-1)) dv= (e - 1/e)/2 . [v^2/2] from 0 to 1
= (e - 1/e)/4
= (e^2 - 1)/(4e)4.5 Beta and Gamma Functions
These special functions help evaluate integrals that are difficult by elementary methods.
| Function | Definition | Key Properties |
|---|---|---|
| Beta function | B(m,n) = integral from 0 to 1 x^(m-1)(1-x)^(n-1) dx | B(m,n)=B(n,m) |
| Gamma function | Gamma(n) = integral from 0 to infinity x^(n-1)e^(-x) dx | Gamma(n+1)=nGamma(n) |
| Special values | Gamma(1)=1, Gamma(1/2)=sqrt(pi) | Commonly used |
| Relation | B(m,n) = Gamma(m)Gamma(n) / Gamma(m+n) | Converts Beta to Gamma |
Solved Example 5
Q: Evaluate
integral from 0 to infinity x^4 e^(-2x) dxSolution
Let
2x = tThen
x = t/2
dx = dt/2So
integral from 0 to infinity x^4 e^(-2x) dx
= integral from 0 to infinity (t/2)^4 e^(-t) (dt/2)= 1/32 integral from 0 to infinity t^4 e^(-t) dt= 1/32 Gamma(5)
= 1/32 . 4!
= 24/32
= 3/4Hence,
integral from 0 to infinity x^4 e^(-2x) dx = 3/44.6 Volume, Mass, and Standard Applications
Double and triple integrals are central in geometric and physical applications.
Standard formulas
- Area:
A = double integral over R 1 dA
- Volume under
z = f(x,y):
V = double integral over R f(x,y) dA
- Mass:
M = triple integral rho dV
- Center of mass:
(1/M) triple integral r rho dV
Worked volume example
Evaluate
V = double integral over x^2+y^2<=4 of (4 - x^2 - y^2) dAUse polar coordinates:
V = integral from 0 to 2pi integral from 0 to 2 (4-r^2) r dr dtheta= 2pi integral from 0 to 2 (4r - r^3) dr= 2pi [2r^2 - r^4/4] from 0 to 2= 2pi (8 - 4)
= 8piHence,
V = 8piExercise Sets
Basic
1. Evaluate integral from 0 to 2 integral from 0 to x^2 x y dy dx. 2. Change order of integral from 0 to 1 integral from y to sqrt(2-y^2) f(x,y) dx dy. 3. Evaluate integral from 0 to infinity e^(-3x) x^2 dx using Gamma function. 4. Find the area bounded by y=x and y=x^2 using a double integral.
Intermediate
1. Evaluate double integral over first quadrant of e^(-(x^2+y^2)) dA using polar form. 2. Use u=x+y, v=x-y to evaluate a transformed double integral over a triangle. 3. Find the volume of the solid bounded by z=xy, x+y=1, x=0, y=0, z=0. 4. Prove B(1/2, 1/2) = pi using the Beta-Gamma relation.
Advanced
1. Evaluate triple integral over sphere of (x^2+y^2+z^2) dV. 2. Find the center of mass of a hemisphere with uniform density. 3. Show that integral from 0 to 1 x^m (log x)^n dx = (-1)^n n! / (m+1)^(n+1). 4. Evaluate double integral over annulus of (x^2+y^2)^(-3/2) dA.
Module 4 Quick Reference Sheet
- Polar area element:
dA = r dr dtheta - Cylindrical volume element:
dV = r dr dtheta dz - Spherical volume element:
dV = rho^2 sin phi drho dphi dtheta - Change order method: sketch region, swap limits, recheck boundaries
- Use
|J|while changing variables Gamma(n+1)=nGamma(n)Gamma(1/2)=sqrt(pi)B(m,n)=Gamma(m)Gamma(n)/Gamma(m+n)- Volume under surface:
double integral f(x,y) dA - Standard trick:
x^2+y^2suggests polar coordinates,x+yandx-ysuggest substitution
Module 4 Exam Focus
| Question Type | Marks | Frequency |
|---|---|---|
| Double integrals | 4 to 6 | 85 percent exams |
| Change of order | 4 to 6 | 75 percent exams |
| Triple integrals | 5 to 7 | 70 percent exams |
| Jacobian substitution | 5 to 7 | 75 percent exams |
| Beta and Gamma functions | 4 to 6 | 65 percent exams |
| Applications to area and volume | 5 to 7 | 80 percent exams |
Module 4 Study Strategy
| Mistake | How to Avoid |
|---|---|
| Wrong limits in double integrals | Sketch the region before integrating |
Forgetting the r in polar coordinates | Write dA = r dr dtheta separately first |
| Sign mistakes in Jacobian | Take absolute value after computing determinant |
| Using wrong spherical limits | Identify whether full sphere, hemisphere, or cone-bounded region |
| Missing Gamma substitution factor | Convert both the variable and dx carefully |
| Choosing hard order of integration | Change the order when inner integration looks complicated |
Module 4 Key Takeaways
| Topic | Exam Shortcut | ||
|---|---|---|---|
| Double integrals | Sketch region and choose easiest order | ||
| Polar integrals | Replace x^2+y^2 by r^2 immediately | ||
| Change of order | Draw curves first, then rebuild limits | ||
| Triple integrals | Match coordinate system to symmetry | ||
| Jacobian | Multiply integrand by ` | J | ` every time |
| Beta/Gamma | Reduce difficult integrals to standard forms | ||
| Applications | Area, volume, mass, and center of mass all come from the same integral framework |
Module 4 Outcome
After finishing this module, you should be able to:
- evaluate double and triple integrals in multiple coordinate systems,
- reverse the order of integration correctly,
- use Jacobians for variable transformation,
- apply Beta and Gamma functions to non-elementary integrals, and
- solve area, volume, mass, and center of mass problems.
---
Module 5: Ordinary Differential Equations (ODEs)
Chapter Objective
Master solution techniques for first-order and higher-order linear ODEs, special equations such as Cauchy-Euler equations, variation of parameters, and real-world engineering applications.
- Exam weightage: 20 to 25 percent
- Target: 4 to 5 long questions and 2 short questions
5.1 First Order ODEs: Types and Solutions
First-order differential equations appear in growth-decay models, circuits, heat transfer, and many engineering systems.
| Type | Standard Form | Solution Method |
|---|---|---|
| Separable | dy/dx = f(x)g(y) | integral dy/g(y) = integral f(x) dx |
| Homogeneous | dy/dx = f(y/x) | Substitute y = vx |
| Linear | dy/dx + P(x)y = Q(x) | Use integrating factor |
| Exact | M dx + N dy = 0 | Check partial M/partial y = partial N/partial x |
| Bernoulli | dy/dx + Py = Q y^n | Substitute v = y^(1-n) |
Solved Example 1
Q: Solve
dy/dx + y tan x = sec xSolution
This is a linear equation with
P = tan x, Q = sec xIntegrating factor:
IF = e^(integral tan x dx)
= e^(ln|sec x|)
= sec xMultiply the equation by sec x:
y sec x = integral sec x . sec x dx + Cy sec x = integral sec^2 x dx + Cy sec x = tan x + CHence,
y = cos x (tan x + C)
= sin x + C cos x5.2 Higher Order Linear ODEs with Constant Coefficients
A higher-order linear ODE with constant coefficients can be written as
a y'' + b y' + c y = f(x)or in operator form,
F(D)y = f(x)The complete solution is
y = CF + PIComplementary Function
Solve the auxiliary equation
a m^2 + b m + c = 0| Roots | Complementary Function |
|---|---|
| Real and distinct | c1 e^(m1 x) + c2 e^(m2 x) |
| Real and repeated | (c1 + c2 x)e^(mx) |
Complex alpha +- i beta | e^(alpha x)(c1 cos beta x + c2 sin beta x) |
Particular Integral shortcuts
| RHS | PI shortcut |
|---|---|
e^(ax) | e^(ax)/F(a) if F(a) != 0 |
sin ax, cos ax | Replace D^2 by -a^2 |
Polynomial x^n | Expand 1/F(D) |
e^(ax)V(x) | Use e^(ax) . 1/F(D+a) V(x) |
Solved Example 2
Q: Solve
y'' - 4y' + 4y = e^(2x)Solution
Auxiliary equation:
m^2 - 4m + 4 = 0(m-2)^2 = 0So the root is repeated:
m = 2, 2Hence,
CF = (c1 + c2 x)e^(2x)For the particular integral,
PI = 1/(D-2)^2 e^(2x)This is a case of failure because F(2)=0, so multiply by x. For repeated failure, the final result becomes
PI = (x^2/2)e^(2x)Therefore,
y = (c1 + c2 x + x^2/2)e^(2x)5.3 Variation of Parameters
Variation of parameters is used when the RHS is not suitable for standard PI shortcuts.
For the equation
y'' + P(x)y' + Q(x)y = R(x)if y1 and y2 are linearly independent solutions of the corresponding homogeneous equation, then
y_p = -y1 integral(y2 R / W) dx + y2 integral(y1 R / W) dxwhere
W = y1 y2' - y2 y1'is the Wronskian.
Solved Example 3
Q: Solve
y'' + y = sec xSolution
Auxiliary equation:
m^2 + 1 = 0So,
m = +- iHence,
CF = c1 cos x + c2 sin xTake
y1 = cos x, y2 = sin x, R = sec xWronskian:
W = y1 y2' - y2 y1'
= cos x . cos x - sin x(-sin x)
= cos^2 x + sin^2 x
= 1Now,
y_p = -cos x integral(sin x sec x) dx + sin x integral(cos x sec x) dx = -cos x integral(tan x) dx + sin x integral(1) dx = -cos x ln|sec x| + x sin xTherefore,
y = c1 cos x + c2 sin x + x sin x - cos x ln|sec x|5.4 Cauchy-Euler (Equidimensional) Equation
A Cauchy-Euler equation has the form
x^2 y'' + a x y' + by = f(x)Use the substitution
x = e^zThen
x y' = D y
x^2 y'' = D(D-1)ywhich converts the equation into one with constant coefficients.
Solved Example 4
Q: Solve
x^2 y'' + x y' - y = x^2Solution
Under the substitution, the equation becomes
[D(D-1) + D - 1]y = e^(2z)(D^2 - 1)y = e^(2z)Auxiliary equation:
m^2 - 1 = 0So,
m = +- 1Hence,
CF = c1 e^z + c2 e^(-z)
= c1 x + c2 / xParticular integral:
PI = 1/(D^2 - 1) e^(2z)
= e^(2z)/(4-1)
= e^(2z)/3
= x^2/3Therefore,
y = c1 x + c2/x + x^2/35.5 Engineering Applications of ODEs
Ordinary differential equations model many engineering systems.
| Application | ODE Model | Key Insight |
|---|---|---|
| Newton's cooling | dT/dt = -k(T-T_m) | Exponential decay |
| RL circuit | L di/dt + Ri = E(t) | First-order linear ODE |
| RC circuit | R dq/dt + q/C = E(t) | Same linear form |
| SHM and vibrations | m y'' + c y' + ky = F(t) | Transient plus steady-state behavior |
Solved Example 5
Q: An RL circuit has L = 2 H, R = 10 ohm, E = 20 V. Find i(t) if i(0)=0.
Solution
The governing equation is
2 di/dt + 10 i = 20Divide by 2:
di/dt + 5i = 10This is a first-order linear equation.
Integrating factor:
IF = e^(integral 5 dt) = e^(5t)Multiply through:
i e^(5t) = integral 10 e^(5t) dt + Ci e^(5t) = 2 e^(5t) + Ci(t) = 2 + C e^(-5t)Use i(0)=0:
0 = 2 + CSo,
C = -2Hence,
i(t) = 2(1 - e^(-5t)) AExercise Sets
Basic
1. Solve dy/dx = (x^2 + y^2)/(xy). 2. Solve y'' - 5y' + 6y = 0. 3. Solve dy/dx + 2y/x = x^2. 4. Find the particular integral of y'' + 4y = cos 2x.
Intermediate
1. Solve (x^2 + 1) dy/dx + 2xy = 4x^2. 2. Solve y'' - 2y' + y = x e^x. 3. Use variation of parameters to solve y'' + 4y = tan 2x. 4. Solve x^2 y'' - 2x y' + 2y = x^3.
Advanced
1. Solve y''' - 3y'' + 3y' - y = e^x. 2. Solve x^2 y'' + 3x y' + y = 1/(1-x)^2. 3. A 10 kg mass stretches a spring 0.5 m. If displaced 0.2 m upward and released, find the equation of motion. 4. Solve dy/dx = (x + y - 1)/(x - y + 1) using translation.
Module 5 Quick Reference Sheet
- Linear first-order ODE:
IF = e^(integral P dx)
- Exact equation condition:
partial M/partial y = partial N/partial x
- CF roots:
distinct, repeated, and complex cases must be recognized quickly
- PI shortcuts:
F(D)e^(ax) -> e^(ax)/F(a)
- VOP formula:
y_p = -y1 integral(y2 R/W) dx + y2 integral(y1 R/W) dx
- Wronskian:
W = y1 y2' - y2 y1'
- Cauchy-Euler substitution:
x = e^z
- RL and RC circuits reduce to first-order linear equations
Module 5 Exam Focus
| Question Type | Marks | Frequency |
|---|---|---|
| First-order ODEs | 4 to 6 | 80 percent exams |
| Higher-order linear ODEs | 5 to 7 | 90 percent exams |
| PI and resonance cases | 5 to 7 | 85 percent exams |
| Variation of parameters | 5 to 7 | 70 percent exams |
| Cauchy-Euler equations | 4 to 6 | 75 percent exams |
| Engineering applications | 4 to 6 | 65 percent exams |
Module 5 Study Strategy
| Mistake | How to Avoid |
|---|---|
| Using wrong type for first-order ODE | Classify the equation before solving |
| Forgetting integrating factor | Rewrite in exact linear form first |
| Wrong CF for repeated roots | Use (c1 + c2 x)e^(mx) |
| PI failure in resonance | Multiply by x when F(a)=0 |
| Sign mistakes in Wronskian | Compute W separately before substitution |
| Missing conversion in Cauchy-Euler | Replace x y' and x^2 y'' correctly |
Module 5 Key Takeaways
| Topic | Exam Shortcut |
|---|---|
| First-order ODEs | Identify separable, homogeneous, linear, exact, or Bernoulli first |
| Linear ODE | IF = e^(integral P dx) is the standard shortcut |
| Higher-order ODE | Write solution as CF + PI immediately |
| Resonance | If shortcut fails, multiply by x |
| VOP | Use when PI shortcuts become messy |
| Cauchy-Euler | Convert to constant coefficients using x = e^z |
| Applications | RL, RC, cooling, and vibrations all reduce to standard ODE forms |
Module 5 Outcome
After finishing this module, you should be able to:
- solve standard first-order differential equations,
- build CF and PI for higher-order linear equations,
- use variation of parameters when required,
- solve Cauchy-Euler equations systematically, and
- interpret ODEs in engineering applications such as circuits and vibration models.
---
Module 6: Infinite Series and Convergence (with Fourier Basics)
Chapter Objective
Master convergence and divergence tests for infinite series, power series and radius of convergence, and the basics of Fourier series.
- Exam weightage: 10 to 15 percent
- Target: 2 to 3 long questions and 2 short questions
6.1 Convergence Tests for Positive Term Series
A positive term series has the form
sum a_n, where a_n > 0The main task is to decide whether the series converges or diverges.
| Test | Condition | Conclusion | ||
|---|---|---|---|---|
| Ratio test | `L = lim | a_(n+1)/a_n | | L < 1 convergent, L > 1 divergent, L = 1 inconclusive |
| Root test | `L = lim | a_n | ^(1/n)` | Same result as ratio test |
| Raabe's test | `R = lim n( | a_n/a_(n+1) | - 1)` | R > 1 convergent, R < 1 divergent |
| Comparison test | 0 <= a_n <= b_n | Compare with known benchmark series | ||
| Limit comparison | lim a_n/b_n = L, 0 < L < infinity | Both behave the same |
Solved Example 1
Q: Test the convergence of
sum (n!)/(n^n)Solution
Let
a_n = n!/n^nUse the ratio test:
a_(n+1)/a_n
= [(n+1)!/(n+1)^(n+1)] . [n^n/n!]= (n+1)n^n / (n+1)^(n+1)
= n^n / (n+1)^n
= 1 / (1 + 1/n)^nAs n -> infinity,
L = 1/eSince
1/e < 1the series converges.
6.2 Alternating and Conditional Convergence
Alternating series change sign from term to term.
| Type | Form | Test | ||
|---|---|---|---|---|
| Alternating series | sum (-1)^n a_n | Leibniz test | ||
| Absolute convergence | `sum | a_n | ` convergent | Original series converges absolutely |
| Conditional convergence | sum a_n converges but `sum | a_n | ` diverges | Conditionally convergent |
Leibniz Test
An alternating series
sum (-1)^n a_nconverges if:
1. a_n is decreasing 2. lim a_n = 0
Solved Example 2
Q: Test
sum (-1)^n / sqrt(n)Solution
Let
a_n = 1/sqrt(n)Then:
a_nis decreasinglim 1/sqrt(n) = 0
So by Leibniz test, the series converges.
Now check absolute convergence:
sum |(-1)^n / sqrt(n)| = sum 1/sqrt(n)This is a p-series with
p = 1/2 < 1so it diverges.
Hence the series is conditionally convergent.
6.3 Power Series and Radius of Convergence
A power series has the form
sum a_n (x-c)^nwhere c is the center.
Radius of convergence
The radius R is given by:
R = lim |a_n / a_(n+1)|when that limit exists.
The interval of convergence is
(c-R, c+R)and endpoints must always be checked separately.
Solved Example 3
Q: Find the radius and interval of convergence of
sum (x-3)^n / (n 2^n)Solution
Here
a_n = 1/(n 2^n)Use the ratio formula:
R = lim |a_n / a_(n+1)|= lim [(n+1)2^(n+1)] / [n2^n]
= lim 2(1 + 1/n)
= 2So the radius is
R = 2The center is c = 3, so the open interval is
(1,5)Check endpoints:
At x = 1:
sum (-2)^n / (n 2^n) = sum (-1)^n / nThis is the alternating harmonic series, so it converges.
At x = 5:
sum 2^n / (n 2^n) = sum 1/nThis is the harmonic series, so it diverges.
Hence the interval of convergence is
[1,5)6.4 Fourier Series Basics
For a function of period 2L, the Fourier series is
f(x) = a_0/2 + sum [a_n cos(n pi x / L) + b_n sin(n pi x / L)]Coefficients
| Coefficient | Formula |
|---|---|
a_0 | (1/L) integral from -L to L f(x) dx |
a_n | (1/L) integral from -L to L f(x) cos(n pi x/L) dx |
b_n | (1/L) integral from -L to L f(x) sin(n pi x/L) dx |
Half-range rules
- Even function: cosine series only, so
b_n = 0 - Odd function: sine series only, so
a_n = 0
Solved Example 4
Q: Find the Fourier series of
f(x) = x on (-pi, pi)Solution
The function f(x)=x is odd.
Therefore,
a_0 = 0
a_n = 0Now,
b_n = (1/pi) integral from -pi to pi x sin(nx) dxSince the product is even,
b_n = (2/pi) integral from 0 to pi x sin(nx) dxUsing integration by parts:
u = x, dv = sin(nx) dx
du = dx, v = -cos(nx)/nThen
b_n = (2/pi)[ -x cos(nx)/n ] from 0 to pi + (2/pi) integral from 0 to pi cos(nx)/n dxThe second term becomes zero, so
b_n = (2/pi)[ -pi cos(npi)/n ]Since cos(npi) = (-1)^n,
b_n = 2(-1)^(n+1)/nHence,
f(x) = sum from n=1 to infinity [2(-1)^(n+1)/n] sin(nx)Exercise Sets
Basic
1. Test convergence of sum n^2 / 3^n. 2. Test sum (-1)^n / n^3. 3. Find the radius of convergence for sum (2x)^n / n!. 4. Check whether sum 1/(n ln n) converges or diverges.
Intermediate
1. Use Raabe's test for a factorial-type series. 2. Find the interval of convergence for sum (x+2)^n / sqrt(n+1). 3. Expand f(x)=|x| on (-pi,pi) as a Fourier series. 4. Test absolute and conditional convergence of sum (-1)^n (n+1)/(n^2+1).
Advanced
1. Prove that absolute convergence implies convergence of sum a_n sin(n theta). 2. Find the sum of sum (-1)^(n+1)/n^2 using Fourier series. 3. Determine convergence of sum n! x^n using the root test. 4. Find the half-range sine series of f(x)=x(pi-x) on (0,pi).
Module 6 Quick Reference Sheet
- Ratio test:
L = lim |a_(n+1)/a_n| - Root test:
L = lim |a_n|^(1/n) - Raabe test:
R = lim n(|a_n/a_(n+1)| - 1) - Leibniz test: alternating series converges if
a_ndecreases to0 - Radius:
R = lim |a_n/a_(n+1)|
- Interval:
(c-R, c+R) plus endpoint testing
- Fourier coefficients:
a_0, a_n, b_n
- Even functions give cosine series, odd functions give sine series
p-series:
sum 1/n^p converges if p > 1
- Geometric series:
sum ar^n converges if |r| < 1
Module 6 Exam Focus
| Question Type | Marks | Frequency |
|---|---|---|
| Positive term series tests | 4 to 6 | 80 percent exams |
| Alternating and conditional convergence | 3 to 5 | 65 percent exams |
| Power series and radius | 4 to 6 | 85 percent exams |
| Fourier series basics | 5 to 7 | 70 percent exams |
| Endpoint testing | 3 to 5 | 75 percent exams |
Module 6 Study Strategy
| Mistake | How to Avoid | ||
|---|---|---|---|
Using ratio test when L=1 and stopping | Switch to Raabe or comparison test | ||
| Forgetting endpoint checks in power series | Always test both endpoints separately | ||
| Mixing absolute and conditional convergence | Check `sum | a_n | ` separately |
| Wrong parity in Fourier series | Test whether the function is even or odd first | ||
| Sign mistakes in Fourier coefficients | Use symmetry to simplify integrals before computing |
Module 6 Key Takeaways
| Topic | Exam Shortcut |
|---|---|
| Positive term series | Start with ratio or root test |
| Alternating series | Apply Leibniz test quickly |
| Radius of convergence | Find R first, then test endpoints |
| Fourier series | Check symmetry before integration |
| Benchmark series | Know geometric and p-series by heart |
Module 6 Outcome
After finishing this module, you should be able to:
- decide whether a series converges or diverges using standard tests,
- classify alternating series as absolute or conditional,
- find radius and interval of convergence of power series, and
- compute Fourier series for simple functions using symmetry.