Funciones RP Flashcards

1
Q

Esquema de recursión primitiva tipo I

A

Sea h ∶ N → N
Sea g ∶ N^2 → N
Decimos que h se obtiene a partir de g por un ERI si se puede escribir de la siguiente forma:
h(0) = k ∈ N
h(n + 1) = g(n, h(n))

Teorema 26
Si h se obtiene a partir de g por un ERI y g es computable, entonces h es computable.

DEMO

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Esquema de recursión primitiva tipo II

A

Sea h ∶ N^n+1 → N
Sea g ∶ N^n+2 → N
Sea q ∶ N^n → N
Decimos que h se obtiene por ERII a partir de g y q si puede escribirse:

h(x1, x2, . . . , xn, 0) = q(x1, . . . , xn)
h(x1, x2, . . . , xn, y + 1) = g(x1, . . . , xn, y, h(x1, . . . , xn, y))

Teorema 27
Sea g ∶ N^n+2 → N
Sea q ∶ N^n → N
Sea h ∶ N^n+1 → N tal que se obtiene por ERII a partir de q y g.
Si q y g son computables ⇒ h es computable.

DEMO

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Recursividad primitiva

A

Una función es RP si es inicial o se obtiene aplicando finitas “operaciones válidas” a las Funciones iniciales, siendo las operaciones válidas:
composición, ERI y ERII.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

fuunciones inciales

A

Sea P^ n+1un predicado RP (computable).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly