W teorii obliczalności funkcje obliczeniowe nazywane są również funkcjami rekurencyjnymi. Przynajmniej na pierwszy rzut oka nie mają one nic wspólnego z tym, co nazywasz „rekurencyjnym” w codziennym programowaniu (tj. Funkcjami, które same się nazywają).
Jakie jest rzeczywiste znaczenie rekurencji w kontekście obliczalności? Dlaczego te funkcje nazywane są „rekurencyjnymi”?
Innymi słowy: jaki jest związek między dwoma znaczeniami „rekurencyjności”?
computability
terminology
history
Golo Roden
źródło
źródło
Odpowiedzi:
Zdefiniuj podstawowe funkcje:
funkcja zerowa
funkcja następcy
funkcja projekcji
Od teraz będę używać do oznaczenia ( x 1 , x 2 , … , x n )xn¯ ( x1, x2), … , Xn)
Zdefiniuj kompozycję:
Podane funkcje
Skonstruuj następującą funkcję:
Zdefiniuj prymitywną rekurencję:
Podane funkcje
Skonstruuj następującą (częściową) funkcję:
Wszystkie funkcje, które można wykonać za pomocą kompozycji i prymitywnej rekurencji na podstawowych funkcjach , nazywane są prymitywną rekurencyjną . Nazywa się to tak z definicji. Chociaż istnieje łącze z funkcjami, które same się wywołują, nie trzeba próbować łączyć ich ze sobą. Możesz uznać rekursję za homonim.
Powyższa definicja i powyższa konstrukcja została zbudowana przez Gödela (zaangażowanych było także kilka innych osób) w celu uchwycenia wszystkich obliczalnych funkcji, tj. Istnieje maszyna Turinga dla tej funkcji. Zauważ, że koncepcja maszyny Turinga nie została jeszcze opisana lub przynajmniej była niejasna.
(Nie) na szczęście przyszedł ktoś o imieniu Ackermann i zdefiniował następującą funkcję:
Nieograniczona minimalizacja
THEN
ELSE
This last one may be hard to grasp, but it basically means thatg((x1,x2,…,xk)) is the smallest root of f (if a root exists).
All functions that can be constructed with all the constructions defined above are called recursive. Again, the name recursive is just by definition, and it doesn't necessarily have correlation with functions that call themselves. Truly, consider it a homonym.
Recursive functions can be either partial recursive functions or total recursive functions. All partial recursive functions are total recursive functions. All primitive recursive functions are total. As an example of a partial recursive function that is not total, consider the minimisation of the successor function. The successor function doesn't have roots, so its minimisation is not defined. An example of a total recursive function (which uses minimisation) isAck .
Now Gödel was able to construct theAck function as well with his expanded class of functions. As a matter of fact, every function that can be computed by a Turing machine, can be represented by using the constructions above and vice versa, every construction can be represented by a Turing machine.
If you're intrigued, you could try to make Gödel's class bigger. You can try to define the 'opposite' of unbounded minimisation. That is, unbounded maximisation i.e. the function that finds the biggest root. However, you may find that computing that function is hard (impossible). You can read into the Busy Beaver Problem, which tries to apply unbounded maximisation.
źródło
The founders of computability theory were mathematicians. They founded what is now called computability theory before there was any computers. What was the way mathematicians defined functions that could be computed? By recursive definitions!
So there were recursive function before there were any other model of computation like Turing machines or lambda calculus or register machines. So people referred to these function as recursive functions. The fact that they turned out to be exactly what Turing machines and other models can compute is a later event (mostly proven by Kleene).
We have the simple definition of a recursive function which is now called primitive recursive function. There were not general enough (e.g. Ackermann's function) so people developed more general notions likeμ -recursive functions and
Herbrand-Gödel general recursive functions that
did capture all computable functions (assuming the Church's thesis).
Church claimed that his model of lambda calculus captured
all computable functions.
Many people, and in particular Gödel, were not convinced that
these capture all functions that can be computed.
Until Turing's analysis of computation and introduction of his machine model.
The name of the field used to recursion theory. However there has been a successful push in recent decades to change the name to something more appealing from recursion theory to something more computer sciency (vs. mathy). As a result the field is now called computability theory. However if you look at books, papers, conferences, etc. in the early decades they are called recursion theory and not computability theory. Even the title of Soare's own 1987 book (who was the main person behind the push to change the name to computability theory) is "Recursively Enumerable Sets and Degrees".
If you want to know more about the history a fun and good place to read about it is the first chapter of Classical Recursion Theory by Odifreddi.
źródło
Robert Soare wrote an essay about this issue. According to him, the term (general) recursive functions was coined by Gödel, who defined them using some sort of mutual recursion. The name stuck, though later on other equivalent definitions were found.
For more information, I recommend Soare's essay.
źródło
zamiast długiego komentarza postanowiłem dodać odpowiedź:
Ponieważ są one definiowane rekurencyjnie , tzn. „ Bardziej złożone funkcje są zdefiniowane w kategoriach wcześniej zdefiniowanych, prostszych funkcji ”
Ten rodzaj procedury iteracyjnej lub przyrostowej tworzy dobrze zdefiniowane funkcje (w sensie matematycznym)
Takie jest znaczenie rekurencyjności w języku matematycznym. Zobacz poniżej, jak odnosi się to do rekurencji w języku programowania.
Porównaj tę procedurę z technikami i metodami takimi jak indukcja (matematyczna), która jest również przykładem rekurencyjności w matematyce.
Programowanie ma żyłę matematyczną i inżynierską.
Ta (zwykle konstruktywna) procedura jest również określana jako „ ładowanie początkowe ” w mowie systemów operacyjnych.
Jednak rekurencji wykonawcze z tej samej funkcji (tj caling sama podczas jego wykonywania ), gdyż musi (hmm, powinien) się zdarzyć na wartości już komputerowej (lub argumenty), czyli innymi słowy, w ramach zbioru wynikowego już obliczone , ma również charakter rekurencyjny w powyższym znaczeniu, tzn. „ zdefiniowane wcześniej zdefiniowane funkcje (i ich wartości) ”
W przeciwnym razie nie jest dobrze zdefiniowane i prowadzi do takich rzeczy jak przepełnienie stosu :))))
Aby podać kolejny przykład z systemów operacyjnych, rekurencja środowiska wykonawczego (wywołanie samego siebie) może być traktowana jako analogia do ponownego uruchamiania systemu operacyjnego po pewnej aktualizacji (np. Aktualizacji rdzenia). Wiele systemów operacyjnych wykonuje następującą procedurę:
Piękna odpowiedź Auberona bardziej szczegółowo przedstawia tego rodzaju procedurę.
źródło