HOME

TheInfoList



OR:

In
mathematics Mathematics is a field of study that discovers and organizes methods, Mathematical theory, theories and theorems that are developed and Mathematical proof, proved for the needs of empirical sciences and mathematics itself. There are many ar ...
, a sequence of nested intervals can be intuitively understood as an ordered collection of intervals I_n on the
real number line A number line is a graphical representation of a straight line that serves as spatial representation of numbers, usually graduated like a ruler with a particular origin point representing the number zero and evenly spaced marks in either direc ...
with
natural numbers In mathematics, the natural numbers are the numbers 0, 1, 2, 3, and so on, possibly excluding 0. Some start counting with 0, defining the natural numbers as the non-negative integers , while others start with 1, defining them as the positiv ...
n=1,2,3,\dots as an index. In order for a sequence of intervals to be considered nested intervals, two conditions have to be met: # Every interval in the sequence is contained in the previous one (I_ is always a subset of I_n). # The length of the intervals get arbitrarily small (meaning the length falls below every possible threshold \varepsilon after a certain index N). In other words, the left bound of the interval I_n can only increase (a_\geq a_n), and the right bound can only decrease (b_\leq b_n). Historically - long before anyone defined nested intervals in a textbook - people implicitly constructed such nestings for concrete calculation purposes. For example, the ancient
Babylonians Babylonia (; , ) was an ancient Akkadian-speaking state and cultural area based in the city of Babylon in central-southern Mesopotamia (present-day Iraq and parts of Kuwait, Syria and Iran). It emerged as an Akkadian-populated but Amorite-ru ...
discovered a method for computing square roots of numbers. In contrast, the famed
Archimedes Archimedes of Syracuse ( ; ) was an Ancient Greece, Ancient Greek Greek mathematics, mathematician, physicist, engineer, astronomer, and Invention, inventor from the ancient city of Syracuse, Sicily, Syracuse in History of Greek and Hellenis ...
constructed sequences of polygons, that inscribed and circumscribed a unit
circle A circle is a shape consisting of all point (geometry), points in a plane (mathematics), plane that are at a given distance from a given point, the Centre (geometry), centre. The distance between any point of the circle and the centre is cal ...
, in order to get a lower and upper bound for the circles circumference - which is the circle number Pi (\pi). The central question to be posed is the nature of the
intersection In mathematics, the intersection of two or more objects is another object consisting of everything that is contained in all of the objects simultaneously. For example, in Euclidean geometry, when two lines in a plane are not parallel, their ...
over all the natural numbers, or, put differently, the set of numbers, that are found in every Interval I_n (thus, for all n\in\mathbb). In modern mathematics, nested intervals are used as a construction method for the real numbers (in order to complete the field of rational numbers).


Historic motivation

As stated in the introduction, historic users of mathematics discovered the nesting of intervals and closely related
algorithms In mathematics and computer science, an algorithm () is a finite sequence of mathematically rigorous instructions, typically used to solve a class of specific problems or to perform a computation. Algorithms are used as specifications for per ...
as methods for specific calculations. Some variations and modern interpretations of these ancient techniques will be introduced here:


Computation of square roots

When trying to find the square root of a number x>1 , one can be certain that 1\leq \sqrt \leq x , which gives the first interval I_1=
, x The comma is a punctuation mark that appears in several variants in different languages. Some typefaces render it as a small line, slightly curved or straight, but inclined from the vertical; others give it the appearance of a miniature fille ...
/math>, in which x has to be found. If one knows the next higher perfect square k^2 > x , one can get an even better candidate for the first interval: I_1=
, k The comma is a punctuation mark that appears in several variants in different languages. Some typefaces render it as a small line, slightly curved or straight, but inclined from the vertical; others give it the appearance of a miniature fille ...
/math>. The other intervals I_n= _n, b_n n\in\mathbb can now be defined recursively by looking at the sequence of midpoints m_n=\frac. Given the interval I_n is already known (starting at I_1), one can define : I_ := \left\{\begin{matrix} \left _n, b_n\right&& \text{if}\;\; m_n^2 \leq x \\ \left _n, m_n\right&& \text{if}\;\; m_n^2 > x \end{matrix}\right. To put this into words, one can compare the midpoint of I_{n} to \sqrt{x} in order to determine whether the midpoint is smaller or larger than \sqrt{x}. If the midpoint is smaller, one can set it as the lower bound of the next interval I_{n+1} , and if the midpoint is larger, one can set it as the upper bound of the next interval. This guarantees that \sqrt{x}\in I_{n+1} . With this construction the intervals are nested and their length , I_n, get halved in every step of the recursion. Therefore, it is possible to get lower and upper bounds for \sqrt{x} with arbitrarily good precision (given enough computational time). One can also compute \sqrt{y}, when 0. In this case 1/y>1, and the algorithm can be used by setting x:=1/y and calculating the reciprocal after the desired level of precision has been acquired.


Example

To demonstrate this algorithm, here is an example of how it can be used to find the value of \sqrt{19}. Note that since1^2<19<5^2, the first interval for the algorithm can be defined asI_1:= ,5/math>, since \sqrt{19} must certainly found within this interval. Thus, using this interval, one can continue to the next step of the algorithm by calculating the midpoint of the interval, determining whether the square of the midpoint is greater than or less than 19, and setting the boundaries of the next interval accordingly before repeating the process: : \begin{aligned} m_1&=\dfrac{1+5}{2}=3 &&\Rightarrow\; m_1^2=9 \leq 19 &&\Rightarrow\; I_2=
, 5 The comma is a punctuation mark that appears in several variants in different languages. Some typefaces render it as a small line, slightly curved or straight, but inclined from the vertical; others give it the appearance of a miniature fille ...
\ m_2&=\dfrac{3+5}{2}=4 &&\Rightarrow\; m_2^2=16 \leq 19 &&\Rightarrow\; I_3=
, 5 The comma is a punctuation mark that appears in several variants in different languages. Some typefaces render it as a small line, slightly curved or straight, but inclined from the vertical; others give it the appearance of a miniature fille ...
\ m_3&=\dfrac{4+5}{2}=4.5 &&\Rightarrow\; m_3^2=20.25 > 19 &&\Rightarrow\; I_4= , 4.5\ m_4&=\dfrac{4+4.5}{2}=4.25 &&\Rightarrow\; m_4^2=18.0625 \leq 19 &&\Rightarrow\; I_5= .25, 4.5\ m_5&=\dfrac{4.25+4.5}{2}=4.375 &&\Rightarrow\; m_5^2=19.140625 > 19 &&\Rightarrow\; I_5= .25, 4.375\ &\vdots & & \end{aligned} : Each time a new midpoint is calculated, the range of possible values for \sqrt{19} is able to be constricted so that the values that remain within the interval are closer and closer to the actual value of \sqrt{19}=4.35889894\dots. That is to say, each successive change in the bounds of the interval within which \sqrt{19} must lie allows the value of \sqrt{19} to be estimated with a greater precision, either by increasing the lower bounds of the interval or decreasing the upper bounds of the interval. : : This procedure can be repeated as many times as needed to attain the desired level of precision. Theoretically, by repeating the steps indefinitely, one can arrive at the true value of this square root.


Herons method

The
Babylonian method Square root algorithms compute the non-negative square root \sqrt of a positive real number S. Since all square roots of natural numbers, other than of perfect squares, are irrational, square roots can usually only be computed to some finite pre ...
uses an even more efficient algorithm that yields accurate approximations of \sqrt{x} for an x>0 even faster. The modern description using nested intervals is similar to the algorithm above, but instead of using a sequence of midpoints, one uses a sequence (c_n)_{n\in\mathbb{N given by : c_{n+1}:=\frac{1}{2}\cdot\left(c_n + \frac{x}{c_n}\right). This results in a sequence of intervals given by I_{n+1}:=\left frac{x}{c_n}, c_n\right/math> and I_1=
, k The comma is a punctuation mark that appears in several variants in different languages. Some typefaces render it as a small line, slightly curved or straight, but inclined from the vertical; others give it the appearance of a miniature fille ...
/math>, where k^2>x , will provide accurate upper and lower bounds for \sqrt{x} very fast. In practice, only c_n has to be considered, which converges to \sqrt{x} (as does of course the lower interval bound). This algorithm is a special case of
Newton's method In numerical analysis, the Newton–Raphson method, also known simply as Newton's method, named after Isaac Newton and Joseph Raphson, is a root-finding algorithm which produces successively better approximations to the roots (or zeroes) of a ...
.


Archimedes' circle measurement

As shown in the image, lower and upper bounds for the circumference of a circle can be obtained with inscribed and circumscribed regular polygons. When examining a circle with diameter 1, the circumference is (by definition of Pi) the circle number \pi. Around 250 BCE
Archimedes of Syracuse Archimedes of Syracuse ( ; ) was an Ancient Greek mathematician, physicist, engineer, astronomer, and inventor from the ancient city of Syracuse in Sicily. Although few details of his life are known, based on his surviving work, he is consi ...
started with regular hexagons, whose side lengths (and therefore circumference) can be directly calculated from the circle diameter. Furthermore, a way to compute the side length of a regular 2n-gon from the previous n-gon can be found, starting at the regular hexagon (6-gon). By successively doubling the number of edges until reaching 96-sided polygons, Archimedes reached an interval with \tfrac{223}{71}< \pi < \tfrac{22}{7} . The upper bound 22/7 \approx 3.143 is still often used as a rough, but pragmatic approximation of \pi. Around the year 1600 CE, Archimedes' method was still the gold standard for calculating Pi and was used by Dutch mathematician Ludolph van Ceulen, to compute more than thirty digits of \pi, which took him decades. Soon after, more powerful methods for the computation were found.


Other implementations

Early uses of sequences of nested intervals (or can be described as such with modern mathematics), can be found in the predecessors of
calculus Calculus is the mathematics, mathematical study of continuous change, in the same way that geometry is the study of shape, and algebra is the study of generalizations of arithmetic operations. Originally called infinitesimal calculus or "the ...
( differentiation and integration). In
computer science Computer science is the study of computation, information, and automation. Computer science spans Theoretical computer science, theoretical disciplines (such as algorithms, theory of computation, and information theory) to Applied science, ...
, sequences of nested intervals is used in algorithms for numerical computation. E.g. the
bisection method 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 and t ...
can be used for calculating the
roots A root is the part of a plant, generally underground, that anchors the plant body, and absorbs and stores water and nutrients. Root or roots may also refer to: Art, entertainment, and media * ''The Root'' (magazine), an online magazine focusin ...
of
continuous functions In mathematics, a continuous function is a function such that a small variation of the argument induces a small variation of the value of the function. This implies there are no abrupt changes in value, known as '' discontinuities''. More preci ...
. In contrast to mathematically infinite sequences, an applied computational algorithm terminates at some point, when the desired zero has been found or sufficiently well approximated.


The construction of the real numbers

In
mathematical analysis Analysis is the branch of mathematics dealing with continuous functions, limit (mathematics), limits, and related theories, such as Derivative, differentiation, Integral, integration, measure (mathematics), measure, infinite sequences, series ( ...
, nested intervals provide one method of axiomatically introducing the
real number In mathematics, a real number is a number that can be used to measure a continuous one- dimensional quantity such as a duration or temperature. Here, ''continuous'' means that pairs of values can have arbitrarily small differences. Every re ...
s as the completion of the
rational number In mathematics, a rational number is a number that can be expressed as the quotient or fraction of two integers, a numerator and a non-zero denominator . For example, is a rational number, as is every integer (for example, The set of all ...
s, being a necessity for discussing the concepts of continuity and
differentiability In mathematics, a differentiable function of one real variable is a function whose derivative exists at each point in its domain. In other words, the graph of a differentiable function has a non- vertical tangent line at each interior point in ...
. Historically,
Isaac Newton Sir Isaac Newton () was an English polymath active as a mathematician, physicist, astronomer, alchemist, theologian, and author. Newton was a key figure in the Scientific Revolution and the Age of Enlightenment, Enlightenment that followed ...
's and
Gottfried Wilhelm Leibniz Gottfried Wilhelm Leibniz (or Leibnitz; – 14 November 1716) was a German polymath active as a mathematician, philosopher, scientist and diplomat who is credited, alongside Sir Isaac Newton, with the creation of calculus in addition to ...
's discovery of differential and integral calculus from the late 1600s has posed a huge challenge for mathematicians trying to prove their methods rigorously; despite their success in
physics Physics is the scientific study of matter, its Elementary particle, fundamental constituents, its motion and behavior through space and time, and the related entities of energy and force. "Physical science is that department of knowledge whi ...
,
engineering Engineering is the practice of using natural science, mathematics, and the engineering design process to Problem solving#Engineering, solve problems within technology, increase efficiency and productivity, and improve Systems engineering, s ...
and other sciences. The axiomatic description of nested intervals (or an equivalent axiom) has become an important foundation for the modern understanding of calculus. In the context of this article, \mathbb{R} in conjunction with + and \cdot is an Archimedean
ordered field In mathematics, an ordered field is a field together with a total ordering of its elements that is compatible with the field operations. Basic examples of ordered fields are the rational numbers and the real numbers, both with their standard ord ...
, meaning the axioms of order and the
Archimedean property In abstract algebra and mathematical analysis, analysis, the Archimedean property, named after the ancient Greek mathematician Archimedes of Syracuse, Italy, Syracuse, is a property held by some algebraic structures, such as ordered or normed g ...
hold.


Definition

Source: Let (I_n)_{n\in\mathbb{N be a sequence of closed intervals of the type I_n= _n, b_n/math>, where , I_n, :=b_n - a_n denotes the length of such an interval. One can call (I_n)_{n\in\mathbb{N a sequence of nested intervals, if # \quad \forall n \in \mathbb{N}: \;\; I_{n+1} \subseteq I_n # \quad \forall \varepsilon > 0 \; \exists N\in\mathbb{N}: \;\; , I_N, < \varepsilon . Put into words, property 1 means, that the intervals are nested according to their index. The second property formalizes the notion, that interval sizes get arbitrarily small; meaning, that for an arbitrary constant \varepsilon > 0 one can always find an interval (with index N) with a length strictly smaller than that number \varepsilon. It is also worth noting that property 1 immediately implies that every interval with an index n \geq N must also have a length , I_n, < \varepsilon.


Remark

Note that some authors refer to such interval-sequences, satisfying both properties above, as ''shrinking nested intervals''. In this case a sequence of nested intervals refers to a sequence that only satisfies property 1.


Axiom of completeness

If (I_n)_{n\in\mathbb{N is a sequence of nested intervals, there always exists a real number, that is contained in every interval I_n. In formal notation this axiom guarantees, that :\exists x\in\mathbb{R}: \;x\in\bigcap_{n\in\mathbb{N I_n.


Theorem

The intersection of each sequence (I_n)_{n\in\mathbb{N of nested intervals contains exactly one real number x. ''Proof:'' This statement can easily be verified by contradiction. Assume that there exist two different numbers x,y\in\cap_{n\in\mathbb{N I_n. From x\neq y it follows that they differ by , x-y, >0. Since both numbers have to be contained in every interval, it follows that , I_n, \geq , x-y, for all n\in\mathbb{N}. This contradicts property 2 from the definition of nested intervals; therefore, the intersection can contain at most one number x. The completeness axiom guarantees that such a real number x exists. \; \square


Notes

* This axiom is fundamental in the sense that a sequence of nested intervals does not necessarily contain a rational number - meaning that \cap_{n\in\mathbb{NI_n could yield \emptyset, if only considering the rationals. * The axiom is equivalent to the existence of the infimum and supremum (proof below), the convergence of Cauchy sequences and the
Bolzano–Weierstrass theorem In mathematics, specifically in real analysis, the Bolzano–Weierstrass theorem, named after Bernard Bolzano and Karl Weierstrass, is a fundamental result about convergence in a finite-dimensional Euclidean space \R^n. The theorem states that ea ...
. This means that one of the four has to be introduced axiomatically, while the other three can be successively proven.


Direct consequences of the axiom


Existence of roots

By generalizing the algorithm shown above for square roots, one can prove that in the real numbers, the equation x=y^j,\; j\in\mathbb{N}, x>0 can always be solved for y=\sqrt x}=x^{1/j}. This means there exists a unique real number y>0 , such that x=y^k. Comparing to the section above, one achieves a sequence of nested intervals for the k-th root of x, namely y, by looking at whether the midpoint m_n of the n-th interval is lower or equal or greater than m_n^k.


Existence of infimum and supremum in bounded sets


Definition

If A\subset \mathbb{R} has an upper bound, i.e. there exists a number b, such that x\leq b for all x\in A, one can call the number s=\sup(A) the supremum of A, if # the number s is an upper bound of A, meaning \forall x \in A: \; x\leq s # s is the least upper bound of A, meaning \forall \sigma < s : \; \exists x\in A: \; x >\sigma Only one such number s can exist. Analogously one can define the infimum (\inf(B)) of a set B\subset \mathbb{R} , that is bounded from below, as the greatest lower bound of that set.


Theorem

Each set A\subset \mathbb{R} has a supremum (infimum), if it is bounded from above (below). ''Proof:''
Without loss of generality ''Without loss of generality'' (often abbreviated to WOLOG, WLOG or w.l.o.g.; less commonly stated as ''without any loss of generality'' or ''with no loss of generality'') is a frequently used expression in mathematics. The term is used to indicat ...
one can look at a set A\subset \mathbb{R} that has an upper bound. One can now construct a sequence (I_n)_{n\in\mathbb{N of nested intervals I_n= _n, b_n/math>, that has the following two properties: # b_n is an upper bound of A for all n\in\mathbb{N} # a_n is never an upper bound of A for any n\in\mathbb{N}. The construction follows a recursion by starting with any number a_1, that is not an upper bound (e.g. a_1=c - 1, where c\in A and an arbitrary upper bound b_1 of A). Given I_n= _n, b_n/math> for some n\in\mathbb{N} one can compute the midpoint m_n:= \frac{a_n+b_n}{2} and define :I_{n+1} := \left\{\begin{matrix} \left _n, m_n\right&& \text{if}\; m_n \;\text{is an upper bound of}\; A \\ \left _n, b_n\right&& \text{if}\; m_n \;\text{is not an upper bound} \end{matrix}\right. Note that this interval sequence is well defined and obviously a sequence of nested intervals by construction. Now let s be the number in every interval (whose existence is guaranteed by the
axiom An axiom, postulate, or assumption is a statement that is taken to be true, to serve as a premise or starting point for further reasoning and arguments. The word comes from the Ancient Greek word (), meaning 'that which is thought worthy or ...
). s is an upper bound of A, otherwise there exists a number x\in A, such that x>s. Furthermore, this would imply the existence of an interval I_m= _m, b_m/math> with b_m - a_m < x-s, from which b_m - s < x-s follows, due to s also being an element of I_m. But this is a contradiction to property 1 of the supremum (meaning b_m for all m\in\mathbb{N}). Therefore s is in fact an upper bound of A. Assume that there exists a lower upper bound \sigma < s of A. Since (I_n)_{n\in\mathbb{N is a sequence of nested intervals, the interval lengths get arbitrarily small; in particular, there exists an interval with a length smaller than s-\sigma. But from s\in I_n one gets s-a_n and therefore a_n>\sigma. Following the rules of this construction, a_n would have to be an upper bound of A, contradicting property 2 of all sequences of nested intervals. In two steps, it has been shown that s is an upper bound of A and that a lower upper bound cannot exist. Therefore s is the supremum of A by definition.


Remark

As was seen, the existence of suprema and infima of bounded sets is a consequence of the completeness of \mathbb{R}. In effect the two are actually equivalent, meaning that either of the two can be introduced axiomatically. ''Proof:'' Let (I_n)_{n\in\mathbb{N with I_n= _n, b_n/math> be a sequence of nested intervals. Then the set A:=\{a_1, a_2,\dots\} is bounded from above, where every b_n is an upper bound. This implies, that the least upper bound s=\sup(A) fulfills a_n\leq s\leq b_n for all n\in\mathbb{N}. Therefore s\in I_n for all n\in\mathbb{N}, respectively s\in\cap_{n\in\mathbb{N I_n.


Further consequences

After formally defining the convergence of sequences and accumulation points of sequences, one can also prove the
Bolzano–Weierstrass theorem In mathematics, specifically in real analysis, the Bolzano–Weierstrass theorem, named after Bernard Bolzano and Karl Weierstrass, is a fundamental result about convergence in a finite-dimensional Euclidean space \R^n. The theorem states that ea ...
using nested intervals. In a follow-up, the fact, that Cauchy sequences are convergent (and that all convergent sequences are Cauchy sequences) can be proven. This in turn allows for a proof of the completeness property above, showing their equivalence.


Further discussion of related aspects

Without any specifying what is meant by interval, all that can be said about the intersection \cap_{n\in\mathbb{N I_n over all the naturals (i.e. the set of all points common to each interval) is that it is either the
empty set In mathematics, the empty set or void set is the unique Set (mathematics), set having no Element (mathematics), elements; its size or cardinality (count of elements in a set) is 0, zero. Some axiomatic set theories ensure that the empty set exi ...
\emptyset, a point on the number line (called a singleton \{x\}), or some interval. The possibility of an empty intersection can be illustrated by looking at a sequence of open intervals I_n=\left(0, \frac{1}{n}\right) = \left\{x\in\mathbb{R}:0. In this case, the empty set \emptyset results from the intersection \cap_{n\in\mathbb{N I_n. This result comes from the fact that, for any number x>0 there exists some value of n\in\mathbb{N} (namely any n>1/x), such that 1/n. This is given by the
Archimedean property In abstract algebra and mathematical analysis, analysis, the Archimedean property, named after the ancient Greek mathematician Archimedes of Syracuse, Italy, Syracuse, is a property held by some algebraic structures, such as ordered or normed g ...
of the real numbers. Therefore, no matter how small x > 0 , one can always find intervals I_n in the sequence, such that x\notin I_n, implying that the intersection has to be empty. The situation is different for
closed interval In mathematics, a real interval is the set of all real numbers lying between two fixed endpoints with no "gaps". Each endpoint is either a real number or positive or negative infinity, indicating the interval extends without a bound. A real in ...
s. If one changes the situation above by looking at closed intervals of the type I_n=\left , \frac{1}{n}\right= \left\{x\in\mathbb{R}:0 \leq x \leq \frac{1}{n}\right\}, one can see this very clearly. Now for each x>0 one still can always find intervals not containing said x, but for x=0, the property 0\leq x \leq 1/n holds true for any n\in\mathbb{N}. One can conclude that, in this case, \cap_{n\in\mathbb{N I_n = \{0\}. One can also consider the complement of each interval, written as (-\infty,a_n) \cup (b_n, \infty) - which, in our last example, is (-\infty,0) \cup (1/n, \infty). By
De Morgan's laws In propositional calculus, propositional logic and Boolean algebra, De Morgan's laws, also known as De Morgan's theorem, are a pair of transformation rules that are both Validity (logic), valid rule of inference, rules of inference. They are nam ...
, the complement of the intersection is a union of two disjoint open sets. By the
connectedness In mathematics, connectedness is used to refer to various properties meaning, in some sense, "all one piece". When a mathematical object has such a property, we say it is connected; otherwise it is disconnected. When a disconnected object can be ...
of the
real line A number line is a graphical representation of a straight line that serves as spatial representation of numbers, usually graduated like a ruler with a particular origin (geometry), origin point representing the number zero and evenly spaced mark ...
there must be something between them. This shows that the intersection of (even an
uncountable In mathematics, an uncountable set, informally, is an infinite set that contains too many elements to be countable. The uncountability of a set is closely related to its cardinal number: a set is uncountable if its cardinal number is larger tha ...
number of) nested, closed, and bounded intervals is nonempty.


Higher dimensions

In two dimensions there is a similar result: nested
closed disk In geometry, a disk ( also spelled disc) is the region in a plane bounded by a circle. A disk is said to be ''closed'' if it contains the circle that constitutes its boundary, and ''open'' if it does not. For a radius r, an open disk is usua ...
s in the plane must have a common intersection. This result was shown by
Hermann Weyl Hermann Klaus Hugo Weyl (; ; 9 November 1885 – 8 December 1955) was a German mathematician, theoretical physicist, logician and philosopher. Although much of his working life was spent in Zürich, Switzerland, and then Princeton, New Jersey, ...
to classify the singular behaviour of certain differential equations.


See also

*
Bisection In geometry, bisection is the division of something into two equal or congruent parts (having the same shape and size). Usually it involves a bisecting line, also called a ''bisector''. The most often considered types of bisectors are the ''s ...
* Cantor's intersection theorem


References

*. *. *. * {{DEFAULTSORT:Nested Intervals Sets of real numbers Theorems in real analysis