Opting for oracles: Difference between revisions

From HaskellWiki
(Content extensively rewritten)
(Redundant sections replaced with "oracle" reference; other minor changes)
 
Line 1: Line 1:
== What an oracle is ==
It was the work of Emil Post and others that established the oracle more formally:
<blockquote>
Now suppose instead, says Turing
[https://pure.mpg.de/rest/items/item_2403325_2/component/file_2403324/content <span><span>]&nbsp;
in effect, this situation obtains with the following
modification. That at certain times the otherwise machine determined
process raises the question is a certain positive integer in a given
recursively enumerable set <i>S</i><sub>2</sub> of positive integers, and that the machine
is so constructed that were the correct answer to this question supplied
on every occasion that arises, the process would automatically
continue to its eventual correct conclusion.<sup>23</sup>
<sup>23</sup>Turing picturesquely suggests access to an “oracle” which would supply the
correct answer in each case. The “if” of mathematics is however more conducive to the
development of a theory.
:<small>[https://www.ams.org/journals/bull/1944-50-05/S0002-9904-1944-08111-1/S0002-9904-1944-08111-1.pdf Recursively enumerable sets of positive integers and their decision problems] (page 311).</small>
</blockquote>
Of interest here is the phrase <q>the otherwise machine determined process</q> -
what answers the question is separate from that process. This implies:
* an oracle cannot be computable.
::If it was, it could also be computed by the machine-determined process.
* an oracle doesn't access the internal state of the machine that calls it.
::It only needs the positive integer of interest to supply the required answer, with all other actions being the responsibility of the machine-determined process.
* an oracle returns a boolean result.
::There are only two definite answers to the question:
:::<q>is a certain positive integer in a given recursively enumerable set <i>S</i><sub>2</sub> of positive integers</q>
::and they can be mapped to the boolean values <code>True</code> and <code>False</code>.
Hence the oracle is a noncomputable function - originally a predicate, but
now more commonly a function returning a wider range of values. This makes
the use of oracles highly relevant to languages intended to preserve
referential transparency, such as Haskell.


== An adapted example ==
== An adapted example ==
Line 86: Line 42:
</blockquote>
</blockquote>


...the oracle is a function of time <math>t \in T</math> with result
...the [[oracle]] is a function of time <math>t \in T</math> with result
<math>A_t</math> providing input to the meteorologist's program.
<math>A_t</math> that provides input to the meteorologist's program.


=== The problem of choice ===
=== The problem of choice ===
Line 122: Line 78:




[[Category:Code]]
[[Category:Mathematics]]
[[Category:Nondeterminism]]

Latest revision as of 08:44, 20 December 2024

An adapted example

Based on page 42 of 76 in Turing-Post Relativized Computability and Interactive Computing:

The Limit Computable or Approximation Model

There exists a sequence of Turing programs {Pt:tT} so that Pt computes function gt at time tT. There is not necessarily any connection between different programs and computing may have to start all over again with a new program as the time changes from t to t+1.

Suppose a meteorologist receives data every second tT from weather stations scattered across the country. The configuration at the meteorologist's desk may be described using the Shoenfield Limit Lemma by a computable function where gt is the computable characteristic function of Bt, the configuration of the meteorological computation at the end of time t. The computable function gt gives an algorithm to compute the condition Bt at time t but it gives no relationship between Bt and Bt+1. It will not be possible for the meteorologist to run, let alone write a new program every second. How will the meteorologist write a program to uniformly compute the index gt for tT?

The Online Model With an Oracle Machine

By the Shoenfield Limit Lemma there is a computably enumerable set A (or even a Δ20 set) and oracle machine Φe such that B=ΦeA. Now the meteorologist can program the algorithm Φe into a computer once and for all at the start of the day. Every second tT the meteorologist receives from the weather stations the latest readings At which enter directly into that computer by an network connection. The meteorologist does not (and cannot) change the program Φe every second. The algorithm simply receives the “oracle” information At from the weather-station network as it is continually updated, and computes the approximation Bt(x)=ΦeAt(x). The meteorologist's program then produces the next scheduled weather forecast for the day from the algorithm's result. It is difficult to see how this meteorologist could have carried out that activity using a batch processing, automatic machine model, instead of an online model.

...the oracle is a function of time tT with result At that provides input to the meteorologist's program.

The problem of choice

But for the program's output - the forecasts - an element of choice is often involved:

  • the choice of time to send the forecasts to media outlets broadcasting to listeners or viewers - forecasts may need to be sent more frequently to regions experiencing more severe weather conditions.
  • the choice of device - the meteorologist may need a hard copy of the latest forecast (or some part thereof) for research purposes.

Choices can also affect the program itself - the meteorologist may for some reason decide to intervene while the program is running (perhaps restarting it to provide more accurate forecasts after software upgrades).

In contrast, output is a simple matter for a function - if there is any, it all goes to its caller! Therefore interactive choice requires something more than functions alone; it usually appearing in the form of an abstract type:

  • the various auxiliary types used in dialogues - text and binary files, channels, etc.
  • the type of the final result returned by a nested sequence of CPS calls;
  • the type of the state passed through all the calls which require it;
  • the monadic, comonadic or arrow types of online actions;

Another option is to use an structured value of unbounded size:

  • lazy lists, for incremental streaming;
  • lazy trees, for providing subtrees to various parts of the program.