Can someone enumerate in detail, the steps to find right quotient of languages, i.e. $L_1/L_2$. Using an example will be great.
2026-03-27 02:34:30.1774578870
finding right quotient of languages
8.7k Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
The right quotient of $L_1$ with $L_2$ is the set of all strings $x$ where you can pick some element $y$ from $L_2$ and append it to $x$ to get something from $L_1$. That is, $x$ is in the quotient if there is $y$ in $L_2$ for which $xy$ is in $L_1$.
Let's agree to write the quotient of $L_1$ by $L_2$ as $\def\Q{\operatorname{Quotient}}\def\Quot#1#2{{#1}/{#2}}\def\qq{\Quot{L_1}{L_2}}\qq$.
Here are some examples:
Say that $L_1 = \{\epsilon, \mathtt{a}, \mathtt{ab}, \mathtt{aba}, \mathtt{abab}, \ldots\}$ and $L_2 = \{\mathtt b, \mathtt{bb}, \mathtt{bbb}, \ldots\}$. Then $\qq$ is $ \{\mathtt a, \mathtt{aba}, \mathtt{ababa}, \ldots\}$.
In general, if $L_2$ contains $\epsilon$, then $\qq$ will contain $L_1$.
I hope this is some help.