Samiksha Jaiswal (Editor)

Read only right moving Turing machines

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

Read-only right moving Turing machines are a particular type of Turing machine.

Definition

The definition based on a single infinite tape defined to be a 7-tuple

M = Q , Γ , b , Σ , δ , q 0 , F where

  • Q is a finite set of states
  • Γ is a finite set of the tape alphabet/symbols
  • b Γ is the blank symbol (the only symbol allowed to occur on the tape infinitely often at any step during the computation)
  • Σ , a subset of Γ not including b is the set of input symbols
  • δ : Q × Γ Q × Γ × { R } is a function called the transition function, R is a right movement (a right shift).
  • q 0 Q is the initial state
  • F Q is the set of final or accepting states
  • In the case of these types of Turing Machines, the only movement is to the right. There must exist at least one element of the set F (a HALT state) for the machine to accept a regular language (Not in including the empty language).

    An example Read Only right moving Turing machine

    Q = { A, B, C, HALT } Γ = { 0, 1 } b = 0 = "blank" Σ = , empty set δ = see state-table below q0 = A = initial state F = the one element set of final states {HALT}

    State table for 3 state, 2 symbol read only machine:

    References

    Read-only right moving Turing machines Wikipedia