Fact-checked by Grok 2 weeks ago

Computable number

A computable number is a that can be approximated to any desired degree of accuracy by a finite , such as a , which generates its digits in a fixed base (typically or ) through a step-by-step procedure. This concept was formally introduced by in his 1936 paper "On Computable Numbers, with an Application to the ," where he defined such numbers as those whose expansions are calculable by finite means, laying foundational groundwork for and the study of algorithmic processes. The set of computable numbers, often denoted as C, is countably infinite, meaning it can be put into a one-to-one correspondence with the natural numbers via techniques like of Turing machines. In contrast, the set of all real numbers \mathbb{R} is uncountable, as established by , which implies that the computable numbers form a "small" subset, and the vast majority of real numbers—known as non-computable or uncomputable numbers—are inherently unpredictable by any and cannot be effectively distinguished from . This countability result highlights the limitations of computation in describing the of real numbers and has profound implications for fields like and the . Examples of computable numbers include all rational numbers, since their decimal expansions terminate or repeat and can be generated precisely; algebraic irrationals, such as \sqrt{2}, via algorithms for extraction; and certain transcendentals like \pi and e, for which series expansions (e.g., Leibniz formula for \pi) provide effective digit-computation methods. The class of computable numbers is closed under basic arithmetic operations—, , , and (provided the is non-zero)—as well as under taking square roots and limits of computable sequences, allowing the construction of more complex computable reals from simpler ones. However, it is not closed under arbitrary limits.

Definitions

Informal definition

A computable number is a for which there exists a that, on input a positive n, outputs a r such that | \xi - r | < 2^{-n}. This allows the number to be approximated algorithmically to arbitrary precision in finite time. All s are computable, as their decimal expansions are either finite or eventually periodic and can be generated by simple algorithms; for example, the rational $1/3 = 0.333\ldots can be computed by repeatedly outputting the digit 3. Many irrational numbers are also computable, such as \pi and e, which can be approximated using their known infinite series expansions, like the Leibniz formula for \pi or the Taylor series for e. These examples illustrate how algorithmic procedures enable precise computations even for non-terminating decimals. In contrast, not all real numbers are computable; since the set of computable numbers is countable while the real numbers form an uncountable set, the vast majority of real numbers lack any such approximating algorithm. The concept of computable numbers was introduced by in 1936 as part of his work on the , aiming to characterize what can be effectively calculated by mechanical means.

Formal definition

A real number x is computable if there exists a Turing machine M that, on input a positive integer n (encoded in binary), outputs a rational number q_n = p/q in lowest terms such that |x - q_n| < 2^{-n}. This ensures that the sequence of rationals (q_n)_{n \in \mathbb{N}} converges effectively to x, providing approximations of arbitrarily high precision in finite time. The Turing machine M is required to halt on every input n, producing the output q_n as a pair of integers p and q > 0 representing the rational, with the denominator q ensuring the fraction is in reduced form. This definition aligns with 's foundational work, where computable numbers are those whose digits can be generated algorithmically, equivalently formalized through such effective approximations. This formulation extends naturally to computable reals in bounded , such as [0,1], by adjusting the approximation bound accordingly (e.g., using expansions or interval representations within the interval). Equivalently, x is computable if there is a from the natural numbers to the rationals that yields a rapidly converging to x, where the modulus of convergence is computable.

Equivalent definitions

A x is computable there exists a that, on input n \in \mathbb{N}, outputs a q_n such that |x - q_n| < 2^{-n} for all n. This formulation, using a computable sequence of rationals converging doubly (with both the sequence values and the convergence rate being computable), is equivalent to the standard definition via digit expansions. To see the equivalence, note that from a machine computing the binary digits of x, one can construct q_n as the partial sum of the first n digits, ensuring the error bound; conversely, given such approximations, the nth digit can be extracted by comparing q_n and q_{n+1} adjusted for possible carries, using a finite search over finitely many possibilities. More generally, x is computable if it is the limit of a Cauchy sequence of rationals (q_s)_{s \in \mathbb{N}} where the sequence is computable and there exists a computable modulus of convergence \mu: \mathbb{N} \to \mathbb{N} such that for all k \in \mathbb{N} and m, n \geq \mu(k), |q_m - q_n| < 2^{-k}. This allows for variable-speed convergence while maintaining computability. The equivalence to the rapid-convergence case follows by subsampling: define a new sequence r_k = q_{\mu(k)}, which inherits computability from \mu and (q_s), and satisfies |x - r_k| < 2^{-k} since the tail after \mu(k) converges within that bound; the reverse direction uses the fixed modulus directly as a computable one. Computable numbers can also be characterized using oracle Turing machines, where x is computable if an oracle Turing machine with empty oracle \emptyset computes approximations to x within any desired precision. This relativizes the standard Turing machine model but collapses to it for the empty oracle, yielding immediate equivalence via the Church-Turing thesis equating oracle-free oracle machines with ordinary ones. In the context of hyperarithmetical sets, a real x is computable if its binary expansion (or Dedekind cut) is a recursive set, which is the \Delta^0_1 base case of the hyperarithmetical hierarchy (iterated Turing jumps along computable ordinals). Equivalence holds because every recursive set is hyperarithmetical (at level 0), and conversely, non-recursive hyperarithmetical sets define non-computable reals; a sketch involves showing that the index of the Turing machine computing the expansion is arithmetical, hence hyperarithmetical, but the expansion itself remains recursive for computable x.

Properties

Algebraic structure

The set of computable numbers forms a subfield of the real numbers \mathbb{R}, closed under addition, subtraction, multiplication, and division by non-zero elements. This structure arises because the basic arithmetic operations can be effectively computed using Turing machines, composing the machines that compute the input numbers to produce one for the output. Specifically, if x and y are computable reals, then so are -x, x + y, x \cdot y, and x / y provided y \neq 0. To illustrate closure under addition, suppose x and y are computable, with Cauchy sequences of rational approximations \{q_n\} and \{r_n\} such that |q_n - x| < 2^{-n} and |r_n - y| < 2^{-n} for all n. A Turing machine can dovetail the computations of these approximations to produce sequences s_n = q_n + r_n, ensuring |(q_n + r_n) - (x + y)| < 2^{-n+1}, thus x + y is computable by adjusting for the doubled error bound. Subtraction follows similarly, as -y is computable given that -1 is computable (its decimal expansion is trivial to generate). Multiplication proceeds analogously: the machine computes partial products and sums while bounding errors, yielding x \cdot y computably. For non-zero division, the reciprocal $1/y must first be computed, which is possible via an iterative algorithm equivalent to . Starting from an initial rational approximation z_0 to y with |z_0 - y| < |y|/2 (ensuring z_0 \neq 0), the iteration z_{k+1} = z_k (2 - y z_k) converges quadratically to $1/y, and since each step involves only computable multiplication and addition (with y fixed), a can generate a Cauchy sequence for $1/y by running sufficient iterations to control the error. Then, x / y = x \cdot (1/y) is computable by the multiplication procedure. The constants 0 and 1 are trivially computable, as their decimal expansions are finite and repetitive. The computable numbers are dense in \mathbb{R}, meaning that between any two distinct reals there exists a computable number. This follows because the rational numbers \mathbb{Q} are computable (each has a terminating or repeating decimal expansion generatable by a finite procedure) and \mathbb{Q} is dense in \mathbb{R}, so the larger set of computable numbers inherits this density property.

Non-computability of ordering

Although the set of computable numbers is closed under the field operations of addition, multiplication, and the like, the natural ordering relation on computable numbers is not computable. Specifically, there exists no Turing machine that, given the indices (or descriptions) of two arbitrary computable real numbers x and y, can decide whether x < y, x = y, or x > y. This undecidability follows from a to the , which is known to be undecidable. To see this, suppose for contradiction that such a deciding Turing machine D exists. For each index e \in \mathbb{N}, construct a computable real number x_e via a computable of rationals whose limit is 0 if and only if the e-th \phi_e does not halt on input e. The construction proceeds by simulating the computation of \phi_e(e) in stages: to compute the s-th approximation q_s, simulate the computation for sufficiently many steps (e.g., s + c for a constant c ensuring error control); if it has halted by then at step k, set q_s = 2^{-k}; otherwise, set q_s = 0. This ensures the limit is $2^{-k} > 0 if it halts at finite k, and 0 if it never halts. Since the sequence is computable regardless of whether halting occurs, x_e is always computable. However, applying D to decide if x_e = 0 would determine whether \phi_e(e) does not halt (i.e., loops if =0, halts if \neq 0), solving the and yielding a . Thus, no such D can exist. This result is implicit in the foundational work on computable numbers and has been recognized as in computable . While the full trichotomy of the ordering is undecidable, partial aspects are semi-decidable. For a fixed computable real x, the predicate "y > x" (where y is computable) is semi-decidable: if y > x, an algorithm can compute successive rational approximations to both x and y until the lower bound for y exceeds the upper bound for x by more than the current precision error, confirming the inequality; if y \leq x, the process may loop indefinitely. Similarly, "y < x" is semi-decidable, and "y \neq x" is semi-decidable by checking for separation in either direction. However, confirming equality or the full order requires deciding cases that reduce to the halting problem. This non-computability of ordering has significant implications for algorithmic tasks involving computable reals. For instance, there is no general Turing machine that can sort a finite list of distinct computable reals given their computable descriptions (e.g., Turing machine indices), as sorting requires pairwise comparisons that cannot be reliably decided. Approximate methods, such as interval arithmetic or effective enumerations with error bounds, can achieve near-sorting for practical precision, but exact ordering remains algorithmically impossible without additional assumptions like oracles for the halting set.

Computability limitations

The set of computable numbers is countable. Since there are countably infinitely many Turing machines and each such machine computes at most one real number, the computable numbers form a countable union of singletons, hence a countable set. This stands in stark contrast to the uncountability of the real numbers as a whole. Although countable, the set of computable numbers is not computably enumerable. No single Turing machine can produce an effective listing of all computable reals without omissions or duplications indefinitely. Were such an enumeration possible, one could solve the halting problem by simulating all machines in the list in parallel and checking whether the output of a given machine on a given input matches any enumerated computable real, leading to a contradiction. This limitation arises from diagonalization arguments akin to those establishing the undecidability of the halting problem. The computably enumerable reals, also known as left-c.e. reals, properly contain the . A real is left-c.e. if it is the limit of an increasing, computable sequence of rationals approaching from below. Computable reals are both left-c.e. and right-c.e. (approximable similarly from above), but the converse fails. For instance, Chaitin's constant Ω, defined as the halting probability of a universal prefix-free , is left-c.e. because its partial sums correspond to the measures of halting programs, yet it is not computable due to its algorithmic randomness. There is no effective, uniform enumeration of the computable reals even when allowing approximations by computable rationals. Specifically, no Turing machine can output a sequence of rational intervals or approximations that uniformly covers all computable reals without missing some, as this would again imply a computable enumeration of the underlying Turing machines defining them.

Other properties

In effective descriptive set theory, computable numbers coincide with the computably presentable real numbers, where a real is presentable via an effective enumeration of basic open sets covering its neighborhood in the Polish space of reals. The set of computable numbers has Lebesgue measure zero on the real line, as it forms a countable union of singletons, each of measure zero, and the Lebesgue measure is countably additive. No computable number can be algorithmically random in the Martin-Löf sense, since Martin-Löf randomness demands that the initial segments of its binary expansion are incompressible by any Turing machine, whereas a computable real admits an effective, recursive approximation that compresses its description arbitrarily well. Any function that maps computable reals to computable reals and is itself computable—in the sense of Type-2 Turing computability on representations of reals—is necessarily continuous at every point; this result serves as a computable analog of the classical Weierstrass approximation theorem for continuous functions. Primitive recursive reals constitute a strict subclass of computable reals, obtained by restricting the approximating sequences of rationals to those generated by primitive recursive functions rather than general recursive ones, thereby excluding certain computable reals that require unbounded minimization in their computation.

Non-computable numbers

Examples of non-computable numbers

One prominent example of a non-computable real number is Chaitin's constant, denoted \Omega, which represents the halting probability of a universal prefix-free Turing machine. It is defined as \Omega = \sum_{\substack{p \\ \text{halts}}} 2^{-|p|}, where the sum ranges over all halting programs p and |p| denotes the length of p in bits. This constant is non-computable because its binary expansion encodes solutions to the halting problem: knowing sufficiently many initial digits of \Omega would allow enumeration of halting programs up to a certain length, thereby deciding the halting problem for programs of that length, which is impossible. Another classic construction is a real number \alpha whose binary digits directly encode the halting set: the nth binary digit of \alpha is 1 if the nth Turing machine halts on empty input and 0 otherwise. This \alpha is non-computable because a Turing machine that could compute its digits to arbitrary precision would solve the halting problem by checking the relevant digit. A related example arises from the busy beaver function BB(n), which gives the maximum number of steps taken by any halting n-state Turing machine; the real \sum_{n=1}^\infty BB(n) / 2^n is non-computable, as computing its partial sums to high precision would require resolving undecidable questions about BB(n) for large n. A historical example is the limit of a Specker sequence, introduced by Ernst Specker in 1949. This is a computable sequence (s_k) of rational numbers that is monotonically increasing and bounded above by 1, yet its supremum \sup_k s_k is a non-computable real. The sequence is constructed such that s_k approximates the supremum from below using Gödel numbers of proofs in arithmetic, ensuring that no Turing machine can uniformly approximate the limit to all desired precisions without solving undecidable propositions. The non-computability of these examples is often established via diagonalization arguments adapted from Turing's analysis of computable numbers. Suppose there existed a Turing machine that approximates such a number \beta (e.g., \Omega or \alpha) to within $2^{-n} error for input n; then, by diagonalizing against the enumeration of all Turing machines, one could construct a program that contradicts the halting problem or exceeds the busy beaver bounds, leading to a contradiction. This shows that no single machine can provide approximations to arbitrary precision for these reals.

Implications for real numbers

The set of computable numbers is countable, as it can be enumerated by the finite set of Turing machines, whereas the real numbers form an uncountable set of cardinality $2^{\aleph_0}. Consequently, the computable numbers constitute a meager subset of the reals, with Lebesgue measure zero, meaning that almost all real numbers lack any algorithmic description and are inherently non-computable. This scarcity of computable reals profoundly impacts classical analysis, where properties like completeness hold for the full real line but fail in effective, computable settings. For instance, the Bolzano-Weierstrass theorem guarantees a convergent subsequence for any bounded sequence of reals, but no effective version exists for computable reals; Specker sequences provide counterexamples, consisting of computable, increasing, bounded sequences of rationals whose supremum is non-computable. Such limitations extend to other foundational results, underscoring that computable analysis cannot replicate the full deductive power of classical real analysis without additional non-effective principles. In reverse mathematics, the intermediate value theorem, which asserts that a continuous function on a closed interval attains all values between its endpoints, is provable in RCA₀, the base system corresponding to computable mathematics. However, in computable analysis, realizing the theorem effectively—such as computing a point where the function attains an intermediate value—is not uniformly computable relative to computable inputs and outputs. Philosophically, the prevalence of non-computable reals illustrates the intrinsic limits of formal, mechanized mathematics, paralleling by revealing that no algorithmic system can capture all truths about the real numbers. This underscores the tension between constructive computability and the abstract completeness of classical mathematics, challenging notions of total formalizability in mathematical foundations.

Topological and representational aspects

Digit strings in Cantor and Baire spaces

Computable real numbers can be represented topologically through infinite digit sequences in classical spaces such as the Cantor space and the Baire space, providing a framework for studying their computability in terms of effective topology. The Cantor space, denoted $2^\mathbb{N}, consists of all infinite sequences of 0s and 1s, forming a compact metric space that serves as a foundational structure in computable analysis. It is equipped with the metric d(x, y) = 2^{-\min\{k : x_k \neq y_k\}} for distinct sequences x, y \in 2^\mathbb{N}, where the minimum is taken over the first position of disagreement; this metric induces the product topology, making the space totally disconnected and complete. In this representation, computable real numbers in the unit interval [0,1] correspond to computable infinite binary sequences, meaning there exists a Turing machine that, on input n, outputs the n-th bit of the sequence defining the binary expansion of the real. Such computable points in the Cantor space are precisely those whose coordinates form a computable function from \mathbb{N} to \{0,1\}. The Baire space, denoted \mathbb{N}^\mathbb{N}, comprises all infinite sequences of natural numbers and is a Polish space—separable, completely metrizable, and without isolated points—widely used for representing sequences in effective descriptive set theory. Its standard metric is d(x, y) = 2^{-\min\{k : x_k \neq y_k\}} for x \neq y, analogous to the metric but accommodating the infinite alphabet \mathbb{N}; this ensures completeness and Polish properties essential for computability notions. Real numbers are encoded in the Baire space via computable sequences arising from continued fraction expansions, where an irrational real in (0,1) maps bijectively to a sequence in \mathbb{N}^\mathbb{N} (excluding finite terminating expansions), and the encoding is computable if the partial quotients form a computable function from \mathbb{N} to \mathbb{N}. Similarly, decimal expansions provide an encoding into sequences over a finite alphabet like \{0, \dots, 9\}^\mathbb{N}, which embeds into the Baire space, with computability requiring the digit function to be computable. A point in the Baire space is computable if its coordinates are given by a computable function \mathbb{N} \to \mathbb{N}, aligning the topological structure with recursive function theory.

Encoding computable reals

One common method to encode computable real numbers involves their binary or decimal expansions. A real number x is computable if and only if there exists a Turing machine that, on input n, outputs the first n digits of a binary (or decimal) expansion of x. This expansion is an infinite sequence of digits d_1 d_2 d_3 \dots, where x = \sum_{i=1}^\infty d_i / b^i for base b = 2 or $10, and the sequence (d_i) is itself computable. However, expansions are not always unique; for instance, terminating decimals like $1 = 1.000\dots = 0.999\dots admit two representations. To ensure computability, one must select a canonical expansion, such as avoiding infinite sequences of 9s (or 1s in binary), which can be effectively decided by a Turing machine. Another representation uses continued fractions, where a real x > 0 is expressed as x = [a_0; a_1, a_2, \dots] = a_0 + \cfrac{1}{a_1 + \cfrac{1}{a_2 + \cfrac{1}{\ddots}}}, with partial quotients a_i being positive integers (a_0 \geq 0). A real x is computable if and only if the sequence of partial quotients (a_i)_{i=0}^\infty is a computable sequence of natural numbers, meaning a Turing machine can produce a_0, \dots, a_n on input n. This representation is unique for irrational numbers and provides rapid convergence via convergents p_n / q_n, where |x - p_n / q_n| < 1 / (q_n q_{n+1}). Unlike decimal expansions, continued fractions avoid non-uniqueness issues but may require handling unbounded partial quotients for computability. Computable reals can also be encoded by "names," which are indices of that generate Cauchy sequences of approximating the real. Specifically, a real x is computable if there exists a Turing machine index e such that, for input n, the machine with index e outputs a r_n satisfying |x - r_n| < 2^{-n}. This index e serves as a finite (or "name") of x, allowing of all computable reals via the indices of all . Such names enable effective operations on reals by dovetailing the computations of the underlying machines. For encoding multiple computable reals, such as vectors in \mathbb{R}^k, effective uniformity is achieved through Turing machines. A k-tuple (x_1, \dots, x_k) is computable if there exists a single Turing machine that, on input (n, i), outputs a rational r_{n,i} to x_i with |x_i - r_{n,i}| < 2^{-n}. Representations often interleave the names: for pairs, the name is an infinite sequence alternating digits from each component's expansion. This encoding preserves computability for operations like on vectors, ensuring uniform across all components.

Applications and implementations

Substitution for real numbers in computations

In numerical analysis, computable real numbers facilitate exact computations with guaranteed error bounds by representing reals through sequences of rational approximations that converge effectively, thereby circumventing the inherent inaccuracies and rounding errors prevalent in . This approach employs or centered intervals to perform operations like and while tracking approximation quality, ensuring that results remain within specified limits without the compositional semantic issues of fixed-precision formats. For instance, algorithms such as Heron's method for square roots can be verified to achieve errors bounded by powers of 2, making them suitable for safety-critical applications where floating-point pitfalls, like , could otherwise lead to unverifiable outcomes. In theory, computable analysis treats the real numbers as represented spaces, where reals are endowed with a computable structure via Cauchy representations that map infinite sequences of naturals to limits of dense rational approximations. Pioneered by , this framework extends Turing computability to continuous domains, defining computable real functions as those realized by recursive realizers that preserve the domain's effective topology. Such representations enable the study of multi-valued problems, like finding zeros of continuous functions, within the Type-2 theory of effectivity, bridging classical recursion theory with analytic objects. Despite these advantages, practical implementations of computable real computations require bounding the precision to finite steps, as full demands potentially infinite resources, leading to approximations that simulate but do not fully realize arbitrary computable reals in bounded time. For involving non-computable real numbers, which form a set of full measure in the , standard Turing machines cannot suffice; instead, oracle machines are necessary to access undecidable information, allowing relative relative to such oracles. This limitation underscores that while computable reals proxy effectively for dense subsets, broader simulations often rely on idealized or higher-degree oracles to handle pathological cases. In theoretical proofs within computable mathematics, substituting computable reals for general reals often preserves decidability for statements involving continuous functions, as every computable map on such domains is continuous, enabling effective and avoiding non-constructive choices. This substitution maintains the of solutions in subsystems like recursive analysis, where theorems such as the hold uniformly for computable inputs, thereby supporting decidable fragments of classical . Since computable numbers are dense in the reals, such proxies suffice for approximating proofs over arbitrary reals while retaining algorithmic verifiability.

Exact arithmetic implementations

Exact arithmetic implementations for computable numbers enable software and hardware systems to perform computations with guaranteed accuracy, approximating or enclosing real values to arbitrary precision without floating-point rounding errors. These systems represent computable reals through rational approximations, intervals, or balls, leveraging Turing's foundational definition of computable numbers as those whose digits can be generated by a finite . Early theoretical designs by in the 1940s, such as the Automatic Computing Engine (ACE), laid groundwork for digital computation capable of handling such numbers, though practical exact real systems emerged later in software libraries. Modern libraries like MPFR provide arbitrary-precision built on the library for rationals, allowing approximations of computable numbers such as π or by computing to user-specified bit with correct rounding modes (e.g., nearest, upward). For instance, MPFR's functions like mpfr_pi and mpfr_exp generate high-precision values, ensuring enclosures within the specified for subsequent operations. In systems like , MPFR integrates via the RealField class to compute constants exactly to desired accuracy; for example, RealField(1000).pi() yields π approximated to 1000 bits, facilitating reliable of computable reals. The iRRAM library implements interval-based exact arithmetic for computable reals in C++, modeling a Real RAM where reals are treated as atomic objects with lazy refinement. It uses expanding intervals to enclose results, supporting operations from basic arithmetic to transcendental functions like sine and , with automatic error control to achieve error-free computations. This approach ensures that outputs are rigorously bounded, making it suitable for verifying properties of computable numbers without precision loss. Ball arithmetic, as in the Arb library, represents computable reals as midpoint-radius pairs (balls) with arbitrary-precision midpoints and fixed-precision radii, providing guaranteed enclosures that expand only as needed during computations. defers radius inflation until required, optimizing efficiency for complex tasks like series summation or root finding; for example, evaluating a for automatically tracks and minimizes enclosure widths. This method outperforms traditional in speed and space and integrates into systems like for certified high-precision real computations. Exact real arithmetic (ERA) frameworks, such as iRRAM, RealLib, and AERN, build on Real RAM models to simulate idealized real computation on discrete hardware, using representations like signed-digit sequences or Taylor models for continuous functions. These systems emerged around 1995 with prototypes like Aberth's Precise Computation Software, enabling practical verification of computable real properties in a Type-2 of Effectivity () context. Despite these advances, challenges persist in management, where dynamic adjustments lead to reevaluation overhead; for instance, refining precision from n to 2n bits may require O(n) work per operation, accumulating costs in iterative algorithms. Memory usage can grow exponentially, as seen in computations where minimal polynomials expand rapidly—e.g., summing square roots of six primes in SageMath's QQbar takes seconds but balloons for more terms due to degree growth. Such overhead limits , though lazy techniques in ball arithmetic mitigate it for many applications.

References

  1. [1]
    [PDF] ON COMPUTABLE NUMBERS, WITH AN APPLICATION TO THE ...
    The "computable" numbers may be described briefly as the real numbers whose expressions as a decimal are calculable by finite means.
  2. [2]
    Alan Turing and the Countability of Computable Numbers
    Dec 1, 2021 · ( C is taken, as it usually refers to the set of complex numbers.) Turing defined a computable number as one that can be calculated to within an ...
  3. [3]
    Computable Number -- from Wolfram MathWorld
    A number which can be computed to any number of digits desired by a Turing machine. Surprisingly, most irrationals are not computable numbers!Missing: definition | Show results with:definition
  4. [4]
    [PDF] A Computability Theory of Real Numbers
    Computable real numbers are calculable. (exact computation);. • The class of computable real numbers is closed under the arithmetical operations;. • The class ...
  5. [5]
    [PDF] On the Complexity of Real Functions - Mark Braverman
    An oracle for a number x is a function φ : N → D such that |φ(n)−x| < 2−n . The oracle terminology is just a natural way to separate the complexity of computing ...
  6. [6]
    Turing machines - Stanford Encyclopedia of Philosophy
    Sep 24, 2018 · A (real) number is Turing computable if there exists a Turing machine which computes an arbitrarily precise approximation to that number. All of ...
  7. [7]
    [PDF] Notes on Computable Analysis
    A Cauchy name for a real x is a sequence (xi)i of rationals that converge rapidly to x. That is, for every k and j ≥ k, |xj − x| < 2-k. Definition 2.2. 1.
  8. [8]
    [PDF] arXiv:1104.4465v4 [math.LO] 7 Apr 2014
    Apr 7, 2014 · Computable reals. A sequence (qn)n∈N of rationals is called a ... It is often easier to work with the equivalent Definition A in Pour-El and.
  9. [9]
    [PDF] Theories of Hyperarithmetic Analysis. - UC Berkeley math
    A set satisfying the conditions above is said to be hyperarithmetic. In particular, every computable, ∆0. 2, and arithmetic set is hyperarithmetic.
  10. [10]
    Grzegorczyk's hierarchy of computable analysis - ScienceDirect
    This paper deals with the computability in analysis within the framework of Grzegorczyk's hierarchy, which is in the number 1 of addendum of open problems ...
  11. [11]
    [PDF] The Nature of Numbers: Real Computing - Scholarship @ Claremont
    Jan 1, 2022 · The Nature of Numbers: Real Computing. • Convert 2 to a computable number, compute its square root, then divide by 2. Call this program ¯x(k) ...<|control11|><|separator|>
  12. [12]
    [PDF] Computing with real numbers - Fredrik Johansson
    In other words, inequality for computable real numbers is semi-decidable (the algorithm of comparing with iteratively higher precision always terminates ...
  13. [13]
    The “no self-defeating object” argument, revisited - Terence Tao
    Oct 18, 2010 · ... computable reals is not recursively enumerable. (i.e. there's no computable function whose image is the set of computable reals since ...
  14. [14]
    [PDF] Aspects of Chaitin's Omega - arXiv
    Sep 21, 2018 · Since the halting set is computably enumerable, it follows that ΩU is the limit of an increasing computable sequence of rationals – it is a left ...
  15. [15]
    [PDF] Foundations of Computer Science Logic, models, and computations
    Prove that the set of computable reals is a countable sub-field of R, such ... not recursively enumerable, then consequently neither B. Remember that ...
  16. [16]
    A comparison of concepts from computable analysis and effective ...
    Jun 23, 2016 · Computable analysis and effective descriptive set theory are both concerned with complete metric spaces, functions between them and subsets ...
  17. [17]
    [PDF] Algorithmic randomness and computable measure theory - arXiv
    Mar 19, 2019 · We use an equivalent definition due to Merkle, Mihailović, and ... (1) The set of computable reals Rcomp ∩ [0, 1] is a null set. (2) ...
  18. [18]
    [cs/0508069] Real Hypercomputation and Continuity - arXiv
    Aug 15, 2005 · Abstract: By the sometimes so-called 'Main Theorem' of Recursive Analysis, every computable real function is necessarily continuous.
  19. [19]
    Primitive Recursive Ordered Fields and Some Applications - arXiv
    Oct 20, 2020 · We establish primitive recursive versions of some known facts about computable ordered fields of reals and computable reals, and then apply them ...
  20. [20]
    A Theory of Program Size Formally Identical to Information Theory
    A Theory of Program Size Formally Identical to Information Theory. Author: Gregory J. Chaitin.
  21. [21]
    [PDF] On Non-Computable Functions - Gwern
    The construction of non-computable functions used in this paper is based on the principle that a finite, non-empty set of non-negative integers has a.
  22. [22]
    [PDF] nicht konstruktiv beweisbare satze der analysis - RERO DOC
    1949. NICHT KONSTRUKTIV BEWEISBARE SATZE DER ANALYSIS. ERNST SPECKER. Nach allgemeiner Ueberzeugung konnen gewisse Satze der Analysis nicht konstruktiv ...
  23. [23]
    [PDF] ernst specker 1920–2011 - ETH Zurich
    The focus changed from computability and decidability 'in principle' (by recursive functions) to feasibility (by polyno- mially computable functions), a concept ...Missing: non- original
  24. [24]
    [PDF] Reverse Mathematics and Computable Analysis - UniPD
    Let IVT be the multi-valued function arising from the intermediate value theorem. Theorem (Weihrauch 2000). IVT is not computable. Page 42 ...
  25. [25]
    Gödel's Incompleteness Theorems
    Nov 11, 2013 · Gödel's two incompleteness theorems are among the most important results in modern logic, and have deep implications for various issues.
  26. [26]
    [PDF] Computability of Subsets of Metric Spaces
    Abstract We present a survey on computability on subsets of Euclidean space and, more generally, computability concepts on metric spaces and their subsets.<|control11|><|separator|>
  27. [27]
    [PDF] Computable Analysis Over the Generalized Baire Space
    Jul 21, 2015 · Via coding, we can transfer computability and topological results from the Baire space ωω to any space of cardinality 2ℵ0 , so that e.g. ...
  28. [28]
    [PDF] arXiv:math/0502049v1 [math.HO] 2 Feb 2005
    Feb 2, 2005 · In this section we discuss the continued fraction homeomorphism between Baire space and the irrationals. We use the continued fractions to ...Missing: computable decimal
  29. [29]
    Computing with Real Numbers, from Archimedes to Turing and ...
    Sep 1, 2013 · Fortunately, “interesting” mathematical constants (such as π and e) are usually computable. One reason numbers and mathematics was developed in ...
  30. [30]
    On the continued fraction representation of computable real numbers
    The continued fraction representation of real numbers is compared with other types of representations of real numbers in the context of recursive analysis.
  31. [31]
    [PDF] Computable Analysis via Representations
    Computable Real Numbers. Definition. A real number is called computable if it is ρinterval-computable. Rc := the set of computable real numbers. Theorem. Rc is ...
  32. [32]
  33. [33]
    Computability and Complexity - Stanford Encyclopedia of Philosophy
    Jun 24, 2004 · A mathematical problem is computable if it can be solved in principle by a computing device. Some common synonyms for “computable” are “solvable”, “decidable”, ...
  34. [34]
    Lecture on the Automatic Computing Engine (1947) - Oxford Academic
    Turing even gave an exact estimate of the cost of building the machine (£11,200). Turing's ACE and the EDVAC (which was not fully working until 195210) differed ...
  35. [35]
  36. [36]
    Arbitrary precision floating point real numbers using GNU MPFR
    An approximation to the field of real numbers using floating point numbers with any specified precision. Answers derived from calculations in this approximation ...Missing: computable | Show results with:computable
  37. [37]
    None
    Nothing is retrieved...<|separator|>
  38. [38]
    [PDF] Introduction to Exact Real Arithmetic ∗
    Apr 18, 2018 · Properties of ERA w.r.t TTE: Users want to base decisions on the results of programs: ▻ Discrete input must be possible (standard notation of N, ...Missing: modern frameworks