Morphological Parsing
There's often not enough information at the surface level to correctly determine the morphemes of a word. For example, compare a -s type plural noun to an -es type plural.
Example: Consider these words
| Singular | Plural |
|---|---|
| dog | dogs |
| kite | kites |
| box | boxes |
| matrix | matrices |
Comparison between surface and lexical level information.
-s word
| d | o | g | s |
| d | o | g | +N | +Pl |
| b | o | x | e | s |
| b | o | x | +N | +Pl |
Irregular -es word
| m | a | t | r | i | c | e | s |
| m | a | t | r | i | x | +N | +Pl |
Addition of intermediate level representation.
| b | o | x | e | s |
| b | o | x | ^ | s | # |
| b | o | x | +N | +Pl |