Skip to content

Instantly share code, notes, and snippets.

@huzaifaarain
Created October 23, 2019 10:13
Show Gist options
  • Save huzaifaarain/65ae4f13ec83f2233b40243b8659270b to your computer and use it in GitHub Desktop.
Save huzaifaarain/65ae4f13ec83f2233b40243b8659270b to your computer and use it in GitHub Desktop.
Chomsky Normal Form (CNF) Definition 1

Chomsky Normal Form

We introduce Chomsky Normal Form, which is used to answer questions about context-free languages.

Chomsky Normal Form

Chomsky Normal Form. A grammar where every production is either of the form A → BC or A → c (where A, B, C are arbitrary variables and c an arbitrary symbol). Example:

S → AS | a
A → SA | b

(If language contains ε, then we allow S → ε where S is start symbol, and forbid S on RHS.)

Why Chomsky Normal Form?

The key advantage is that in Chomsky Normal Form, every derivation of a string of n letters has exactly 2n − 1 steps. Thus: one can determine if a string is in the language by exhaustive search of all derivations.

Conversion

The conversion to Chomsky Normal Form has four main steps:

  1. Get rid of all ε productions.
  2. Get rid of all productions where RHS is one variable.
  3. Replace every production that is too long by shorter productions.
  4. Move all terminals to productions where RHS is one terminal.
  1. Eliminate ε Productions Determine the nullable variables (those that gen- erate ε) (algorithm given earlier). Go through all productions, and for each, omit every possible subset of nullable variables. For example, if P → AxB with both A and B nullable, add productions P → xB | Ax | x. After this, delete all productions with empty RHS.

  2. Eliminate Variable Unit Productions A unit production is where RHS has only one symbol. Consider production A → B. Then for every pro- duction B → α, add the production A → α. Re- peat until done (but don’t re-create a unit pro- duction already deleted).

  3. Replace Long Productions by Shorter Ones For example, if have production A → BCD, then replace it with A → BE and E → CD. (In theory this introduces many new variables, but one can re-use variables if careful.)

  4. Move Terminals to Unit Productions For every terminal on the right of a non-unit production, add a substitute variable. For example, replace production A → bC with productions A → BC and B → b.

Example

Consider the CFG:

S → aXbX
X → aY | bY | ε
Y → X | c

Step 1

The variable X is nullable; and so therefore is Y . After elimination of ε, we obtain:

S → aXbX | abX | aXb | ab
X → aY | bY | a | b
Y → X | c

Step 2

After elimination of the unit production Y → X, we obtain:

S → aXbX | abX | aXb | ab
X → aY | bY | a | b
Y → aY | bY | a | b | c

Steps 3 & 4

Now, break up the RHSs of S; and replace a by A, b by B and c by C wherever not units:

S → EF | AF | EB | AB
X → AY | BY | a | b
Y → AY | BY | a | b | c
E → AX
F → BX
A → a
B → b
C → c

Example 2

S → AbA
A → Aa | ε

After the first step:

S → AbA | bA | Ab | b
A → Aa | a

The second step does not apply. After the third step: S → T A | bA | Ab | b A → Aa | a T → Ab

And finally: S → T A | BA | AB | b A → AC | a T → AB B → b C → a

Summary

There are special forms for CFGs such as Chomsky Normal Form, where every production has the form A → BC or A → c. The algorithm to convert to this form involves (1) determining all nullable variables and getting rid of all ε-productions, (2) getting rid of all variable unit productions, (3) breaking up long productions, and (4) moving terminals to unit productions.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment