Solution by Taylor’s Series

Introduction

Numerical Methods में Differential Equations को solve करने के लिए Taylor’s Series Method एक important technique है। जब किसी differential equation का exact solution निकालना कठिन हो जाता है, तब हम इस method की मदद से approximate solution प्राप्त करते हैं।

इस method में हम function को उसके derivatives की सहायता से expand करते हैं और step-by-step आगे की values निकालते हैं। यह method theoretical base देता है, जिस पर बाद के methods (जैसे Euler, Runge-Kutta) आधारित होते हैं।

Basic Idea

अगर हमें differential equation दी गई है:dydx=f(x,y)\frac{dy}{dx} = f(x, y)

और initial condition है:y(x0)=y0y(x_0) = y_0

तो हम Taylor series का उपयोग करके y(x+h)y(x+h) का मान निकालते हैं।

Taylor Series Expansion

y(x+h)=y(x)+hy(x)+h22!y(x)+h33!y(x)+y(x+h)=y(x)+hy'(x)+\frac{h^2}{2!}y”(x)+\frac{h^3}{3!}y”'(x)+\cdots

जहाँ:

  • hh = step size
  • y,y,yy’, y”, y”’ = derivatives

Derivatives कैसे निकालते हैं

Given:dydx=f(x,y)\frac{dy}{dx} = f(x, y)

तो:

  • y=f(x,y)y’ = f(x,y)
  • y=ddx(f(x,y))y” = \frac{d}{dx}(f(x,y))
  • yy”’इसी तरह आगे

यानी higher derivatives निकालने पड़ते हैं

Numerical Example (Step-by-Step)

Solve:dydx=x+y,y(0)=1\frac{dy}{dx} = x + y,\quad y(0) = 1

Find y(0.1)y(0.1)

Step 1: Given values

  • x0=0x_0 = 0
  • y0=1y_0 = 1
  • h=0.1h = 0.1

Step 2: First derivative

y=x+yy’ = x + y

y(0)=0+1=1y'(0) = 0 + 1 = 1

Step 3: Second derivative

y=ddx(x+y)=1+yy” = \frac{d}{dx}(x + y) = 1 + y’

y(0)=1+1=2y”(0) = 1 + 1 = 2

Step 4: Third derivative

y=ddx(y)=yy”’ = \frac{d}{dx}(y”) = y”

y(0)=2y”'(0) = 2

Step 5: Taylor formula में put करें

y(0.1)=y0+hy+h22y+h36yy(0.1) = y_0 + h y’ + \frac{h^2}{2} y” + \frac{h^3}{6} y”’

Step 6: Values डालें

=1+0.1(1)+0.012(2)+0.0016(2)= 1 + 0.1(1) + \frac{0.01}{2}(2) + \frac{0.001}{6}(2)

Step 7: Solve करें

=1+0.1+0.01+0.000333= 1 + 0.1 + 0.01 + 0.000333

1.1103\approx 1.1103

Final Answer

y(0.1)1.1103y(0.1) \approx 1.1103

Explanation

  • हमने derivatives निकाले
  • Taylor expansion apply किया
  • higher terms जोड़कर accuracy बढ़ाई

जितने ज्यादा terms लेंगे, उतना accurate result मिलेगा

Important Points

  • यह method accurate होता है
  • higher derivatives निकालने पड़ते हैं
  • calculation थोड़ा लंबा हो सकता है
  • theoretical importance बहुत ज्यादा है

Conclusion

Taylor’s Series Method एक fundamental technique है जिससे:

  • differential equations का approximate solution मिलता है
  • आगे के numerical methods की foundation बनती है
  • accuracy control की जा सकती है

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top