Iteration Method

Introduction

Iteration Method का उपयोग उन equations के approximate root निकालने के लिए किया जाता है जिन्हें सीधे algebraic method से solve करना कठिन होता है।

इस method में equation f(x)=0f(x)=0 को इस रूप में बदला जाता है:

x=g(x)x = g(x)

फिर एक initial approximation लेकर successive values निकाली जाती हैं।

Example

Solve the equation:x3x2=0x^3 – x – 2 = 0

Step 1: Equation को iterative form में बदलें

Given equation है:x3x2=0x^3 – x – 2 = 0

अब इसे rearrange करते हैं:x3=x+2x^3 = x + 2

दोनों sides का cube root लेने पर:x=x+23x = \sqrt[3]{x+2}

यहाँ,g(x)=x+23g(x)=\sqrt[3]{x+2}

अब iteration formula होगा:xn+1=xn+23x_{n+1}= \sqrt[3]{x_n+2}

Step 2: Convergence condition check करें

Iteration Method के converge करने के लिए आवश्यक है कि:

g(x)<1|g'(x)|<1

अब,g(x)=(x+2)1/3g(x)=(x+2)^{1/3}

Differentiate करने पर:g(x)=13(x+2)2/3g'(x)=\frac{1}{3(x+2)^{2/3}}

अब root के आसपास x1.5x \approx 1.5x≈1.5 रखने पर:

g(1.5)=13(3.5)2/3g'(1.5)=\frac{1}{3(3.5)^{2/3}}

यह value 1 से छोटी होगी, इसलिए method converge करेगा।

Step 3: Initial approximation लें

मान लें:x0=1x_0=1

अब iteration formula use करेंगे:xn+1=xn+23x_{n+1}= \sqrt[3]{x_n+2}

Step 4: Successive approximations निकालें

First approximation:x1=1+23=33=1.442x_1=\sqrt[3]{1+2}=\sqrt[3]{3}=1.442

Second approximation:x2=1.442+23=3.4423=1.509x_2=\sqrt[3]{1.442+2}=\sqrt[3]{3.442}=1.509

Third approximation:x3=1.509+23=3.5093=1.519x_3=\sqrt[3]{1.509+2}=\sqrt[3]{3.509}=1.519

Fourth approximation:x4=1.519+23=3.5193=1.521x_4=\sqrt[3]{1.519+2}=\sqrt[3]{3.519}=1.521

Fifth approximation:x5=1.521+23=3.5213=1.521x_5=\sqrt[3]{1.521+2}=\sqrt[3]{3.521}=1.521

अब values लगभग same हो रही हैं, इसलिए root होगा:x1.521x \approx 1.521

Iteration Table

Iterationxnx_nCalculationxn+1x_{n+1}
01.0001+23\sqrt[3]{1+2}1.442
11.4421.442+23\sqrt[3]{1.442+2}1.509
21.5091.509+23\sqrt[3]{1.509+2}1.519
31.5191.519+23\sqrt[3]{1.519+2}1.521
41.5211.521+23\sqrt[3]{1.521+2}1.521

Conclusion

इस प्रकार Iteration Method द्वारा equationx3x2=0x^3-x-2=0

का approximate root है:x1.521x \approx 1.521

Simple Diagram

Iteration Method को graphically इस तरह समझते हैं:

  • y=xy=x और y=g(x)y=g(x) का graph बनाते हैं
  • जहाँ दोनों curves intersect करते हैं, वही required root होता है
  • successive approximations उसी point की ओर बढ़ती हैं

Leave a Comment

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

Scroll to Top