首页
网站开发
桌面应用
管理软件
微信开发
App开发
嵌入式软件
工具软件
数据采集与分析
其他
首页
>
> 详细
代写comp2022、Java/c++编程代做
项目预算:
开发周期:
发布时间:
要求地区:
comp2022/2922 A3 (90 marks) – Turing Machines s2 2023
• Submission is on GradeScope.
– For problems 1 and 2, you will submit one PDF with your solutions.
– For problem 3, you will submit your TMs in files named problem
• This assignment is due in Week 10 on Sunday 15 October, 11:59pm.
3 1.txt,
problem 3 2.txt, problem 3 3.txt.
– For problem 4, you will submit files named run.sh, build.sh and other files you
require. The first argument of run.sh, either tm to ptm or ptm to tm, should choose
the solution that is run. A skeleton will be provided on Ed.
– For problem 5, you will submit your 2-tape TM in one file named problem 5.txt.
• All work must be done individually without consulting anyone else’s solutions in accordance with the University’s “Academic Dishonesty and Plagiarism” policies.
• For clarifications and more details on all aspects of this assignment (e.g., level of justification expected, late penalties, repeated submissions, what to do if you are stuck, etc.) you
are expected to regularly monitor the Ed Forum post “Assignment FAQ”.
DTM stands for ”Deterministic Turing Machine”, and NTM stands for ”Nondeterministic Turing
Machine”.
All tapes in this assignment are doubly-infinite. When asked to give a low-level description use
Morphett’s format, and its extension to 2 tapes as follows: the instruction
q a b c d L R s
means that if the TM is in state q and reads a on the first tape and b on the second tape then it
writes c on the first tape and d on the second, and moves the first tape left and the second tape
right, and changes to state s.
For instance, suppose the question asked you to provide a 2-tape DTM that checks if a string has
the same number of 0s as 1s. Here is an answer:
; copy0: copies 0’s from tape#1 to tape#2
copy0 0 _ 0 0 R R copy0
copy0 1 _ * * R * copy0
copy0 _ _ * * L L compare
; compare: matches 1s on tape#1 with 0s on tape#2
compare 1 0 * * L L compare
compare 0 * * * L * compare
; same number
compare _ _ * * * * halt-accept
; more 1s than 0s
compare * _ * * * * halt-reject
; more 0s than 1s
compare _ * * * * * halt-reject
1
comp2022/2922 A3 (90 marks) – Turing Machines s2 2023
NB. The Morphett’s simulator only correctly simulates deterministic TMs. For nondeterministic
TMs it resolves nondeterminism randomly, which is not what TMs do! Thus, you cannot rely on
the simulator showing you all possible runs on a given input.
Problem 1. (20 marks)
1. (5 marks) Is the complement of every context-free language Turingdecidable? Give a brief justification of your answer.
2. (5 marks) Suppose that L is the intersection of a context-free language L1
and a regular language L2. Argue that L is in P. You may use any facts
proven in the lecture slides.
3. (5 marks) Fix Σ = {0, 1}. Consider the operation dub that maps a string
u to the string in which every 0 is replaced by 00. For a language L let
dub(L) = {dub(u) : u ∈ L}.
For instance, if L = {10, 1001, 11, ϵ} then dub(L) = {100, 100001, 11, ϵ}, and
if L = {0
n1
n
: n ≥ 0} then dub(L) = {0
2n1
n
: n ≥ 0}.
Suppose that L is decidable. Give a high-level description of a decider for
dub(L).
4. (5 marks) Consider the language L consisting of the set of strings
(SourceM1
, SourceM2
, SourceM3
) such that L(M1) is not regular, L(M2) is
not regular, and L(M1) ∪ L(M2) = L(M3).
Show that L is undecidable. You may only use facts from the lecture slides
to do so, e.g., that the acceptance problem TMs is undecidable.
Problem 2. (10 marks) Below is a NTM over input alphabet {a, b}.
1. (5 marks) Describe in one sentence the language that it accepts. Briefly
justify your answer. No marks will be awarded for describing how the TM
operates.
2. (5 marks) What is the asymptotic time complexity (aka running time) of
the NTM? Give your answer in big-Theta notation, and briefly explain your
answer.
; initial state is 0
; input alphabet is {a,b}
0 a a R 0
0 b b R 0
0 a A L 1
2
comp2022/2922 A3 (90 marks) – Turing Machines s2 2023
1 * * L 1
1 _ _ R 2
2 A A R 4
2 a _ R 2a
2a * * R 2a
2a A A R 2A
2A A A R 2A
2A a A L 1
2 b _ R 2b
2b * * R 2b
2b A A R 2B
2B A A R 2B
2B b A L 1
4 A A R 4
4 _ * * halt-accept
Problem 3. (20 marks) Fix Σ = {0, 1}.
1. (5 marks) Give a low-level implementation (in Morphett’s format) of a 1-
tape DTM that decides the language consisting of strings of the form x1y
where |x| = |y|. For instance, 1, 011, 10100 should be accepted, while
ϵ, 0, 00, 000, 11, 11000 should be rejected.
2. (5 marks) Give a low-level implementation (in Morphett’s format) of a 1-
tape DTM that decides the language consisting of strings of the form x1x.
For instance, 1, 010, 10110 should be accepted, while ϵ, 0, 00, 000, 11, 10101
should be rejected.
3. (10 marks) Give a low-level implementation (in Morphett’s format) of a 1-
tape DTM that decides the language consisting of strings of the form xyxxz
where x is non-empty. For instance, 1011, 000, 01110110110, 1001000010101
should be accepted, while ϵ, 0, 1101, 01101101, 0011101 should be rejected.
Problem 4. (20 marks) Following recent advances in interdimensional technology, a new type of Turing Machine has been developed, the portal Turing Machine
(PTM). These machines have the remarkable power to use 0 symbols on the tape
as portals, allowing them to traverse unbounded distances in a single step. (0
looks like a portal, you see.)
The semantics of a PTM are that when a machine is in a cell with a 0 and moves
left or right, instead of moving one cell, it moves to the next 0 in that direction.
3
comp2022/2922 A3 (90 marks) – Turing Machines s2 2023
If there is no 0 in that direction, it ”wraps around” the tape and moves to the 0
furthest in the other direction (eg. from the leftmost 0, a ”move left” instruction
moves to the rightmost 0). If there is only one 0 on the entire tape, a move left
or move right instruction causes it to stay put. Note that in each step, the write
instruction is executed before the movement instruction (since this may affect
whether a 0 is present when moving).
As a high ranking member of the Church of Turing, you want to uphold your
Thesis by showing that these new devices are equivalent in computational power
to traditional TMs.
1. (10 marks) Write a program to convert a basic TM into an equivalent PTM.
2. (10 marks) Write a program to convert a PTM into an equivalent basic TM.
Input will be a machine with input alphabet {0, 1}, tape alphabet {0, 1, , 2, 3},
all states other than the two halting-states (”halt-reject” and ”halt-accept”) are of
the form 0, 1, 2, · · · , 9 (i.e. states are single digit numbers and there are at most
10 non-halting states). Your output should be a machine with the same input
alphabet. The tape alphabet may be larger. Input and output machines are both
expected in Morphett’s format. Particularly, your output should start with the
state named 0 (zero).
For full marks, your simulating machines should have at most 100 states and be
reasonably efficient. Public tests and guidelines will be provided to judge this
efficiency.
Problem 5. (20 marks)
Build a 2-tape DTM S that takes as input an automaton A over input alphabet
{0, 1, #} on tape 1, and a string u ∈ {0, 1}
+ on tape 2, and accepts if u ∈ L(A),
and rejects otherwise. The TM S should run in polynomial time.
The input string u is guaranteed to be non-empty, but is otherwise an arbitrary
string the alphabet {0, 1}.
The states of our automata are denoted q1, q2, · · · , qn for some n. The initial
state is q1, and qn is the only final state (for simplicity). The automaton has
no epsilon transitions. Such an automaton will be represented as a string over
input alphabet {0, 1, #} as follows. The string encoding the automaton is of
the form u1u2 . . . un where each ui
is of the form #vi,1#vi,2# . . . #vi,n# where each
vi,j ∈ {00, 01, 10, 11} is defined as follows: the first bit of vi,j
is 1 iff the automaton
has a transition from qi
to qj on symbol 0, and the second bit of vi,j
is 1 iff the
automaton has a transition from qi
to qj on symbol 1.
You can assume that the input string to your TM is an encoding of an automaton,
i.e., the string matches the regular expression (#((0|1)
2#)
n
)
n
for some n. Subject
to this syntactic requirement, the automaton is otherwise arbitrary.
For example, the string
4
comp2022/2922 A3 (90 marks) – Turing Machines s2 2023
#11#10#00##00#00#01##00#00#11#
encodes the following NFA:
start q1 q2 q3
0,1
0 1
0,1
For full marks, your TM should have at most 100 states and be reasonably efficient. Public tests and guidelines will be provided to judge this efficiency.
Your TM should be written in the extension of Morphett’s format to 2-tape machines (described above).
10 marks are when A is a DFA, and 10 marks are when A is an NFA.
5
软件开发、广告设计客服
QQ:99515681
邮箱:99515681@qq.com
工作时间:8:00-23:00
微信:codinghelp
热点项目
更多
代做ceng0013 design of a pro...
2024-11-13
代做mech4880 refrigeration a...
2024-11-13
代做mcd1350: media studies a...
2024-11-13
代写fint b338f (autumn 2024)...
2024-11-13
代做engd3000 design of tunab...
2024-11-13
代做n1611 financial economet...
2024-11-13
代做econ 2331: economic and ...
2024-11-13
代做cs770/870 assignment 8代...
2024-11-13
代写amath 481/581 autumn qua...
2024-11-13
代做ccc8013 the process of s...
2024-11-13
代写csit040 – modern comput...
2024-11-13
代写econ 2070: introduc2on t...
2024-11-13
代写cct260, project 2 person...
2024-11-13
热点标签
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
联系我们
- QQ: 9951568
© 2021
www.rj363.com
软件定制开发网!