代写MAT246: Concepts in Abstract Math Computability: Lecture 1 2024调试R语言程序

Computability: Lecture 1

MAT246: Concepts in Abstract Math

July 31st 2024

Computability and Logic

Our goal for the last two weeks is to build a foundation for proving a famous result referred to as Godel’s Incompleteness Theorem.  This theorem roughly states that

Theorem 1. No system of axioms is capable of proving all truths about the arithmetic of natural numbers.

An important detail missed in the formulation above is that the system of axioms in question must have an algorithm capable of generating a complete list of potential theorem about the arithmetic of natural numbers.  We now set out to explore this idea of ”algorithm” and ”generating lists” .

Computable functions

We will begin our study of computability in an informal manner, meaning that we will not yet formally define what precisely an algorithm is, we will rather rely on our 21st century familiarity with computers and hopefully some basic understanding of the idea of a programming language.

Definition 1. An algorithm is a program that can be written in your program- ming language of choice.

Algorithms are somewhat similar to functions, they often have some form of input and some form. of output, a crucial difference is however that an algorithm isn’t always expected to produce a result - a computer program might loop infinitely and we are generally unable to distinguish whether or not it has looped or is just taking longer than expected to print out the result. To accommodate for this we will from now on have to deal with partially defined functions to reflect the fact that an algorithm might not produce a result on some input. It is standard practice in this area of math to use to word ”function” to mean partially defined function and to use ”total function” to mean a function defined everywhere.

Definition 2. A function is called computable if it can be realized by means of some algorithm.

We will primarily be concerned with function from the natural numbers into the natural numbers.  The reason we can afford to do this is that most ”data types” are countable. For example, computers don’t directly deal with natural numbers, but operate with finite binary strings.

Lemma 2. The set of finite binary strings is countable.

Proof.  For each fixed length there are only finitely many binary strings, taking the union overall all possible string lengths we see that the set of all finite binary strings is a countable union of finite sets.

We will also sometimes want to deal with n-tuples of natural numbers, but we also know that the sets Nn  are countable.  We know that the set of real numbers R is not countable, so it is unclear how to fit computations with real numbers into this framework, but take a look at problem 3 from tutorial 1.

The set of finite binary strings or n-tuples of natural numbers are not only countable, but also enumerable by an algorithm.   Recall that when we were constructing a bijection between N and N2  we didn’t do so explicitly, but rather defined a recursive procedure mapping N2  into N.  This leads to the following definition.

Definition 3. A set is called  recursively  enumerable  if there is  an algorithm that prints out its elements.

The set N2  is recursively enumerable:  start by printing  (0 , 0), then print (0, 1), then print (1, 0), then (0, 2); if the last pair printed was (x,y), then if y ≠ 0, print (x + 1, y − 1), otherwise print (0, x + 1) - this algorithm is exactly how we constructed the bijection between N2  and N moving along the diagonals of the N2  grid.

The set of finite binary strings is recursively enumerable: start by printing 0, then print 1, then 10; if the last string printed was a1 a2 ... an , then if all ai  = 1,

print 1 、(0)00000, otherwise starting from the last digit find a 0 digit and change

n-times

it to 1 - this algorithm generates the set of finite binary strings by using binary arithmetic, the procedure described here is simply adding 1 to the previously printed number written in binary.

To practice understanding recursively enumerable sets lets give some equiv- alent definitions.

Lemma 3. •  A set is recursively enumerable if and only if it is the domain of definition of a computable function.

•  A set is recursively enumerable if and only if it is the set of values of a computable function.

Proof.  Given a recursively enumerable set X  define a computable function as follows: for a given input n we fire up the algorithm which prints the elements of X, when and if the element n is printed we stop and say that f(n) = 0. This defines a computable function which is equal to 0 on all elements of X and is undefined on all elements not belonging to X .  We could also define a computable function like this:  for a given input n we fire up the algorithm which prints the elements of X, when and if the n-th element is printed we stop and say that f(n) is equal to that element.  This defines a computable function whose set of values is precisely the set X, this function will be total if X is infinite and have a finite domain of definition if X is finite.

The key idea to prove the converse is that every algorithm follows a series of steps and we can perform these steps one at a time, this effectively allows us to run an increasingly large number of computations simultaneously.  Given a computable function f, we perform. the following algorithm: run one step of the computation off(0), then run one step of the computation of f(1), go back and do one more step of f(0), one step of f(1), one step of f(2), having done one more step of f(n), go back and do one more step of f(i) for all i < n, then do the first step of f(n + 1) and so on. Whenever we reach the final computation of a particular f(n), print n or print f(n), depending on if you wanted to print out the domain of definition or the set of values.

Lemma 4. The union and intersection of recursively enumerable sets is recur- sively enumerable.

Proof.  Given two  recursively enumerable sets X  and Y alternate doing steps of the algorithms that print X  and Y.   To print out the union simply print out whatever gets printed by either  algorithm,  but before doing that check whether or not this number was printed previously to avoid printing duplicates. To print out the intersection whenever one of the algorithms produces a new element check whether or not the other algorithm already produce it, if yes print it, otherwise continue, this process will eventually print all the elements in the intersection.

What about complements? This is where it gets tricky. We can attempt to wait and see whether or not a given element x gets printed, but how long do we wait?  There seems to be no way of knowing whether or not the algorithm is done printing or is just taking its time to print the next element. There is a particular type of set whose complement is for sure recursively enumerable.

Definition 4. A set is called decidable  if there is an algorithm that determines in a finite amount of time whether or not the element belongs to the set.

For example, the set of even natural number is a decidable set because we can devise an algorithm to check whether or not a given number is even or odd.

Lemma 5. Every decidable set is recursively enumerable.

Proof.  Starting  with 0 run the algorithm that checks whether or not 0 is in the set, do a few steps, then switch to the algorithm that checks whether or not 1 is in the set, do a few steps, then go back to 0, then try 2 and so on, gradually increasing the range covered.  Whenever one of the sub-algorithms checking whether or not n is in the set completes its work, print or don’t print n depending on the result.

The following result is commonly referred to as Post’s theorem.

Theorem 6. A set A is decidable if and only if both A and its complement are recursively enumerable.

Proof.  The proof of the lemma above also shows that a complement of decidable set is recursively enumerable.

Given a recursive enumerable set A such that its complement Ac   is also recursively enumerable we want to devise an algorithm which decides whether or not an element n is in the set.  Fire up both the algorithms which print A and Ac , in a finite amount of time one of them will print the element n.

Here is another important result relating decidable and recursively enumer- able sets.  It will be used later on understand formulas expressing fact about arithmetic.

Theorem 7. A subset of the natural numbers A is recursively enumerable if and only if it is the projection of a decidable set of pair of natural numbers.

Proof.  The projection of a recursively enumerable  set is also recursively enu- merable, we simply don’t print the second coordinate.

Given a recursively enumerable set A consider the set of pairs (x, n) such that the element x is printed within n steps of the algorithm for A.  The projection of this set is clearly set A. This set is decidable: given a pair (x, n) run n steps of the algorithm for A, if x is printed then it belongs to the set.

Why aren’tall subsets of natural numbers decidable/recursively enumerable? Why aren’t all function from N to N computable?  The cheap answer is cardinal- ity. There are only countably many algorithms, but there are uncountably many subsets of the natural numbers and uncountably many function from N to N. In the next lecture we will nevertheless give a clear example of a non-computable function and of a set which is recursively enumerable, but not decidable.





热门主题

课程名

mktg2509 csci 2600 38170 lng302 csse3010 phas3226 77938 arch1162 engn4536/engn6536 acx5903 comp151101 phl245 cse12 comp9312 stat3016/6016 phas0038 comp2140 6qqmb312 xjco3011 rest0005 ematm0051 5qqmn219 lubs5062m eee8155 cege0100 eap033 artd1109 mat246 etc3430 ecmm462 mis102 inft6800 ddes9903 comp6521 comp9517 comp3331/9331 comp4337 comp6008 comp9414 bu.231.790.81 man00150m csb352h math1041 eengm4100 isys1002 08 6057cem mktg3504 mthm036 mtrx1701 mth3241 eeee3086 cmp-7038b cmp-7000a ints4010 econ2151 infs5710 fins5516 fin3309 fins5510 gsoe9340 math2007 math2036 soee5010 mark3088 infs3605 elec9714 comp2271 ma214 comp2211 infs3604 600426 sit254 acct3091 bbt405 msin0116 com107/com113 mark5826 sit120 comp9021 eco2101 eeen40700 cs253 ece3114 ecmm447 chns3000 math377 itd102 comp9444 comp(2041|9044) econ0060 econ7230 mgt001371 ecs-323 cs6250 mgdi60012 mdia2012 comm221001 comm5000 ma1008 engl642 econ241 com333 math367 mis201 nbs-7041x meek16104 econ2003 comm1190 mbas902 comp-1027 dpst1091 comp7315 eppd1033 m06 ee3025 msci231 bb113/bbs1063 fc709 comp3425 comp9417 econ42915 cb9101 math1102e chme0017 fc307 mkt60104 5522usst litr1-uc6201.200 ee1102 cosc2803 math39512 omp9727 int2067/int5051 bsb151 mgt253 fc021 babs2202 mis2002s phya21 18-213 cege0012 mdia1002 math38032 mech5125 07 cisc102 mgx3110 cs240 11175 fin3020s eco3420 ictten622 comp9727 cpt111 de114102d mgm320h5s bafi1019 math21112 efim20036 mn-3503 fins5568 110.807 bcpm000028 info6030 bma0092 bcpm0054 math20212 ce335 cs365 cenv6141 ftec5580 math2010 ec3450 comm1170 ecmt1010 csci-ua.0480-003 econ12-200 ib3960 ectb60h3f cs247—assignment tk3163 ics3u ib3j80 comp20008 comp9334 eppd1063 acct2343 cct109 isys1055/3412 math350-real math2014 eec180 stat141b econ2101 msinm014/msing014/msing014b fit2004 comp643 bu1002 cm2030
联系我们
EMail: 99515681@qq.com
QQ: 99515681
留学生作业帮-留学生的知心伴侣!
工作时间:08:00-21:00
python代写
微信客服:codinghelp
站长地图