In the manner of 2 + 2 telling me to add two and two together, what is this trying to say:
I'm not asking for an answer (I assume it's some sort of equation), just a starting place. Thanks a million.
In the manner of 2 + 2 telling me to add two and two together, what is this trying to say:
I'm not asking for an answer (I assume it's some sort of equation), just a starting place. Thanks a million.
Copyright © 2021 JogjaFile Inc.

$L_1$ is a set of strings; such a set is called a “language”, hence the letter $L$. (A string is a finite sequence of symbols. “Symbol” is undefined. Here you should understand that whatever a symbol is,
a,b, andcare examples.)The notation $\mathtt a^k\mathtt b^m\mathtt c^n$ means a string that has $k$ instances of
a, followed by $m$ instances ofb, followed by $n$ instances ofc. For example, $\mathtt a^3\mathtt b^1\mathtt c^8$ is a shorthand for the stringaaabcccccccc.The notation $$L_1 = \{\mathtt a^k\mathtt b^m\mathtt c^n\mid k+m+n\ge 2\}$$ means that $L_1$ is the set of all strings that have some
a's followed by someb's followed by somecs, where the number ofa's plus the number ofb's plus the number ofc's is at least $2$.For example, $L_1$ includes the string
aabbbcbecause it can be understood as $\mathtt a^2\mathtt b^3\mathtt c^1$ and $2+3+1\ge 2$. But the stringbbaabcis not in $L_1$ because it doesn't have theas before thebs before thecs.Note that $k,m,$ and $n$ could be zero. In particular,
bbis in $L_1$ because it is $\mathtt a^0\mathtt b^2\mathtt c^0$ and $0+2+0\ge 2$.