in Theory of Computation
810 views
1 vote
1 vote
Given {L: every 'a' is followed by "bb"}

Design a DFA for LATE(L) and TRUNCATE(L)

LATE(L) is obtained by removing the first symbol from L and TRUNCATE(L) is obtained by removing the last symbol from L

Eg: If L is 00(0+1)*01

then LATE(L) will be 0(0+1)*01

and TRUNCATE(L) would be 00(0+1)*0
in Theory of Computation
810 views

1 Answer

0 votes
0 votes