VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... ·...

42
VI. Church-Turing Thesis Yuxi Fu BASICS, Shanghai Jiao Tong University

Transcript of VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... ·...

Page 1: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

VI. Church-Turing Thesis

Yuxi Fu

BASICS, Shanghai Jiao Tong University

Page 2: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Fundamental Question

How do computation models characterize the informal notion ofeffective computability?

Computability Theory, by Y. Fu VI. Church-Turing Thesis 1 / 41

Page 3: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Fundamental Result

Theorem. The set of functions definable in λ-Calculus (TuringMachine Model, Unlimited Random Access Machine Model) isprecisely the set of recursive functions.

Proof.We have already showed thatµ-definable ⇒ λ-definable ⇒ Turing definable ⇒ URM-definable.

We have to show that URM-definable ⇒ µ-definable.

Computability Theory, by Y. Fu VI. Church-Turing Thesis 2 / 41

Page 4: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Synopsis

1. Godel Encoding

2. Kleene’s Proof

3. Church-Turing Thesis

Computability Theory, by Y. Fu VI. Church-Turing Thesis 3 / 41

Page 5: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Godel Encoding

Computability Theory, by Y. Fu VI. Church-Turing Thesis 4 / 41

Page 6: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Godel’s Insight

The set of syntactical objects of a formal system is denumerable.

More importantly, every syntactical object can be coded upeffectively by a number in such a way that a unique syntacticalobject can be recovered from the number.

This is the crucial technique Godel used in his proof of theIncompleteness Theorem.

Computability Theory, by Y. Fu VI. Church-Turing Thesis 5 / 41

Page 7: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Enumeration

An enumeration of a set X is a surjection g : ω → X ;this is often represented by writing {x0, x1, x2, . . .}.

It is an enumeration without repetition if g is injective.

Computability Theory, by Y. Fu VI. Church-Turing Thesis 6 / 41

Page 8: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Denumeration

A set X is denumerable if there is a bijection f : X → ω.(denumerate = denote + enumerate)

Let X be a set of “finite objects”.

Then X is effectively denumerable if there is a bijection f : X → ωsuch that both f and f −1 are computable.

Computability Theory, by Y. Fu VI. Church-Turing Thesis 7 / 41

Page 9: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Encoding Pair

Fact. ω × ω is effectively denumerable.

Proof.A bijection π : ω × ω → ω is defined by

π(m, n)def= 2m(2n + 1)− 1,

π−1(l)def= (π1(l), π2(l)),

where

π1(x)def= (x + 1)1,

π2(x)def= ((x + 1)/2π1(x) − 1)/2.

Computability Theory, by Y. Fu VI. Church-Turing Thesis 8 / 41

Page 10: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Encoding Tuple

Fact. ω+ × ω+ × ω+ is effectively denumerable.

Proof.A bijection ζ : ω+ × ω+ × ω+ → ω is defined by

ζ(m, n, q)def= π(π(m − 1, n − 1), q − 1),

ζ−1(l)def= (π1(π1(l)) + 1, π2(π1(l)) + 1, π2(l) + 1).

Computability Theory, by Y. Fu VI. Church-Turing Thesis 9 / 41

Page 11: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Encoding Finite String

Fact.⋃

k>0 ωk is effectively denumerable.

Proof.A bijection τ :

⋃k>0 ω

k → ω is defined by

τ(a1, . . . , ak)def= 2a1 + 2a1+a2+1 + 2a1+a2+a3+2 + . . .

+ 2a1+a2+a3+...,ak+k−1 − 1.

Now given x it is easy to find b1 < b2 < . . . < bk such that

2b1 + 2b2 + 2b3 + . . .+ 2bk = x + 1.

It is then clear how to calculate a1, a2, a3, . . . , ak . Details arenext.

Computability Theory, by Y. Fu VI. Church-Turing Thesis 10 / 41

Page 12: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Encoding Finite String

A number x ∈ ω has a unique expression as

x =∞∑i=0

αi2i ,

where αi is either 0 or 1 for all i ≥ 0.

1. The function α(i , x) = αi is primitive recursive:

α(i , x) = rm(2, qt(2i , x)).

2. The function `(x) = if x > 0 then k else 0 is primitive recursive:

`(x) =∑i<x

α(i , x).

Computability Theory, by Y. Fu VI. Church-Turing Thesis 11 / 41

Page 13: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Encoding Finite String

3. If x > 0 then it has a unique expression as

x = 2b1 + 2b2 + . . .+ 2bk ,

where 1 ≤ k and 0 ≤ b1 < b2 < . . . < bk .

The function b(i , x) = if (x > 0) ∧ (1 ≤ i ≤ `(x)) then bi else 0 isprimitive recursive:

b(i , x) =

{µy<x

(∑k≤y α(k , x) = i

), if (x > 0) ∧ (1 ≤ i ≤ `(x));

0, otherwise.

Computability Theory, by Y. Fu VI. Church-Turing Thesis 12 / 41

Page 14: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Encoding Finite String

4. If x > 0 then it has a unique expression as

x = 2a1 + 2a1+a2+1 + . . .+ 2al+a2+...+ak+k−1.

The function a(i , x) = ai is primitive recursive:

a(i , x) = b(i , x), if i = 0 or i = 1,

a(i + 1, x) = (b(i + 1, x)−b(i , x))−1, if i ≥ 1.

We conclude that a1, a2, a3, . . . , ak can be calculated by primitiverecursive functions.

Computability Theory, by Y. Fu VI. Church-Turing Thesis 13 / 41

Page 15: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Encoding Programme

Let I be the set of all instructions.

Let P be the set of all programs.

The objects in I, and P as well, are ‘finite objects’.

Computability Theory, by Y. Fu VI. Church-Turing Thesis 14 / 41

Page 16: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Encoding Programme

Theorem. I is effectively denumerable.

Proof.The bijection β : I → ω is defined as follows:

β(Z (n)) = 4(n − 1),

β(S(n)) = 4(n − 1) + 1,

β(T (m, n)) = 4π(m − 1, n − 1) + 2,

β(J(m, n, q)) = 4ζ(m, n, q) + 3.

The converse β−1 is easy.

Computability Theory, by Y. Fu VI. Church-Turing Thesis 15 / 41

Page 17: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Encoding Programme

Theorem. P is effectively denumerable.

Proof.The bijection γ : P → ω is defined as follows:

γ(P) = τ(β(I1), . . . , β(Is)),

assuming P = I1, . . . , Is .

The converse γ−1 is obvious.

Computability Theory, by Y. Fu VI. Church-Turing Thesis 16 / 41

Page 18: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Godel Number of Programme

The value γ(P) is called the Godel number of P.

Pn = the programme with Godel index n

= γ−1(n)

We shall fix this particular encoding function γ throughout.

Computability Theory, by Y. Fu VI. Church-Turing Thesis 17 / 41

Page 19: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Example

Let P be the program T (1, 3), S(4),Z (6).

β(T (1, 3)) = 18, β(S(4)) = 13, β(Z (6)) = 20.

γ(P) = 218 + 232 + 253 − 1.

Computability Theory, by Y. Fu VI. Church-Turing Thesis 18 / 41

Page 20: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Example

Consider P4127.

4127 = 25 + 212 − 1.

β(I1) = 4 + 1, β(I2) = 4π(1, 0) + 2.

So P4127 is S(2);T (2, 1).

Computability Theory, by Y. Fu VI. Church-Turing Thesis 19 / 41

Page 21: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Kleene’s Proof

Computability Theory, by Y. Fu VI. Church-Turing Thesis 20 / 41

Page 22: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Kleene demonstrated how to prove that machine computablefunctions are recursive functions.

Computability Theory, by Y. Fu VI. Church-Turing Thesis 21 / 41

Page 23: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Proof in Detail

The state of the computation of the program Pe(x) can bedescribed by a configuration and an instruction number.

A state can be coded up by the number

σ = π(c , j),

where c is the configuration that codes up the current values inthe registers

c = 2r13r2 . . . =∏i≥1

prii ,

and j is the next instruction number.

Computability Theory, by Y. Fu VI. Church-Turing Thesis 22 / 41

Page 24: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Proof in Detail

To describe the changes of the states of Pe(x), we introduce three(n + 2)-ary functions:

cn(e, x , t) = the configuration after t steps of Pe(x),

jn(e, x , t) = the number of the next instruction after t steps

of Pe(x) (it is 0 if Pe(x) stops in t or less steps),

σn(e, x , t) = π(cn(e, x , t), jn(e, x , t)).

If σn is primitive recursive, then cn, jn are primitive recursive.

Computability Theory, by Y. Fu VI. Church-Turing Thesis 23 / 41

Page 25: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Proof in Detail

If the computation of Pe(x) stops, it does so in

µt(jn(e, x , t) = 0)

steps. Then the final configuration is

cn(e, x , µt(jn(e, x , t) = 0)).

We conclude that the value of the computation Pe(x) is

(cn(e, x , µt(jn(e, x , t) = 0)))1.

Computability Theory, by Y. Fu VI. Church-Turing Thesis 24 / 41

Page 26: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Proof in Detail

The function σn can be defined as follows:

σn(e, x , 0) = π(2x13x2 . . . pxnn , 1),

σn(e, x , t + 1) = π(config(e, σn(e, x , t)), next(e, σn(e, x , t))),

where

I config(e, π(c , j)) is the configuration after t + 1 steps;

I next(e, π(c , j)) is the new number after t + 1 steps.

Computability Theory, by Y. Fu VI. Church-Turing Thesis 25 / 41

Page 27: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Proof in Detail

ln(e) = the number of instructions in Pe ;

gn(e, j) =

{the code of Ij in Pe , if 1 ≤ j ≤ ln(e),0, otherwise.

Both functions are primitive recursive since

ln(e) = `(e + 1),

gn(e, j) = a(j , e + 1).

Computability Theory, by Y. Fu VI. Church-Turing Thesis 26 / 41

Page 28: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Proof in Detail

u(z) = m whenever z = β(Z (m)) or z = β(S(m)):

u(z) = qt(4, z) + 1.

u1(z) = m1 and u2(z) = m2 whenever z = β(T (m1,m2)):

u1(z) = π1(qt(4, z)) + 1,

u2(z) = π2(qt(4, z)) + 1.

v1(z) = m1 and v2(z) = m2 and v3(z) = q if z = β(J(m1,m2, q)):

v1(z) = π1(π1(qt(4, z))) + 1,

v2(z) = π2(π1(qt(4, z))) + 1,

v3(z) = π2(qt(4, z)) + 1.

Computability Theory, by Y. Fu VI. Church-Turing Thesis 27 / 41

Page 29: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Proof in Detail

The change in the configuration c effected by instruction Z (m):

zero(c ,m) = qt(p(c)mm , c).

The change in the configuration c effected by instruction S(m):

succ(c,m) = pmc.

The change in the configuration c effected by instruction T (m, n):

tran(c ,m, n) = qt(p(c)nn , p

(c)mn c).

Computability Theory, by Y. Fu VI. Church-Turing Thesis 28 / 41

Page 30: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Proof in Detail

The following function

ch(c, z) = the resulting configuration when the

configuration c is operated on by the

instruction with code number z .

is primitive recursive since

ch(c , z) =

zero(c , u(z)), if rm(4, z) = 0,succ(c , u(z)), if rm(4, z) = 1,tran(c , u1(z), u2(z)), if rm(4, z) = 2,c , if rm(4, z) = 3.

Computability Theory, by Y. Fu VI. Church-Turing Thesis 29 / 41

Page 31: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Proof in Detail

The following function

v(c , j , z) =

the number j ′ of the next instructionwhen the configuration c is operated if j > 0,on by the jth instruction with code z ,0, if j = 0.

is primitive recursive since

v(c, j , z) =

j + 1, if rm(4, z) 6= 3,j + 1, if rm(4, z) = 3 ∧ (c)v1(z) 6= (c)v2(z),v3(z), if rm(4, z) = 3 ∧ (c)v1(z) = (c)v2(z).

Computability Theory, by Y. Fu VI. Church-Turing Thesis 30 / 41

Page 32: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Proof in Detail

config(e, σ) =

{ch(π1(σ), gn(e, π2(σ))), if 1 ≤ π2(σ) ≤ ln(e),π1(σ), otherwise.

next(e, σ) =

{v(π1(σ), π2(σ), gn(e, π2(σ))), if 1 ≤ π2(σ) ≤ ln(e),0, otherwise.

Computability Theory, by Y. Fu VI. Church-Turing Thesis 31 / 41

Page 33: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Proof in Detail

We conclude that the functions cn, jn, σn are primitive recursive.

Computability Theory, by Y. Fu VI. Church-Turing Thesis 32 / 41

Page 34: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Further Constructions

For each n ≥ 1, the following predicates are primitive recursive:

1. Sn(e, x , y , t)def= ‘Pe(x) ↓ y in t or fewer steps’.

2. Hn(e, x , t)def= ‘Pe(x) ↓ in t or fewer steps’.

They are defined by

Sn(e, x , y , t)def= jn(e, x , t) = 0 ∧ (cn(e, x , t))1 = y ,

Hn(e, x , t)def= jn(e, x , t) = 0.

Computability Theory, by Y. Fu VI. Church-Turing Thesis 33 / 41

Page 35: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Kleene’s Normal Form Theorem

Let φ(n)e denote the n-ary function computed by Pe .

Theorem. (Kleene)

There is a primitive recursive function U(x) and, for each n ≥ 1, aprimitive recursive predicate Tn(e, x , z) such that

1. φ(n)e (x) is defined if and only if ∃z .Tn(e, x , z).

2. φ(n)e (x) ' U(µzTn(e, x , z)).

Proof.(1) Tn(e, x , z) = Sn(e, x , π1(z), π2(z)).

(2) Let U(x) = π1(x). Then φ(n)e (x) ' U(µz .Tn(e, x , z)).

Computability Theory, by Y. Fu VI. Church-Turing Thesis 34 / 41

Page 36: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Every computable function can be obtained from a primitiverecursive function by using at most one application of theµ-operator in a standard manner.

Computability Theory, by Y. Fu VI. Church-Turing Thesis 35 / 41

Page 37: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Church-Turing Thesis

Computability Theory, by Y. Fu VI. Church-Turing Thesis 36 / 41

Page 38: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Church-Turing Thesis.

The functions definable in all computation models are the same.They are precisely the computable functions.

I Church believed that all computable functions are λ-definable.

I Kleene termed it Church Thesis.

I Godel accepted it only after he saw Turing’s equivalence proof.

I Church-Turing Thesis is now universally accepted.

Computability Theory, by Y. Fu VI. Church-Turing Thesis 37 / 41

Page 39: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Computable Function

Let C be the set of all computable functions.

Let Cn be the set of all n-ary computable functions.

Computability Theory, by Y. Fu VI. Church-Turing Thesis 38 / 41

Page 40: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Power of Church-Turing Thesis

Noone has come up with a computable function that is not in C.

When you are convincing people of your model of computation,you are constructing an effective translation from your model to awell-known computation model.

Computability Theory, by Y. Fu VI. Church-Turing Thesis 39 / 41

Page 41: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Making Use of Church-Turing Thesis

Church-Turing Thesis allows us to give an informal argument forthe computability of a function.

We will make use of CTT in this way without explicitly defining it.

Computability Theory, by Y. Fu VI. Church-Turing Thesis 40 / 41

Page 42: VI. Church-Turing Thesis - SJTUbasics.sjtu.edu.cn/~yuxi/teaching/computability2013... · Computability Theory, by Y. FuVI. Church-Turing Thesis21 / 41. Proof in Detail The state of

Comment on Church-Turing Thesis

CTT and Physical Implementation

I Deterministic Turing Machines are physically implementable.This is the well-known von Neumann Architecture.

I Are quantum computers physically implementable? Can aquantum computer compute more or more efficiently?

CTT, is it a Law of Nature or a Wisdom of Human?

Computability Theory, by Y. Fu VI. Church-Turing Thesis 41 / 41