show/hide this revision's text 2 updated grammar

Say you've got a toy grammar, like: (updated so the output looks more natural)

S -> ${NP} ${VP} | either ${S} or and ${S} | if ${S} then {S}, after which ${S}

NP -> the ${N} | the ${A} ${N} | the ${A} ${A} ${N}

VP -> ${V} ${NP}

N -> dog | fish | bird | wizard

V -> kicks | meets | marries

A -> red | striped | spotted

e.g., "the dog kicks the red wizard", "either the bird meets the spotted fish or the wizard marries the striped dog"

How can you produce a sentence from this grammar according to the constraint that it must contain a total of n Vs + As + Ns. Given an integer the sentence must contain that many terminals. (note of course in this grammar the minimum possible n is 3).

show/hide this revision's text 1

Produce a sentence from a grammar with a given number of terminals

Say you've got a toy grammar, like:

S -> ${NP} ${VP} | either ${S} or ${S} | if ${S} then ${S}

NP -> the ${N} | the ${A} ${N} | the ${A} ${A} ${N}

VP -> ${V} ${NP}

N -> dog | fish | bird | wizard

V -> kicks | meets | marries

A -> red | striped | spotted

e.g., "the dog kicks the red wizard", "either the bird meets the spotted fish or the wizard marries the striped dog"

How can you produce a sentence from this grammar according to the constraint that it must contain a total of n Vs + As + Ns. Given an integer the sentence must contain that many terminals. (note of course in this grammar the minimum possible n is 3).