logistic_guy
Senior Member
- Joined
- Apr 17, 2024
- Messages
- 1,538
here is the question
Find a phrase-structure grammar that generates each of these languages.
(a) The set of bit strings of the form 02n13n, where n is a nonnegative integer.
(b) The set of bit strings with twice as many 0s as 1s.
(c) The set of bit strings of the form w2, where w is a bit string.
my attemb
i'll start with (b) because i think it's easy
let me start with simple string 001
i think changinging the order is allowed so we've another string 100
i'm not sure if the zeros not stick together is a correct string like 010
now i've to change the digits with letters
A=0
B=1
if S the start state, then my string has the form AABS
i'm not sure about the case ABAS, so i'm not certain if A and B can be written in any sequence
so my production step P
S→AABS
if i'm allowed to change the order, then i've another production step
AAB→BAA
BAA→AAB
so my phrase-structure grammar
G={V,T,S,P}: set of all letters i use
V={0,1,A,B,S}: set of all alphabets i use
T={0,1}: set of all digits i use
S→AABS
AAB→BAA
BAA→AAB
A→0
B→1
is my solution and analize correct?
Find a phrase-structure grammar that generates each of these languages.
(a) The set of bit strings of the form 02n13n, where n is a nonnegative integer.
(b) The set of bit strings with twice as many 0s as 1s.
(c) The set of bit strings of the form w2, where w is a bit string.
my attemb
i'll start with (b) because i think it's easy
let me start with simple string 001
i think changinging the order is allowed so we've another string 100
i'm not sure if the zeros not stick together is a correct string like 010
now i've to change the digits with letters
A=0
B=1
if S the start state, then my string has the form AABS
i'm not sure about the case ABAS, so i'm not certain if A and B can be written in any sequence
so my production step P
S→AABS
if i'm allowed to change the order, then i've another production step
AAB→BAA
BAA→AAB
so my phrase-structure grammar
G={V,T,S,P}: set of all letters i use
V={0,1,A,B,S}: set of all alphabets i use
T={0,1}: set of all digits i use
S→AABS
AAB→BAA
BAA→AAB
A→0
B→1
is my solution and analize correct?

Last edited: