Automatons posted by the community
A Turing Machine for subtraction of two unary numbers f(a-b) = c where a is always greater than b. E.g.: 11111-111 will give 11 on the tape.
Husain
A TM machine for checking the palindrome of the string of even length, containing only 'a' and 'b'. For example: aabbaa, babaabab
Husain
Add two numbers, represented by the count of zeros and separated by letter 'c'. For example, 2+3 will be 00c000 and result will be 5, that is, 00000.
Husain
Accepts strings with n number of 'a' followed by n number of 'b', using a turning machine.
Husain
DFA in which start and end symbol must be same Given: Input alphabet, Σ={a, b} Example strings: L = {ε, a, b, aa, bb, aba, bab, ababa, aabba, aaabbba,...}
Husain
Accepts strings over {a,b,c}, where, n number of 'a' is followed by one 'c' then 2n number of 'b'
Husain
Accepts strings over {a,b}, with n number of 'a' followed by n number of 'b'
Husain
Accepts strings satisfying the regular expression: a*(b* + c*)d* Any number of a followed by any number of b OR any number of c then followed by any number of d
Husain
Accepts lowercase strings those have atlease one occurance of 'cat'
Mohammad