Practical Grammar 4: Difference between revisions
Line 143: | Line 143: | ||
* In the '''Declarations''' editor, change the start symbol to "S". | * In the '''Declarations''' editor, change the start symbol to "S". | ||
* Add the test sentence "Lilly | * Add the test sentence "Lilly broke the bottles". | ||
* Parse. | * Parse. | ||
* Inspect the result and interpret it. | * Inspect the result and interpret it. |
Revision as of 07:35, 1 April 2025
Verbs and VPs
Next, we want to associate verbs and VPs with reasonable f-structures. As with NPs, we do this in two steps:
a. We add appropriate features to the lexical entries of verbs, and
b. we add the correct annotation to the VP-rules, so that each node in the VP tree gets the desired f-structure.
Features of verbs
Let us look at the following sentences:
(1) She is happy.
(2) They are happy.
(3) He was happy.
Exercise 4.1
State which feature the constrast between (1) and (3) motivates. What are the feature's possible values?
Check your answer
The feature is TENSE and its possible values are pres, past, future.
Exercise 4.2
State which feature the constrast between (1) and (2) motivates. What are the feature's possible values?
Check your answer
The feature NUMBER (NUM), whose possible values are sg and pl.
Exercise 4.3
- Go to https://xlfg.labri.fr/ and log in.
Then you locate our workshop:
- Choose Workshops|All Workshops.
- Look for the workshop "Syntax 1" for the current semester.
- In the column "Action", click the button "Consult the workshop".
Now you find a project of the workshop:
- On the right side of the screen is the list of projects of our workshop.
- Look for "Grammar 3" and click on "Create your own version".
- Now click on "Edit your version".
- Add appropriate NUM features to all the nouns in the lexicon.
- Add appropriate TENSE and NUM features to all the verbs in the lexicon.
Annotating the rule VP -> V NP
Let us now turn to the rule that combines a V and an NP into a VP:
VP -> V NP;
In the previous unit, we formulated the following annotated c-structure rule for combining a D and an N into an NP:
1. NP -> D N 2. { 3. ↑=↓1; 4. ↑=↓2; 5. }
Reminder:
- ↑=↓1; in the rule above means that the NP and its first daugher share an f-structure.
- ↑=↓2; in the rule above means that the NP and its second daugher share an f-structure.
- ↑=↓1; and ↑=↓2; means that there is a single f-structure that the NP and its two daughers share.
- As a result if the feature values of D and N are compatible, then the f-structure of the NP will be the unification of the f-structures of D and N.
Exercise 4.4
- In Grammar 3, give the VP rule an annotation that requires the f-structure of the V to be the same as the f-structure of the VP.
- Annotate the two NP rules as well.
- Add
(1) broke the bottle and
(2) broke the bottles
to the test sentence list and mark them as grammatical.
- Parse.
- Inspect the f-structures of the two VPs.
Grammatical functions
The considerations above lead us to the following task:
Both V and NP should contribute to the f-structure of the VP, but the information in the f-structure of the VP that comes from V should not be unified with the information that comes from the NP.
Here is the solution. We change the annotation of the VP rule as follows:
1. VP -> V NP 2. { 3. ↑=↓1; 4. (↑ OBJ) =↓2; 5. }
- Do this in your grammar.
- Parse and inspect the f-structures of
(6) broke the bottle
(7) broke the bottles
Exercise 4.5
- Add the S rule back to the grammar.
- Annotate it as follows:
1. S -> NP VP 2. { 3. (↑ SUBJ) =↓1; 4. ↑=↓2; 5. }
- In the Declarations editor, change the start symbol to "S".
- Add the test sentence "Lilly broke the bottles".
- Parse.
- Inspect the result and interpret it.
Valence
Exercise 4.6
- Add the following test sentences to your grammar, telling the program that they are ungrammatical:
(1) *John [disappeared Fred].
(2) *Lilly [saw].
- Add the words in (1)-(2) to the lexicon, if necessary.
- Parse each sentence.
- Does the grammar make the right prediction?
- If not, formulate in grammatical terms what the problem seems to be.
The PRED feature
Valence is the representation of the knowledge speakers have about what other kinds of constituents a word needs to combine with. You will remember from traditional grammar the distinction between intransitive and transitive verbs. These are just names for those verbs, respectively, which do not need a direct object (i.e. the verb disappear) and those which do (like see).
In Lexical-Functional Grammar, the valence of a word is expressed by the value of its PRED(icate) feature:
(3)
John disappeared.
[PRED 'DISAPPEAR<SUBJ>']
(4)
Joe saw Fred.
[PRED 'SEE<SUBJ, OBJ>']
Exercise 4.7
- Open the project Grammer 4
- Add annotated grammar rules for S, VP, and NP to parse sentences (1)-(2). Do not change the lexicon yet!
- Add (1)-(4) as test sentences with their grammaticality status.
- Parse.
- Add the correct PRED feature to the lexical entries of the verbs.
- Parse.
Homework
Read the following pages in the textbook: section 2.2: p. 13-17 section 2.3: p. 22-25 section 2.3.2: everything
Note: You will probably not understand everything in these pages! Do your best on the basis of what we've done in class so far.