TM: Is the given string of the form uu?

  • Context: MHB 
  • Thread starter Thread starter mathmari
  • Start date Start date
  • Tags Tags
    Form String
Click For Summary
SUMMARY

The discussion focuses on constructing a composite Turing machine (TM) that determines if a given string \( w \) over the alphabet \( A = \{a, b\} \) can be expressed in the form \( uu \), where \( u \in \{a, b\}^+ \). The TM must identify the midpoint of the string and compare the two substrings. If the string has an odd length, the TM does not halt; if it halts, it checks for equality between the substrings and outputs "1" if they match, or "0" otherwise. The conversation emphasizes the need for careful symbol marking and management during the comparison process.

PREREQUISITES
  • Understanding of Turing machines and their operations
  • Familiarity with string manipulation and substring comparison
  • Knowledge of symbol marking techniques in computational theory
  • Basic concepts of formal languages and automata theory
NEXT STEPS
  • Study Turing machine design and implementation techniques
  • Learn about symbol marking strategies in Turing machines
  • Explore the concept of palindrome detection using Turing machines
  • Research debugging methods for Turing machine algorithms
USEFUL FOR

This discussion is beneficial for computer science students, theoretical computer scientists, and anyone interested in automata theory and Turing machine applications.

mathmari
Gold Member
MHB
Messages
4,984
Reaction score
7
Hey! :o

I am looking at the following exercise:
Construct a composite Turing machine $M$ that has a word $w$ over the alphabet $A = \{a, b\}$ tests to see if it's made up of two equal parts, that is, if $w = uu$ with $u \in {a, b}^+$.

In this case, at the end of the method a $1$ has to be after the input $w$ otherwise a $0$.

Furthermore, $M$ should stop on the space after the $1$ or $0$. At the beginning of
the calculation the write/read head is on the first symbol of $w$.

The idea of that TM is the following:
  • Finding the mid point of the string

    For that a head must be at the beginning of the string and a head at the end and each time we move the head one step to the right and one to the left rspectively.
    $$$$
  • After we have found the mid point we match the symbols of the two substrings

    For that we compare the two substrings.
Is that correct? (Wondering)
 
Technology news on Phys.org
mathmari said:
For that a head must be at the beginning of the string and a head at the end and each time we move the head one step to the right and one to the left rspectively.
Are you using a machine with two heads? A standard TM has only one head.

You could mark symbols one by one from the beginning and the end of the string to discover the middle. By marking a symbol I mean replacing it by another from which the original one can be recovered. So you mark the first symbol, move to the end, mark the last symbol, move left until you find a marked symbol, move right and mark a new symbol (second from the left), move right until you find a marked symbol, move left and mark a new symbol (second from the right), etc.
 
Evgeny.Makarov said:
Are you using a machine with two heads? A standard TM has only one head.

You could mark symbols one by one from the beginning and the end of the string to discover the middle. By marking a symbol I mean replacing it by another from which the original one can be recovered. So you mark the first symbol, move to the end, mark the last symbol, move left until you find a marked symbol, move right and mark a new symbol (second from the left), move right until you find a marked symbol, move left and mark a new symbol (second from the right), etc.

Ahh ok! So if at the end just one symbol is left that is not marked, we know that the lenth of the string is odd and so it cannot be in the form $uu$ and so it the TM doesn't halt.
If it halts, then we have to go to step 2 and we have to check if the substring before and after the midpoint is the same, correct? For that we delete the mark at the first part before the midpoint. Then we consider the first symbol and we go to the right till we find the first marked symbol and if they are the same we mark that one also or we replace it by a blank symbol. Then we repeat this procedure till we have reached the midpoint.
Is that correct? (Wondering)
 
Last edited by a moderator:
Yes, something like that. Of course, if you write an actual Turing machine, it would require a bit more care and perhaps debugging.
 
At the end we have to write "1" after the input if it is of the form uu, otherwise 0.

If we delete the symbols while we are checking if before after the midpoint we have the same substring, how do we know where we have to write "1" or "0" ?
Or instead of deleting them do we have to mark them otherwise?
 

Similar threads

Replies
1
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K
Replies
4
Views
3K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 12 ·
Replies
12
Views
2K
  • · Replies 32 ·
2
Replies
32
Views
2K
Replies
8
Views
1K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 3 ·
Replies
3
Views
2K