Simple question.
The following is the extract of a piece of grammar that I am trying to see whether it is ambiguous or not.
Y->b
Y->Z
Z->bW
W->d
W->ϵ
When I compute the first set of the grammar I stumble upon this irregularity for first of Y.
First(Y)= {b,First(Z)}
First of Z = b so I have the set First(Y)={b,b}.
What I want to know is that sufficient enough to prove that the grammar given this evidence is ambigious or not. Or should the set be First(Y) = {b}