Root-finding algorithms are tools used in mathematics and computer science to locate the solutions, or "roots," of equations. These algorithms help us find solutions to equations where the function equals zero. For example, if we have an equation like f(x) = 0, a root-finding algorithm will help us determine the value of x that makes this equation true.
Different types of root finding algorithms are bisection method, Regula-Falsi method, Newton-Raphson method, and secant method. These algorithms are essential in various fields of science and engineering because they help solve equations that cannot be easily rearranged or solved analytically.
Types of Root Finding Algorithms
Root-finding algorithms can be broadly categorized into Bracketing Methods and Open Methods.
- Bracketing Methods: This method starts with an interval where the function changes sign, ensuring that a root lies within this interval. These methods iteratively reduce the interval size to home in on the root.
- Open Methods: This starts with one or more initial guesses that do not necessarily bracket the root. These methods can converge more quickly but do not always guarantee convergence.
Bracketing Methods
A bracketing method finds the root of a function by progressively narrowing down an interval that contains the root. It uses the intermediate value theorem, which states that if a continuous function changes signs over an interval, a root exists within that interval. Starting with such an interval, the method repeatedly reduces the interval size until it is small enough to identify the root.
For polynomials, additional techniques like Descartes' rule of signs, Budan's theorem, and Sturm's theorem can determine the number of roots in an interval, ensuring all real roots are found accurately.
The bracketing method is further classified into:
- Bisection Method
- False Position (Regula Falsi) Method
Bisection Method
Bisection method is one of the simplest and most reliable root finding algorithms. It works by repeatedly narrowing down an interval that contains the root. We can use the bisection method using following methods:
Step 1: Start with two points, a and b, such that f(a) and f(b) have opposite signs. This guarantees that there is at least one root between a and b.
Step 2: Calculate the midpoint, c, of the interval [a,b] using c = (a + b)/2.
Step 3: Determine the sign of f(c). If f(c) is close enough to zero (within a predefined tolerance), c is the root. Otherwise, replace a or b with c depending on the sign of f(c), ensuring that the new interval still brackets the root.
Step 4: Repeat the process until the interval is sufficiently small or f(c) is close enough to zero.
Here, number of iterations needed to achieve an ε-approximate root using the bisection method is given by:
\bold{N \approx \log_2 \left( \frac{b - a}{\varepsilon} \right)}
False Position (Regula Falsi) Method
False Position method, also known as the Regula Falsi method, is a numerical technique used to find the roots of a function, where the function equals zero. It is similar to the bisection method but often converges faster. The False Position method combines the concepts of the bisection method and the secant method, making it both simple and efficient for solving equations.
Here’s a step-by-step explanation of how it works:
Step 1: Start with two points, a and b, such that f(a) and f(b) have opposite signs. This guarantees that there is at least one root between a and b.
Step 2: Calculate the midpoint, c, of the interval [a,b] using c = a - [f(a).(b - a)]/[f(b) - f(a)].
Step 3: Evaluate f(c). If f(c) is close enough to zero (within a predefined tolerance), then c is the root.
Step 4: Depending on the sign of f(c), update the interval:
- If f(a) and f(c) have opposite signs, set b = c.
- If f(b) and f(c) have opposite signs, set a = c.
Step 5: Repeat the process until the interval is sufficiently small or f(c) is close enough to zero.
Read more about Regula Falsi method.
Open Methods
Open methods are root-finding algorithms that don't necessarily require an interval containing the root. They start with one or more initial guesses and iteratively refine them until a root is found. These methods are generally faster but may not always converge.
In this section we will further learn about the classification of open method, that are:
- Newton- Raphson Method
- Secant Method
Newton-Raphson Method
Newton-Raphson method is an iterative algorithm that uses the derivative of the function to find the root. It’s faster than the bisection method but requires a good initial guess and the calculation of derivatives. Procedure is given as below:
Step 1: Start with an initial guess x0.
Step 2: Use the formula, x_{n+1} = x_n - \frac{f(x_n)}{f'(x_n)} to find the next approximation, where f'(xn) is the derivative of f(x) at xn.
Step 3: Repeat the iteration until the change between xn and xn+1 is smaller than a predefined tolerance.
Note: Newton-Raphson method converges quickly when the initial guess is close to the root, but it can fail if f′(x) is zero or if the function is not well-behaved near the root.
Secant Method
Secant method is similar to the Newton-Raphson method but does not require the calculation of derivatives. Instead, it uses a secant line to approximate the root. Procedure of secant method is given as:
Step 1: Start with two initial guesses x0 and x1.
Step 2: Use the formula x_{n+1} = x_n - f(x_n) \frac{x_n - x_{n-1}}{f(x_n) - f(x_{n-1})} to find the next approximation.
Step 3: Repeat the iteration until the change between xn and xn+1 is smaller than a predefined tolerance.
Secant method can be faster than the bisection method and does not require the derivative of the function, but it can be less reliable than the Newton-Raphson method, especially if the initial points are not well chosen.
Comparison of Root Finding Methods
The comparison between the root finding methods are being showed below, on the basis of advantages and disadvantages.
Method | Description | Advantage | Disadvantage |
---|
Bisection Method | It divides interval in half, and guarantees convergence | Simple and faster method | Slow convergence |
---|
False Position Method | It uses linear interpolation, faster than bisection | It maintains bracketing, faster than bisection | It may fail due to roundoff errors |
---|
Newton's Method | It uses function and derivative, fast convergence | It is a quadratic convergence, works in higher dimensions | It may not converge if initial guess is far |
---|
Secant Method | It is a derivative-free variant of Newton's, simpler | It doesn't require derivative, faster than bisection | Slower convergence (order ~1.6) |
---|
Comparison of Root Finding Methods with Example
Solving the equation f(x)= x3−4x−9= 0 using Bisection Method, Regula-Falsi Method, Newton-Raphson Method, and Secant Method with 10 iterations. The computed root approximations are displayed in the table.
Method | Root Approximation |
---|
Bisection Method | 2.7060546875 |
Regula-Falsi Method | 2.7065276119801087 |
Newton-Raphson Method | 2.7065279765747587 |
Secant Method | 2.7065278974619447 |
Comparison of Methods:
- Bisection Method: Converged slowly, reaching 2.706055 after 10 iterations.
- Regula-Falsi Method: Improved on Bisection, reaching 2.706528 faster.
- Newton-Raphson Method: Fastest convergence, achieving 2.706528.
- Secant Method: Similar to Newton-Raphson, reaching 2.706528.
Observations:
- Newton-Raphson and Secant Methods provided the fastest and most accurate results.
- Bisection was the slowest, but it ensures convergence.
- Regula-Falsi performed better than Bisection but was slower than the derivative-based methods.
This comparison highlights that if derivatives are available, Newton-Raphson is preferred. If derivatives are difficult to compute, Secant Method is a good alternative.
How to Choose a Root Finding Algorithm?
Choosing a root finding algorithm depends on several factors:
- Function Properties: Consider whether the function is continuous, differentiable, and how well-behaved it is.
- Initial Knowledge: Determine if you have an initial interval containing the root or just a rough estimate.
- Accuracy Requirements: Assess how accurate the root approximation needs to be.
- Computational Resources: Consider the computational complexity and resources available.
- Robustness: Evaluate how robust the algorithm is against different function behaviors and initial guesses.
- Speed: Balance between convergence speed and computational efficiency.
- Dimensionality: For higher-dimensional problems, choose algorithms that extend well to multiple dimensions.
Applications of Root Finding Algorithms
The various applications of root-finding algorithms are:
- Numerical Analysis: It is important in numerical analysis for solving nonlinear equations, which commonly arise in mathematical modeling and simulation.
- Optimization: Form an integral part of optimization algorithms for minimizing or maximizing functions by finding their critical points.
- Finance: It is used in financial modeling and risk management for pricing options, forecasting, and analyzing financial derivatives.
- Image Processing: It is used in image processing algorithms, such as edge detection and image segmentation, for solving nonlinear equations.
Read More,
Similar Reads
Maths Mathematics, often referred to as "math" for short. It is the study of numbers, quantities, shapes, structures, patterns, and relationships. It is a fundamental subject that explores the logical reasoning and systematic approach to solving problems. Mathematics is used extensively in various fields
5 min read
Basic Arithmetic
What are Numbers?Numbers are symbols we use to count, measure, and describe things. They are everywhere in our daily lives and help us understand and organize the world.Numbers are like tools that help us:Count how many things there are (e.g., 1 apple, 3 pencils).Measure things (e.g., 5 meters, 10 kilograms).Show or
15+ min read
Arithmetic OperationsArithmetic Operations are the basic mathematical operationsâAddition, Subtraction, Multiplication, and Divisionâused for calculations. These operations form the foundation of mathematics and are essential in daily life, such as sharing items, calculating bills, solving time and work problems, and in
9 min read
Fractions - Definition, Types and ExamplesFractions are numerical expressions used to represent parts of a whole or ratios between quantities. They consist of a numerator (the top number), indicating how many parts are considered, and a denominator (the bottom number), showing the total number of equal parts the whole is divided into. For E
7 min read
What are Decimals?Decimals are numbers that use a decimal point to separate the whole number part from the fractional part. This system helps represent values between whole numbers, making it easier to express and measure smaller quantities. Each digit after the decimal point represents a specific place value, like t
10 min read
ExponentsExponents are a way to show that a number (base) is multiplied by itself many times. It's written as a small number (called the exponent) to the top right of the base number.Think of exponents as a shortcut for repeated multiplication:23 means 2 x 2 x 2 = 8 52 means 5 x 5 = 25So instead of writing t
9 min read
PercentageIn mathematics, a percentage is a figure or ratio that signifies a fraction out of 100, i.e., A fraction whose denominator is 100 is called a Percent. In all the fractions where the denominator is 100, we can remove the denominator and put the % sign.For example, the fraction 23/100 can be written a
5 min read
Algebra
Variable in MathsA variable is like a placeholder or a box that can hold different values. In math, it's often represented by a letter, like x or y. The value of a variable can change depending on the situation. For example, if you have the equation y = 2x + 3, the value of y depends on the value of x. So, if you ch
5 min read
Polynomials| Degree | Types | Properties and ExamplesPolynomials are mathematical expressions made up of variables (often represented by letters like x, y, etc.), constants (like numbers), and exponents (which are non-negative integers). These expressions are combined using addition, subtraction, and multiplication operations.A polynomial can have one
9 min read
CoefficientA coefficient is a number that multiplies a variable in a mathematical expression. It tells you how much of that variable you have. For example, in the term 5x, the coefficient is 5 â it means 5 times the variable x.Coefficients can be positive, negative, or zero. Algebraic EquationA coefficient is
8 min read
Algebraic IdentitiesAlgebraic Identities are fundamental equations in algebra where the left-hand side of the equation is always equal to the right-hand side, regardless of the values of the variables involved. These identities play a crucial role in simplifying algebraic computations and are essential for solving vari
14 min read
Properties of Algebraic OperationsAlgebraic operations are mathematical processes that involve the manipulation of numbers, variables, and symbols to produce new results or expressions. The basic algebraic operations are:Addition ( + ): The process of combining two or more numbers to get a sum. For example, 3 + 5 = 8.Subtraction (â)
3 min read
Geometry
Lines and AnglesLines and Angles are the basic terms used in geometry. They provide a base for understanding all the concepts of geometry. We define a line as a 1-D figure that can be extended to infinity in opposite directions, whereas an angle is defined as the opening created by joining two or more lines. An ang
9 min read
Geometric Shapes in MathsGeometric shapes are mathematical figures that represent the forms of objects in the real world. These shapes have defined boundaries, angles, and surfaces, and are fundamental to understanding geometry. Geometric shapes can be categorized into two main types based on their dimensions:2D Shapes (Two
2 min read
Area and Perimeter of Shapes | Formula and ExamplesArea and Perimeter are the two fundamental properties related to 2-dimensional shapes. Defining the size of the shape and the length of its boundary. By learning about the areas of 2D shapes, we can easily determine the surface areas of 3D bodies and the perimeter helps us to calculate the length of
10 min read
Surface Areas and VolumesSurface Area and Volume are two fundamental properties of a three-dimensional (3D) shape that help us understand and measure the space they occupy and their outer surfaces.Knowing how to determine surface area and volumes can be incredibly practical and handy in cases where you want to calculate the
10 min read
Points, Lines and PlanesPoints, Lines, and Planes are basic terms used in Geometry that have a specific meaning and are used to define the basis of geometry. We define a point as a location in 3-D or 2-D space that is represented using coordinates. We define a line as a geometrical figure that is extended in both direction
14 min read
Coordinate Axes and Coordinate Planes in 3D spaceIn a plane, we know that we need two mutually perpendicular lines to locate the position of a point. These lines are called coordinate axes of the plane and the plane is usually called the Cartesian plane. But in real life, we do not have such a plane. In real life, we need some extra information su
6 min read
Trigonometry & Vector Algebra
Trigonometric RatiosThere are three sides of a triangle Hypotenuse, Adjacent, and Opposite. The ratios between these sides based on the angle between them is called Trigonometric Ratio. The six trigonometric ratios are: sine (sin), cosine (cos), tangent (tan), cotangent (cot), cosecant (cosec), and secant (sec).As give
4 min read
Trigonometric Equations | Definition, Examples & How to SolveTrigonometric equations are mathematical expressions that involve trigonometric functions (such as sine, cosine, tangent, etc.) and are set equal to a value. The goal is to find the values of the variable (usually an angle) that satisfy the equation.For example, a simple trigonometric equation might
9 min read
Trigonometric IdentitiesTrigonometric identities play an important role in simplifying expressions and solving equations involving trigonometric functions. These identities, which include relationships between angles and sides of triangles, are widely used in fields like geometry, engineering, and physics. Some important t
10 min read
Trigonometric FunctionsTrigonometric Functions, often simply called trig functions, are mathematical functions that relate the angles of a right triangle to the ratios of the lengths of its sides.Trigonometric functions are the basic functions used in trigonometry and they are used for solving various types of problems in
6 min read
Inverse Trigonometric Functions | Definition, Formula, Types and Examples Inverse trigonometric functions are the inverse functions of basic trigonometric functions. In mathematics, inverse trigonometric functions are also known as arcus functions or anti-trigonometric functions. The inverse trigonometric functions are the inverse functions of basic trigonometric function
11 min read
Inverse Trigonometric IdentitiesInverse trigonometric functions are also known as arcus functions or anti-trigonometric functions. These functions are the inverse functions of basic trigonometric functions, i.e., sine, cosine, tangent, cosecant, secant, and cotangent. It is used to find the angles with any trigonometric ratio. Inv
9 min read
Calculus
Introduction to Differential CalculusDifferential calculus is a branch of calculus that deals with the study of rates of change of functions and the behaviour of these functions in response to infinitesimal changes in their independent variables.Some of the prerequisites for Differential Calculus include:Independent and Dependent Varia
6 min read
Limits in CalculusIn mathematics, a limit is a fundamental concept that describes the behaviour of a function or sequence as its input approaches a particular value. Limits are used in calculus to define derivatives, continuity, and integrals, and they are defined as the approaching value of the function with the inp
12 min read
Continuity of FunctionsContinuity of functions is an important unit of Calculus as it forms the base and it helps us further to prove whether a function is differentiable or not. A continuous function is a function which when drawn on a paper does not have a break. The continuity can also be proved using the concept of li
13 min read
DifferentiationDifferentiation in mathematics refers to the process of finding the derivative of a function, which involves determining the rate of change of a function with respect to its variables.In simple terms, it is a way of finding how things change. Imagine you're driving a car and looking at how your spee
2 min read
Differentiability of a Function | Class 12 MathsContinuity or continuous which means, "a function is continuous at its domain if its graph is a curve without breaks or jumps". A function is continuous at a point in its domain if its graph does not have breaks or jumps in the immediate neighborhood of the point. Continuity at a Point: A function f
11 min read
IntegrationIntegration, in simple terms, is a way to add up small pieces to find the total of something, especially when those pieces are changing or not uniform.Imagine you have a car driving along a road, and its speed changes over time. At some moments, it's going faster; at other moments, it's slower. If y
3 min read
Probability and Statistics
Basic Concepts of ProbabilityProbability is defined as the likelihood of the occurrence of any event. It is expressed as a number between 0 and 1, where 0 is the probability of an impossible event and 1 is the probability of a sure event.Concepts of Probability are used in various real life scenarios : Stock Market : Investors
7 min read
Bayes' TheoremBayes' Theorem is a mathematical formula used to determine the conditional probability of an event based on prior knowledge and new evidence. It adjusts probabilities when new information comes in and helps make better decisions in uncertain situations.Bayes' Theorem helps us update probabilities ba
13 min read
Probability Distribution - Function, Formula, TableA probability distribution is a mathematical function or rule that describes how the probabilities of different outcomes are assigned to the possible values of a random variable. It provides a way of modeling the likelihood of each outcome in a random experiment.While a Frequency Distribution shows
13 min read
Descriptive StatisticStatistics is the foundation of data science. Descriptive statistics are simple tools that help us understand and summarize data. They show the basic features of a dataset, like the average, highest and lowest values and how spread out the numbers are. It's the first step in making sense of informat
5 min read
What is Inferential Statistics?Inferential statistics is an important tool that allows us to make predictions and conclusions about a population based on sample data. Unlike descriptive statistics, which only summarizes data, inferential statistics lets us test hypotheses, make estimates and measure the uncertainty about our pred
7 min read
Measures of Central Tendency in StatisticsCentral tendencies in statistics are numerical values that represent the middle or typical value of a dataset. Also known as averages, they provide a summary of the entire data, making it easier to understand the overall pattern or behavior. These values are useful because they capture the essence o
11 min read
Set TheorySet theory is a branch of mathematics that deals with collections of objects, called sets. A set is simply a collection of distinct elements, such as numbers, letters, or even everyday objects, that share a common property or rule.Example of SetsSome examples of sets include:A set of fruits: {apple,
3 min read
Practice