Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multiplication and Module Turing Machine

I need help designing a turing machine that will compute the following f(x,y) = x*y mod 4. how to approach this problem in binary base where $x$ and $y$ have two bits?

like image 760
Juan Avatar asked Nov 07 '13 12:11

Juan


1 Answers

Could probably be slightly optimised, but it does the trick:

Assumption - input consists (solely) of two binary numbers (with leading 0, so 01 instead of 1 and 00 instead of 0), separated by a blank symbol (_). Result is a binary number with leading, representing x * y mod 4.

Transition table (state current_symbol new_symbol move_direction new_state):

0 0 0 r 0
0 1 1 r 0
0 _ _ r 1
1 0 0 r 1
1 1 1 r 1
1 _ x r 2
2 _ 0 r 3 
3 _ 0 l 4
4 0 0 l 4
4 x x l 5
5 0 0 l 5
5 1 1 l 5
5 x x l 5
5 _ _ l 6
6 1 0 r 7
6 0 0 l 16
7 0 0 r 7
7 1 1 r 7
7 _ _ r 7
7 x x l 8
8 0 0 l 9
8 1 1 r 10
9 0 0 l 5
9 1 1 r 14
10 x x r 10
10 0 0 r 11
10 1 1 r 11
11 0 1 l 12
11 1 0 l 18
12 0 0 l 12
12 1 1 l 12
12 x x l 13
13 0 0 l 9
13 1 1 l 9
14 0 0 r 14
14 1 1 r 14
14 x x r 15
15 0 1 r 5
15 1 0 r 5
16 0 _ r 19
16 1 0 r 17
17 0 1 r 7
18 0 1 l 12
18 1 0 l 12
19 0 _ r 19
19 1 _ r 19
19 _ _ r 19
19 x _ r halt

Rough state description:

  • 0 move to right of first number (going right)
  • 1 move to right of second number (and terminate - add x) -
  • 2 write first result zero
  • 3 write second result zero
  • 4 move to x (going left)
  • 5 move to right of first number (going left)
  • 6 decrement right number by one
  • 7 decremented - now copy number - move to left digit of right number
  • 8 read left digit of right number
  • 9 read right digit of right number
  • 10 right digit of right number was 1 - move to right of result to increment
  • 11 increment result
  • 12 move to x
  • 13 move to read right digit of right number
  • 14 move to left digit of result to increment
  • 15 increment right number (note - since it's mod 4, we're just flipping)
  • 16 when tried to decrement left number - right digit was 0 - check if 00?
  • 17 we've decremented left number by 2, now increment to total -1
  • 18 when incrementing result left digit was 0 - carryover
  • 19 cleanup
like image 154
decPL Avatar answered Oct 04 '22 20:10

decPL