Skip to content
EntityQ866300· pop 37· linked from 65 articles

bisection method

Sign in to save

Also known as interval halving method, dichotomy method, binary search method

The method of finding a root in mathematics, based on repeated division of a segment in half and the subsequent selection of a subinterval in which the root is thought to be located.

Wikidata facts

Image
Bisection method.svg
Sources (2)

via Wikidata · CC0

~9 min read

Article

A few steps of the bisection method applied over the starting range [a1;b1]. The bigger red dot is the root of the function.

In mathematics, the bisection method is a root-finding method that applies to any continuous function for which one knows two values with opposite signs. The method consists of repeatedly bisecting the interval defined by these values, then selecting the subinterval in which the function changes sign, which therefore must contain a root. It is a very simple and robust method, but it is also relatively slow. Because of this, it is often used to obtain a rough approximation to a solution which is then used as a starting point for more rapidly converging methods. The method is also called the interval halving method, the binary search method, or the dichotomy method.

Connections

Categories