Next: Bracketing Methods Up:Main
Determination of roots of polynomials and transcendental equations by Newton Raphson, Secant and Bairstow's method.
Motivation:
Let us look at a set of problems of scientific and engineering interest to get a feel of what is root finding and why to find roots. Later we learn how to find them.
Problem 1:
Suppose we are asked to cut a rectangular sheet with one of its sides 1.25mts longer than the other and the area being 0.875
mts from a thin iron sheet of 5 mts area.What will be length of the 'smallest side'?
Say, length of the smallest side =
Length of the other side
Area of rectangle
mt
i.e.
i.e. say
(1) |
So you need to solve a quadratic equation to find the required quantity. i.e. we have to find the roots of a quadratic equation.
We know that the roots of a quadratic equation
(2) |
are given by
(3) |
Problem 2:
Concepts of thermodynamics are used extensively in their works by say aerospace, mechanical and chemical engineers. Here, the zero-pressure specific heat of dry air say KJ/(KgK) is related to temperature 'T' by
Now, determine the temperature that corresponds to a specific heat of 1.2 KJ/(KgK). So, here we have to solve or find the roots of
=1.2
i.e. find roots of
(4) |
Problem 3:
The concentration of pollutant bacteria 'C' in a lake decreases as per the model:
(5) |
Problem 4:
The volume of liquid in a hollow horizontal cylinder of radius r and
length L is related to the depth of the liquid h by
(6) |
So we have seen that finding roots of ..................(7)
is very important in finding solution to several scientific and engineering problems.
The equation may be a polynomial equation or a transcendental equation.
Polynomial Equations:
Polynomial equations in one independent variable 'x' are a simple class of algebraic equations that are represented as follows:
The degree polynomial has roots. These roots may be real or complex.
Examples:
Transcendental Equation:
The equations include trigonometric or exponential or logarithmic functions.
Examples:
We may note that the examples are nonlinear functions.
Method of solution:
Some of the ways of finding the roots or solution of are:
Direct analytical methods: One may be able to find a mathematical expression for the solution (root) of
.
For example, for quadratic equation (2), we have solutions given by (3). However a large number of equations cannot be solved by direct analytical methods.
Graphical Method: This approach involves plotting the given function and determining the points where it crosses the x-axis. These points, extracted approximately from the plot, represent approximate values of the roots of the function.
Example:
Find the positive roots of
Rewrite
as
Now consider and
and plot them .
The x-co-ordinate of the point of intersection of , and gives the required positive root of the given function. Clearly this approach is cumbersome and time consuming.
Iterative Methods: Starting with an initial guess solution these methods generate a sequence of estimates to the solution which is expected to converge to the true solution. They are grouped into two categories :
Next: Bracketing Methods:Previous: MAIN