A grammar $G=(V, \Sigma, R,S)$ is in chomsky normal form if every production rule $\in R$ has one of the following shapes:
<aside> 🆕 The start variable $S$ never appears on the right side.
</aside>
We claim:
<aside> 🤔 Every context free language can be generated by a context free grammar in chomsky normal form.
</aside>
We will demonstrate a general way to convert any grammar into CNF.
Consider the grammar $G=(V, \Sigma, R,S)$, not yet in CNF.
And somehow we must
We add, for every rule with an instance of $\alpha A\beta$ on the RHS, another rule $\alpha \epsilon \beta = \alpha \beta$. we can then get rid of $A \rightarrow \epsilon$ . Rather intuitive.
$(\alpha, \beta \in (V \cup \Sigma_\epsilon)^*)$
Similar to 1. Cut out the middle man. replace all instances of $B$ in any $A \rightarrow B$ with the RHS of the $B$ production rule. Trivial.