2

Let $L_{1}$ and $L_{2}$ be 2 languages over the same alphabet $\Sigma$.

$$A(L_1,L_2)=\{x\in \Sigma^*|\exists y,z\in L_2\text{ such that } yxz\in L_1\}$$

Assume that $L_{1}$ is regular and $L_{2}$ is context-free. The language $A(L_{1},L_{2})$:

  1. is always a regular language
  2. is always not a regular language
  3. can sometimes be a regular language
  4. cannot be context free

They say that the correct answer is 1.

Luke Mathieson
  • 18,125
  • 4
  • 55
  • 86
Robert777
  • 747
  • 5
  • 15

1 Answers1

2

Hint: Take a DFA for $L_1$. Check which states are reachable from the initial state via a word in $L_2$. Check from which states a final state can be reached via a word in $L_2$.

Yuval Filmus
  • 276,994
  • 27
  • 311
  • 503