Question: Given r = a * ( a + b ) over = { a , b } , what is L ( r ) ?

Given r=a*(a+b) over ={a,b}, what is L(r)?
Use the following recursive rules and include all steps.
L()=
L()={}
L(a)={a}, where a is a symbol that belongs to the alphabet.
L(r1+r2)=L(r1)L(r2)
L(r1r2)=L(r1)L(r2)
L[(r)]=L(r)
L(r*)=[L(r)]*
Given r = a * ( a + b ) over = { a , b } , what

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!