phrase structure grammar

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\displaystyle 0^{2n}1^{3n}, where n\displaystyle n is a nonnegative integer.
(b) The set of bit strings with twice as many 0\displaystyle 0s as 1\displaystyle 1s.
(c) The set of bit strings of the form w2\displaystyle w^2, where w\displaystyle 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\displaystyle 001
i think changinging the order is allowed so we've another string 100\displaystyle 100
i'm not sure if the zeros not stick together is a correct string like 010\displaystyle 010
now i've to change the digits with letters
A=0\displaystyle A = 0
B=1\displaystyle B = 1
if S\displaystyle S the start state, then my string has the form AABS\displaystyle AABS
i'm not sure about the case ABAS\displaystyle ABAS, so i'm not certain if A\displaystyle A and B\displaystyle B can be written in any sequence
so my production step P\displaystyle P
SAABS\displaystyle S \to AABS
if i'm allowed to change the order, then i've another production step
AABBAA\displaystyle AAB \to BAA
BAAAAB\displaystyle BAA \to AAB
so my phrase-structure grammar
G={V,T,S,P}\displaystyle G = \{V,T,S,P\}: set of all letters i use
V={0,1,A,B,S}\displaystyle V = \{0,1,A,B,S\}: set of all alphabets i use
T={0,1}\displaystyle T = \{0,1\}: set of all digits i use
SAABS\displaystyle S \to AABS
AABBAA\displaystyle AAB \to BAA
BAAAAB\displaystyle BAA \to AAB
A0\displaystyle A \to 0
B1\displaystyle B \to 1

is my solution and analize correct?🥺
 
Last edited:
Top