Numerical Methods
Learning Objectives
- Understand the fundamental concepts of Numerical Methods
- Apply key formulas and techniques to solve problems
- Practice with exam-level questions to build speed and accuracy
Key Concepts
What are Numerical Methods?
Numerical methods provide techniques for solving mathematical problems using numerical approximation. GATE covers root-finding methods, interpolation, numerical differentiation and integration, and numerical solutions of ODEs. Weightage is typically 3-5% in GATE.
Key Concepts
1. Root Finding: Bisection method — repeatedly halve the interval [a,b] where f(a)f(b)<0. Convergence is linear, slow but guaranteed. Newton-Raphson method: x_{n+1} = x_n - f(x_n)/f'(x_n). Convergence is quadratic if initial guess is close. Secant method: x_{n+1} = x_n - f(x_n)(x_n-x_{n-1})/(f(x_n)-f(x_{n-1})) — no derivative needed.
2. Interpolation: Lagrange interpolation: polynomial passing through n+1 points. Newton's forward/backward difference formulas for equally spaced data. Error in interpolation depends on the (n+1)th derivative of the function.
3. Numerical Integration: Trapezoidal rule: ∫(a to b) f(x)dx ≈ h/2[f₀ + 2(f₁+...+f_{n-1}) + f_n], error ~ O(h²). Simpson's 1/3 rule: ∫(a to b) f(x)dx ≈ h/3[f₀ + 4(f₁+f₃+...) + 2(f₂+f₄+...) + f_n], requires even number of intervals, error ~ O(h⁴). Simpson's 3/8 rule for 3-interval blocks.
4. Numerical Solution of ODEs: Euler's method: y_{n+1} = y_n + hf(x_n,y_n) — first order accuracy. Modified Euler (Heun): predictor-corrector method. Runge-Kutta 4th order: y_{n+1} = y_n + (h/6)(k₁+2k₂+2k₃+k₄) where k₁ = f(x_n,y_n), k₂ = f(x_n+h/2, y_n+hk₁/2), k₃ = f(x_n+h/2, y_n+hk₂/2), k₄ = f(x_n+h, y_n+hk₃). RK4 is widely used due to its high accuracy.
Solved Examples
a) 2.236 b) 2.238 c) 2.234 d) 2.230
a) 21.33 b) 21.00 c) 22.67 d) 20.00
a) 1.22 b) 1.23 c) 1.21 d) 1.24
Shortcut Techniques
- For Newton-Raphson, choose initial guess close to the root — divergence can occur if f'(x) is small near the guess.
- Trapezoidal rule is exact for linear functions. Simpson's 1/3 rule is exact for quadratic and cubic functions.
- Bisection method is guaranteed to converge but slow — use it for initial bracketing then switch to Newton-Raphson for faster convergence.
- For Euler's method, halving the step size roughly halves the error (first order). RK4 has fourth order accuracy — error reduces by factor 16 when step size is halved.
- Lagrange interpolation for n+1 points gives a unique polynomial of degree ≤ n. For evenly spaced data, Newton's forward/backward formulas are more efficient.
Advanced Applications
Modern exams feature questions combining multiple quantitative concepts. Master these by practicing previous year papers.
Shortcut Methods
Percentages: Use fraction table (12.5%=1/8, 20%=1/5, 25%=1/4). SI/CI: For 2 years, CI-SI = P(r/100)^2. Time Work: Use LCM of time periods. Average Speed: 2ab/(a+b) for equal distances.
Advanced Applications
Modern exams feature questions combining multiple quantitative concepts. Master these by practicing previous year papers.
Shortcut Methods
Percentages: Use fraction table (12.5%=1/8, 20%=1/5, 25%=1/4). SI/CI: For 2 years, CI-SI = P(r/100)^2. Time Work: Use LCM of time periods. Average Speed: 2ab/(a+b) for equal distances.
Advanced Applications
Modern exams feature questions combining multiple quantitative concepts. Master these by practicing previous year papers.
Shortcut Methods
Percentages: Use fraction table (12.5%=1/8, 20%=1/5, 25%=1/4). SI/CI: For 2 years, CI-SI = P(r/100)^2. Time Work: Use LCM of time periods. Average Speed: 2ab/(a+b) for equal distances.
Advanced Applications
Modern exams feature questions combining multiple quantitative concepts. Master these by practicing previous year papers.
Shortcut Methods
Percentages: Use fraction table (12.5%=1/8, 20%=1/5, 25%=1/4). SI/CI: For 2 years, CI-SI = P(r/100)^2. Time Work: Use LCM of time periods. Average Speed: 2ab/(a+b) for equal distances.