Skip to content

📐 Engineering Mathematics – II (100202)

⬅️ Back to Semester-2 | 🏠 Home

💡 Why this subject? Laplace & Fourier transforms are exactly what signal processing, image compression, and control systems are built on.


📌 Unit 1: Complex Analysis – I

  • Complex function: f(z) where z = x + iy.
  • Analytic function: differentiable at every point in a region — very "well-behaved."
  • Cauchy-Riemann Equations: a test (using partial derivatives) to check if a complex function is analytic.
  • Harmonic function: satisfies Laplace's equation — real & imaginary parts of an analytic function are always harmonic conjugates of each other.

📌 Unit 2: Complex Analysis – II

  • Contour Integral: integrating a complex function along a path in the complex plane.
  • Cauchy's Theorem: integral of an analytic function around a closed loop = 0 (if no singularities inside).
  • Cauchy's Integral Formula: lets you find a function's value (or derivatives) anywhere inside a contour using just the boundary values.
  • Taylor & Laurent Series: express a complex function as a power series; Laurent series also allows negative powers — needed near singularities.
  • Residue Theorem: a shortcut to evaluate tricky integrals by just looking at the "residues" (special coefficients) at singular points — used heavily in physics & engineering integral problems.

🧠 Quick Recall: Residue theorem turns "scary contour integral" into "just add up a few easy numbers."


📌 Unit 3: Ordinary Differential Equations

  • Linear ODE with constant coefficients: solved using the characteristic equation (auxiliary equation).
  • Homogeneous vs Non-Homogeneous: homogeneous = equals 0 on the right; non-homogeneous has an extra forcing term (needs Particular Integral).
  • Cauchy-Euler Equation: variable-coefficient ODE solved by substituting x = eᵗ.
  • Method of Variation of Parameters: a general technique to find the particular solution when standard guessing doesn't work.

📝 Example: A spring-mass-damper system (mx'' + cx' + kx = F(t)) is exactly this kind of ODE — directly connects to Physics Unit 1 (oscillations)!


📌 Unit 4: Sequence and Series

  • Sequence: ordered list of numbers; Series: sum of a sequence.
  • Tests of convergence (does the series add up to a finite number?):
  • Comparison test: compare with a known series.
  • D'Alembert's Ratio test: look at ratio of consecutive terms.
  • Cauchy's Root test: look at nth root of terms.
  • Raabe's test: used when ratio test is inconclusive (ratio → 1).

🧠 Quick Recall: Ratio test is the most commonly used — if limit < 1 → converges, > 1 → diverges, = 1 → test fails, try another.


📌 Unit 5: Laplace Transform ⭐ (Most important for CSE)

  • Laplace Transform: converts a function of time f(t) into a function of s, turning differential equations into simple algebra. L{f(t)} = ∫₀^∞ e^(-st) f(t) dt
  • Inverse Laplace Transform: converts back from s-domain to time domain.
  • Convolution Theorem: multiplying two Laplace transforms = Laplace transform of their convolution (used in system response problems).
  • Application: solve ODEs by transforming → solving algebraically in s → inverse transforming back.

📝 Example — why this matters for CS: Control systems, signal processing, and even understanding how a CPU's circuits respond to signal changes use Laplace transforms to convert hard calculus problems into easy algebra problems.


📌 Unit 6: Fourier Series

  • Fourier Series: represents any periodic function as a sum of sines & cosines. f(x) = a₀ + Σ(aₙcos(nx) + bₙsin(nx))
  • Odd/Even functions: odd functions → only sine terms; even functions → only cosine terms (simplifies calculation).
  • Half-range series: used when a function is only defined on half an interval.
  • Parseval's Theorem: relates the energy of a signal in time domain to the sum of squares of its Fourier coefficients.

📝 Practical use: JPEG image compression and MP3 audio compression are literally built on Fourier-style transforms — breaking signals into frequency components and discarding less important ones.


✅ Quick Revision Table

Topic One-line memory hook
Analytic function Differentiable everywhere in a region
Residue theorem Hard integral → sum of a few residues
Cauchy-Euler ODE Variable coefficient, substitute x = eᵗ
Ratio test limit <1 converge, >1 diverge, =1 inconclusive
Laplace Transform Converts ODE problem → algebra problem
Fourier Series Any periodic signal = sum of sines & cosines