HW14 solutions, CS 420 spring 2019 at ISU


** #1 ** 
Run the TM M2 from example 3.7 in the text.  For each give the
sequence of configurations that M2 goes through.  Remember that a
configuration is the contents of the tape along with which state of
the finite control, and the current position of the tape.

Note - for each of the following I use _ for blank.

3.1a) input 0

q1 0 _
_ q2 _
_ _ qaccept

3.1b) input 00

q1 0 0 _
_ q2 0 _
_ x q3 _
_ q5 x _
q5 _ x _
_ q2 x _
_ x q2 _
_ x _ qaccept

Input 0000

q1 0 0 0 0 _
_ q2 0 0 0 _
_ x q3 0 0 _
_ x 0 q4 0 _
_ x 0 x q3 _
_ x 0 q5 x _
_ x q5 0 x _
_ q5 x 0 x _
q5 _ x 0 x _
_ q2 x 0 x _
_ x q2 0 x _
_ x x q3 x _
_ x x x q3 _
_ x x q5 x _
_ x q5 x x _
_ q5 x x x _
q5 _ x x x _
_ q2 x x x _
_ x q2 x x _
_ x x q2 x _
_ x x x q2 _
_ x x x _ qaccept

Input 00000

q1 0 0 0 0 0 _
_ q2 0 0 0 0 _
_ x q3 0 0 0 _
_ x 0 q4 0 0 _
_ x 0 x q3 0 _
_ x 0 x 0 q4 _
_ x 0 x 0 _ qreject


** #2 **

Why?  The first statement 1 is an infinite loop.  It is not possible
to try all possible integer values.


** #3 **

First phase is to check the # of a's in w1 and w2.  During this phase,
the following happens -

1.
Scan past any blanks and x's to the first a in w1 that remains.
Mark it with an x and start scanning to the . in between w1 and w2.

If there are no a's left in w1 (if we get to . without any a's), then
switch to checking if there are any a's left in w2.  We will scan to
the . and then scan through w2.  If we find an a in w2 then reject.
If we get to the . after w2 without finding any a's, then switch to
the second phase - checking for b's in w2 and w3.

2.
After getting to the . in w2, scan to the first a that is left in
w2.  Mark that a with an x, and scan back to the . in between w1 and
w2 and then to the first x in w1.  Go back to 1.

If scanning in w2 looking for the first a and don't find one, then
reject (because we had found an a in w1 but there isn't a matching one
in w2.


Second phase is to check the # of b's in w2 and w3.  This is similar
to the steps above except that we're not checking for b's instead of
a's, and looking in w2 and w3 instead of w1 and w3.  One difference -
when we try to get to the first b in w2, we scan left to the . in
between w1 and w2, and then scan right until we find a b.


** #4 **

We want to show that adding the following ability to a single tape TM
does not change it's computational power: at each time step the tape
head moves left or right or stays where it is.  We need to verify two
things - (1) the modified TM can decide any language that the standard
TM can, and (2) the standard TM can decide any language that the
modified TM can.

(1) is obvious - we have made our TM more general, so we can
definitely still solve the same problems we could before.  The
standard TM without the extra "stay put" option is still a valid
modified-TM.

(2) Suppose we have a modified TM that possibly "stays put" with its
tape head for some transitions.  We need to show that we can simulate
this TM with a standard TM.  Suppose we have a modified TM M.  We
construct a standard TM M' as follows.  First we take M' to be exactly
the same as M, but we need to modify M' so it never "stay's put" for
any of its transitions.  So we need to look at any transitions in M'
that are "stay put" for the tape head.  Let us look at one such
transition, and let's say that M' is going from state q_i to state q_j
on tape symbol X, and writes a tape symbol y to the tape.  So the
transition is
(q_i, X) -> (q_j, Y, stay-put)
We add a new state q_j' and change this to the following transitions:
(i) -  (q_i, X) -> (q_j', Y, right)
(ii) - (q_j', *) -> (q_j, *, left)
Transition (ii) says that no matter what the symbol is on the tape, we
should go back left and leave the tape symbol unchanged.  This will
leave the tape, tape head, and state in the same configuration as it
would have been.  This means that M' will end up in the same exact
configuration in the end that M would have, we have just added some
new intermediate states.  Since M' ends up in the same exact configuration
as M, it will come to the same answer (reject/accept/infinite-loop) as M.


** #5 **
Given languages L1 and L2 that are decided by TM's M1 and M2, we need to
show that we can create a TM machine M such that -
(i) if an input string x is in L1 and L2, then M(x) accepts
(ii) otherwise, M(x) rejects.
Note that in case (i) it would be the case that M1(x) and M2(x) both
accept.

We give a high level description for how M should operate.  Roughly
speaking, M should simulate both M1 and M2 on input x and at the end
accept only if both M1(x) and M2(x) accept.  But how can we arrange
for M to keep track both of M1 and M2's computation?  Here is one way
to do it...

We mentally divide M's tape into the odd numbered cells and even
numbered cells.  We will keep track of M1's computation on the odd
numbered cells, and keep track of M2's computation in the even
numbered cells.  This is similar to what was done to show that a
single tape TM can simulate a multi-tape TM.

When M's computation starts, it does the following to prepare the tape -
(i) copy the input one tape cell to the right and leave an x on the
    leftmost tape cell.  we copy the whole input to the right by
    first scanning to the rightmost tape cell (go until _ and then
    go left once), and then copying each cell one to the right.
(ii) leave the leftmost two cells alone (an x and the first symbol
     in the input), and copy to the right starting with the
     3rd tape cell (which is the second input symbol). end up with
     x A x B C D ... where A B C D are the first four symbols
     in the input.  
(iii) keep going like that so that the input is on the odd numbered
      cells and x's are on the even numbered cell's.  Note
      that we can keep track of where are in this process by using
      a separate symbol x' to mark where we are at and use that
      as the thing we look for when scanning to the left.  So
      the tape might look like
      x A x B x' C D E F ...
(iv) scan to the right until the first _, and then scan back left
     copying over the x's with the input.  So the tape will look
     like
     A A B B C C D D ...
(v) Start executing both M1 and M2.  To do this, we need states in
    M for each possible combination of states in M1 and M2, similar
    to how we proved that DFA's are closed under intersection.
    
    Note that we also need to keep two different tape head positions,
    one for M1 and one for M2.  We do this in the same way as is done
    in the book for simulating a multi-tape TM - have a set of special
    tape symbols that would indicate where the tape head is.  If
    our tape alphabet is {a, b, c}, we use a new alphabet
    {a, b, c, a', b', c'}, and if the tape has contents
    abaabbc'aab, then this would mean that the tape head is at the c'
    location.

    To make it easier to keep track of both M1 and M2, we can create extra
    tape symbols for both machines.  So we can actually use an alphabet
    like {a, b, c, a1, b1, c1, a2, b2, c2}, and we would start the tape
    looking like
    a1 a2 b b c c a a b b ...
    to indicate the current location for both M1 and M2.  Part of the
    transitions for M will have to update the tape head location.  If
    the tape is as above and M1 has a transition (q1, a) -> (q2, b, R), then
    we want M's tape to become
    b a2 b1 b c c a a b b, and then we would handle M2's transition.