Solution of Algebraic and Transcendental Equations

Introduction

इस unit में हम ऐसे equations को solve करना सीखेंगे जिन्हें सामान्य algebraic methods से सीधे solve करना संभव नहीं होता।

ये equations दो प्रकार की होती हैं:

  1. Algebraic Equations
  2. Transcendental Equations

Algebraic Equation क्या होती है

Algebraic equations वे equations होती हैं जिनमें variable केवल polynomial form में होता है, जैसे:

x34x+1=0x^3 – 4x + 1 = 0

इन equations को कई बार factorization या formula से solve किया जा सकता है, लेकिन higher degree होने पर यह मुश्किल हो जाता है।

Transcendental Equation क्या होती है

Transcendental equations वे equations होती हैं जिनमें exponential, logarithmic या trigonometric functions होते हैं।

Example:exx=0e^x – x = 0

याsinx=x/2\sin x = x/2

इन equations का exact solution सामान्य algebraic methods से संभव नहीं होता।
इसीलिए हम numerical methods का उपयोग करते हैं।

Need of Numerical Methods

अब एक important बात समझो — exam में यह concept अक्सर पूछा जाता है।

कई equations ऐसी होती हैं:

  • जिनका exact solution निकालना possible नहीं होता
  • या निकालना बहुत complex होता है

इसलिए हम approximate methods (numerical methods) का उपयोग करते हैं, जिससे हमें root (solution) का करीब-करीब सही मान मिल जाता है।

Root of Equation क्या होता है

यदि किसी equation f(x)=0f(x) = 0 के लिए कोई value x=ax = a ऐसी हो कि:f(a)=0f(a) = 0

तो aa उस equation का root (solution) कहलाता है।

Graphical Interpretation

यदि हम function y=f(x)y = f(x) का graph बनाते हैं, तो जहाँ graph x-axis को काटता है, वही उस equation का root होता है।

इसका मतलब:f(x)=0y=0f(x) = 0 \Rightarrow y = 0

इसलिए root वही point है जहाँ graph x-axis को intersect करता है।

Numerical Methods Covered in This Unit

इस unit में हम चार important methods पढ़ेंगे:

1. Bisection Method

यह method interval को बार-बार divide करके root निकालता है।
यह simple और reliable method है।

2. Iteration Method

इस method में equation को iterative form में लिखकर बार-बार approximation किया जाता है।
यह method convergence पर depend करता है।

3. Method of False Position (Regula-Falsi)

यह method linear interpolation का उपयोग करता है।
यह Bisection method से faster होता है।

4. Newton-Raphson Method

यह सबसे powerful method है।
यह derivative का उपयोग करता है और बहुत तेजी से accurate result देता है।

Important Condition

किसी भी method को apply करने से पहले यह check करना जरूरी है:f(a)f(b)<0f(a) \cdot f(b) < 0

इसका मतलब है कि function का sign interval में change होना चाहिए।
तभी उस interval में root exist करता है।

Final Understanding

Algebraic और transcendental equations को exact solve करना हमेशा संभव नहीं होता
Numerical methods approximate solution देते हैं
Root वह value है जहाँ f(x)=0f(x) = 0 होता है
Graphically, root वह point है जहाँ curve x-axis को काटता है

Leave a Comment

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

Scroll to Top