Roots of Equations - Examples & Applications
This section explores methods for finding the roots of equations, including bracketing methods (Bisection, False Position), open methods (Newton-Raphson, Secant), handling multiple roots, and solving systems of nonlinear equations.
Bracketing Methods: Bisection
The Bisection method repeatedly halves the interval that contains the root.
Basic: Bisection Method
Use the bisection method to find the root of the function . Perform three iterations using an initial bracket of and . Calculate the approximate relative error for each iteration.
Step-by-Step Solution
0 of 3 Steps CompletedIntermediate: Drag Coefficient with Bisection
The velocity of a falling parachutist is given by . Given , , , and , use the bisection method to determine the drag coefficient to a level of . The initial guesses are and .
Step-by-Step Solution
0 of 4 Steps CompletedBracketing Methods: False Position
The False Position method connects the endpoints of the interval with a straight line and estimates the root at the intersection of the line with the x-axis.
Intermediate: False Position Method
Use the false position method to determine the root of . The initial interval is . Perform two iterations.
Step-by-Step Solution
0 of 3 Steps CompletedOpen Methods: Newton-Raphson Method
The Newton-Raphson method is a fast-converging open method that utilizes the derivative of the function to extrapolate to the root.
Advanced: Newton-Raphson Method
Use the Newton-Raphson method to estimate the root of . Employ an initial guess of . Perform three iterations.
Step-by-Step Solution
0 of 4 Steps CompletedOpen Methods: Secant Method
Intermediate: Secant Method
Use the Secant method to estimate the root of . Start with initial estimates of and . Perform two iterations.
Step-by-Step Solution
0 of 2 Steps CompletedMultiple Roots
The Modified Newton-Raphson method improves convergence for multiple roots.
Advanced: Modified Newton-Raphson
Find the root of , which has a double root at . Use the Modified Newton-Raphson method with an initial guess . Perform one iteration.
Step-by-Step Solution
0 of 2 Steps CompletedSystems of Nonlinear Equations
The Newton-Raphson method can be extended to systems of nonlinear equations using partial derivatives (Jacobian matrix).
Advanced: System of Nonlinear Equations
Solve the following system using the multivariable Newton-Raphson method with an initial guess of . Perform one iteration.
Step-by-Step Solution
0 of 3 Steps CompletedRoots of Polynomials
Polynomials can have complex roots. Methods like Bairstow's method extract quadratic factors from the polynomial to find complex conjugate root pairs without requiring complex arithmetic.
Advanced: Finding Complex Roots with the Quadratic Formula
Find the roots of the quadratic polynomial extracted from Bairstow's method: .