Grammar Writing: Week 9
Jump to navigation
Jump to search
More Complement Types
So far, we have only encountered three kinds of verbs, intransitive, transitive, and ditransitive verbs:
- dances: COMPS <>
- likes: COMPS <NP>
- gives: COMPS <NP,NP>
But, there are many more kinds of verbs in English. Restricting ourselves to verbs with one complement, we find the following:
- likes: COMPS <NP>
- is: COMPS <AP>
- depends: COMPS <PP>
- believes: COMPS <sentence>
Task 1:
Make sure that your type hierarchy contains the parts of speech: noun, verb, adj, and prep. If it lacks one or more of these parts of speech, then add them.
Task 2:
Add the following words to the lexicon, giving each an empty COMPS list: she, her, happy.
Task 3:
Add the preposition on to the lexicon with COMPS <NP>.
Task 4:
If necessary, add lexical entries for the verbs likes, is, depends, and believes. Make sure that each verb has the COMPS list given above!
Question
We want to write rules that license all the VPs below. How many rules do we need for each VP and how many VP rules do we need altogether?
- likes her. Number of VP rules: __
- is happy. Number of VP rules: __
- depends on her. Number of VP rules: __
- believes she is happy. Number of VP rules: __
Total number of VP rules needed: __
Task 5
Write the VP rules needed to license the VPs above. For the VP depends on her, you will need to write a PP rule as well.
The greatest thing since the invention of sliced bread: the concept is the same as
Clearly, it is very tedious to write a different VP rule for every verb type that differs from the other verb types from the kind of complement that verb needs to combine with. But actually, things are much worse than this:
- Not only do verbs with one complement differ from each other in what kind of complement they want to combine with, but the verbs that take two complements do, too. When you count all the verb types, you end up with several dozens, which means that you will also need several dozens different VP rules!
- In addition, nouns, prepositions, and adjectives also can take complements and may differ from each other in the complements they demand. For these, you will need many different rules for NPs, PPs, and APs in addition to the VP rules.
- Altogether, you end up with a grammar of more than a hundred rules for phrases.
- SCREAM: THERE HAS TO BE A BETTER WAY TO HANDLE THIS PROBLEM!
Grammar 4 (Moving the COMPS Feature from Sign to Syntax)
type_hierarchy bot sign syntax:syntax phrase dtrs:list word list ne_list tl:list hd:bot e_list vform fin nonfin prp pfp base pos verb vform:vform noun case:case s prep syntax head:pos comps:list case acc nom .
Homework, due Monday, Dec 18th
Download the new desktoptrale version which contains a bug fix for the save issue encountered in class from this URL [1]
HOMEWORK
Load the previous type hierarchy and make the necessary modifications to your grammar (to the types, the lexicon and to the rule set) so as to recognize the following sentences:
- Donald likes her.
- Donald is funny.
- Donald depends on her.
- Donald believes the earth is flat.