Created
December 22, 2015 16:05
-
-
Save anthonycrumley/748777bdbc3e8a276f16 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
###################################################################### | |
# Describe a Turing Machine that decides the language | |
# {w | w has an equal number of 0s and 1} | |
###################################################################### | |
# Enter values below for | |
# q_0 : the initial state (an int) | |
# q_a : the accept state (an int) | |
# q_r : the reject state (an int) | |
# delta : the transition function expressed as a dictionary | |
# with keys (state, symbol) and values (state, symbol, 'L' or 'R') | |
# Use the 'b' character for the blank symbol. | |
# | |
# For example, you might express the TM that appends a 1 as follows: | |
# | |
# q_0 = 0 | |
# q_a = 1 | |
# q_r = 2 | |
# delta = {} | |
# delta[(0,'0')] = (0,'0','R') | |
# delta[(0,'1')] = (0,'1','R') | |
# delta[(0,'b')] = (1,'1','R') | |
###################################################################### | |
test_tape = ['0','0','1', '0', '1', '1'] | |
#Specify your turing machine here | |
q_0 = 0 | |
q_a = 4 | |
q_r = 5 | |
delta = {} | |
delta[(0,'b')] = (q_a, 'b', 'L') | |
delta[(0,'0')] = (1, 'b', 'R') | |
delta[(0,'1')] = (2, 'b', 'R') | |
delta[(0,'x')] = (0, 'x', 'R') | |
delta[(1,'b')] = (q_r, 'b', 'R') | |
delta[(1,'0')] = (1, '0', 'R') | |
delta[(1,'1')] = (3, 'x', 'L') | |
delta[(1,'x')] = (1, 'x', 'R') | |
delta[(2,'b')] = (q_r, 'b', 'R') | |
delta[(2,'0')] = (3, 'x', 'L') | |
delta[(2,'1')] = (2, '1', 'R') | |
delta[(2,'x')] = (2, 'x', 'R') | |
delta[(3,'b')] = (0, 'x', 'R') | |
delta[(3,'0')] = (3, '0', 'L') | |
delta[(3,'1')] = (3, '1', 'L') | |
delta[(3,'x')] = (3, 'x', 'L') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment