Practical Grammar 9: Difference between revisions

From English Grammar
Jump to navigation Jump to search
 
(76 intermediate revisions by the same user not shown)
Line 2: Line 2:
<font size="3">
<font size="3">


== Functional Control ==
== When it rains, it pours ==


<!--
Note the following sharp contrasts:
* Go to <span class="newwin">[https://xlfg.labri.fr/ https://xlfg.labri.fr/]</span>.
 
* Create a new project and copy your previous grammar into your new project.  
(1) It rained.<br>
* On the basis of pages 102-108 in the textbook, make all the additions to the grammar that are necessary to yield the following o
(2) *Ingrid rained<br>
 
(3) There arose a storm<br>
(4) *Ingrid arose a storm
 
What these examples show is that there are places where only meaningless expressions like ''it'' and ''there'' can occur in English, but not meaningful expressions like ''Ingrid'' or ''the cat''. ''rain'' and similar words are called '''weather verbs''' and the construction in (3) has the name '''existential construction'''. This leads to the ''it'' of weather verbs being referred to as '''weather-it''' and the ''there'' in the existential construction as '''existential there'''. It is assumed that both expressions are meaningless and that the only subject th weather verbs permit is ''weather-it'' and the only subject that the existential construction tolerates is the ''existential there''.
 
Note: for both of these meaningsless pronouns, there are pronouns spelled identically that are meaningful and in fact that is no coincidence: the meaningless pronouns developed historically from the meaningful ones in environments where their meaning came to be more and more bleached. As a consequence, we need two different lexical entries with the spelling ''it'' and two different ones for ''there'' as well.
 
Altogether, with respect to their subjects, there are three different verb classes in English:
 
1. 'Normal' verbs: they require a meaningful subject. They make up almost all verbs. Examples: ''sing, dance, put, tell, insult''.
2. wheather-verbs: require wheather-it as their subject. Examples: ''rain, snowed, thunder''.
3. Existential verbs: demand that their subject be the existential ''there''. Examples: ''arise, be, arrive''.
 
=== Implementation ===
 
It is actually fairly easy to implement these ideas in XLFG. We need the following:
 
A. A way of marking the distinction between words that do and do not have meaning
B. To make sure that normal verbs only tolerate meaningful subjects.
C. To find a way of making weather-verbs require their subject to be the meaningless weather-it and that the existential verbs require their subject to be the existential-there.
 
==== A Meaningful vs. meaningless nouns ====
 
We already have a way to distinguish meaningful from meaningless nouns. Recall that we specify the meaning of a noun in its PRED value. To model a meaningless noun simply means to '''not''' give it a PRED value.
 
==== B Selection for meaningful vs. meaningless nouns ====
 
This is also straightforward: meaningful subjects are those which are assigned a semantic role in the verb's PRED value. Meaningless subjects are of course not assigned a semantic role. After all, since meaningless expressions do not refer to anything, there is nothing that could play that role in an event.
 
==== C Selection for particular forms as SUBJ====
 
This is a little more involved and requires two theoretical innovations.


(1) Ingrid tried to buy olives
1. FORM values for meaningless ''it'' and ''there''. The problem is that weather verbs ONLY tolerate the meaningless ''it'' as a subject and existential verbs ONLY the meaningless ''there''. But, how can these verbs tell these two meaningless items apart? The answer is that we need to give these two nouns functional information that the verb can selects. This is what the new FORM feature is for.
Lexical entries:
''it'' is marked ['''FORM:it'''] and
''there'' is marked ['''FORM:there'''].
Meaningful items are marked ['''FORM:none'''].


[[File:Ingrid-tried-to-buy-olives-cs.JPG | 500px]] &nbsp;&nbsp;&nbsp;
2. The completeness and coherence conditions assume that all the grammatical functions in a verb's PRED value are assigned a thematic role. For the subjects of weather and existential verbs, however, that is precisely not the case. Therefore, these subjects have to be listed outside the verb's PRED value. The PRED value of ''rain'', for instance, will then be: ['''PRED:'RAIN<>SUBJ'''']. Since ''rain'' has no meaningful dependent, the brackets after its meaning stay empty. The non-semantic subject is then listed after the brackets.
[[File:Ingrid-tried-to-buy-olives-fs.JPG | 500px]]
<br>


Make sure that your grammar makes the correct predictions for the sentence below:
With this, we have all the pieces in place for the next excercise.


(2) Ingrid buys olives <br>
<span style="color: blue>Exercise 11 </span>
(3) *Ingrid tried buys olives
-->


In this unit, we will extend the grammar to license sentences with verbs like 'try' and 'seems' which have interesting properties.  
1. Open Grammar Grammar 9<br>
2. For all the words in the sentences below, add lexical entries if that is necessary.<br>
3. Add these sentences as test items with their grammaticality status.<br>
4. Parse.


==''try (Control verb)''==
(5) Ingrid bought olives <br>
(6) *it bought olives <br>
(7) *there bought olives <br>


Notation:
(8) it rained<br>
(9) *Ingrid rained<br>
(10) *there rained<br>


In the exercises of this unit, we will have to implement '''Control''': this means that a GF of the higher verb and the SUBJ of the higher verb's XCOMP are identical.
(11) there arose a storm<br>
(12) *Ingrid arose a storm<br>
(13) *it arose a storm<br>


In XLFG, this is written as follows:
Note: in ''there arose a storm'', assume '''''there'' = SUBJ''' and '''''a storm'' = OBJ'''.


* (↑SUBJ) = (↑XCOMP SUBJ);  means: the SUBJ of the higher verb and the XCOMP's SUBJ are identical.
* (↑OBJ) = (↑XCOMP SUBJ);  means: the OBJ of the higher verb and the XCOMP's SUBJ are identical.


<span style="color: blue>Exercise 9.1 </span>
'''Important note''': the Wiki page currently does not allow me to upload pictures. Therefore, I have uploaded '''to Olat''' the file
* Go to <span class="newwin">[https://xlfg.labri.fr/ https://xlfg.labri.fr/]</span>.
Exercise-11-expected-output.pdf
* Extend your lastest grammar or make yourself a copy of Grammar5-.Ex8.2-solution.
which presents the structures that your grammar should produce for sentences (5)-(13).
* On the basis of pages 102-103 in the textbook, make all the additions to the grammar that are necessary to yield the following outputs for sentence (1):


(1) Ingrid tried to buy olives.


[[File:Ingrid-tried-to-buy-olives-cs.JPG | 500px]] &nbsp;&nbsp;&nbsp;
<!--
[[File:Ingrid-tried-to-buy-olives-fs.JPG | 500px]]
<br>


Implement the following grammatical assumptions:
== Existential sentences ==


* 'to' (the infinitive marker): assume that it is marked [IM:+].
English has a second expletive, namely the word ''there'' in sentences like (3):
* 'buy': [VFORM:INF]


Make sure that your grammar makes the correct predictions for the sentences below:
(3) There arose a storm<br>


(2) Ingrid buys olives <br>
These sentences are called existential sentences, because they express that an instance of the concept named by the postverbal NP exists or comes about. Sentence (3), for instance, says that a storm came into existence. This can also be expressed by "A storm arose", but (3) stresses the existential aspect more strongly.
(3) *Ingrid tried buys olives


==''seem(Raising verb)''==
Existential sentences require the '''expletive''' ''there'' as a SUBJ, because the existence is expressed by the verb ''arise'' and ''there'' contributes no meaning to the sentence. In this usage, ''there'' is a noun. In its usage as a locative element (which we are not dealing with here), it is an adverb.


Notation:
From what was said above, the constrast between (3) and (4) follows. Implement these two sentences:


The verb ''seem'' differes from the verb ''try'' in that ''seem'' does not assign a semantic role to its SUBJ. This is the first time we encounter such verbs. In XLFG, GFs that the predicate does not assign a role to are written between the closing > and the final apostrophe, as follows:
(4) *Ingrid arose a storm


* PRED:'X<...>Y'
Sentence (3) should get a single Argument Structure, namely the following one:


Meaning of the line above: the GFs listed in ... are assigned semantic roles by the predicate, but the grammatical function Y is not.
[[ File:Arose-a-storm-as.JPG  | 340px]]
-->


<span style="color: blue>Exercise 9.2 </span>
* Go to <span class="newwin">[https://xlfg.labri.fr/ https://xlfg.labri.fr/]</span>.
* Make sure that under 'Output Parameters' '''Extended Coherence test on Feature-Structures''' is set to '''Yes'''</span>.
* Create a new project and copy your previous grammar into your new project.


* On the basis of pages 104-108 in the textbook, make all the additions to the grammar that are necessary to yield the following outputs for sentence (4):


(4) Ingrid seemed to buy olives.
<!--
(10) *It tried to rain<br>
(11) *There tried to arise a storm<br>
(12) It seemed to rain<br>
(13) There seemed to arise a storm
-->


[[File:Ingrid-seemed-to-buy-olives-cs.JPG | 500px]] &nbsp;&nbsp;&nbsp;
[[File:Ingrid-seemed-to-buy-olives-fs.JPG | 500px]]
<font size="2">


<!--
<!--
Extended Coherence Condition [non-final version] (p. 138)
The data above together with the data from Unit 9 illustrate the following generalizations:
* All governable functions present in an f-structure must occur in the value of a local PRED feature.
 
* All functions that have a PRED value must have a theta role.
a. The verb ''buy'' tolerates as its SUBJ the word ''Ingrid'' but not the expletives ''it'' and ''there''.<br>
b. The verb ''rain'' tolerates as its SUBJ the expletive ''it'' but not the words ''Ingrid'' and the expletive ''there''.<br>
c. The verb ''arise'' in its existential use tolerates as its SUBJ the expletive ''there'' but not the words ''Ingrid'' and  the expletive ''it''.<br>
 
 
d. The verb ''buy'' can serve as the head of the complement of the control verb ''try'', but the verbs ''rain'' and ''arise'' cannot. In other words, you cannot embed a verb under ''try'' if that verb requires an expletive as its subject.<br>
e. All three verbs ''buy'', ''rain'' and ''arise'' can serve as the head of the complement of the raising verb ''seem''.
-->
-->
<font size="2">
<br>
<br>


<br>
<br>
<br>
<br>
<font face="Arial, Helvetica, sans-serif">
<font face="Arial, Helvetica, sans-serif">
<font size="3">
<font size="2">
<div align="center">
<div align="center">
   [[Practical_Grammar |'''Main page''']] [[Practical_Grammar_2|'''Week 2''']] [[Practical_Grammar_3|'''Week 3''']]  [[Practical_Grammar_4|'''Week 4''']]  [[Practical_Grammar_5|'''Week 5''']] [[Practical_Grammar_6|'''Week 6''']]  [[Practical_Grammar_7|'''Week 7''']] [[Practical_Grammar_8|'''Week 8''']] '''Week 9''' [[Practical_Grammar_Help|'''Help''']]
   [[Practical_Grammar |'''Main page''']] [[Practical_Grammar_2|'''Week 2''']] [[Practical_Grammar_3|'''Week 3''']]  [[Practical_Grammar_4|'''Week 4''']]  [[Practical_Grammar_5|'''Week 5''']] [[Practical_Grammar_6|'''Week 6''']]  [[Practical_Grammar_7|'''Week 7''']] [[Practical_Grammar_8|'''Week 8''']] [[Practical_Grammar_9|'''Week 9''']]  [[Practical_Grammar_10|'''Week 10''']]
</div>
<div align="center">
</div>
</div>
<!-- [[Practical_Grammar_10|'''Week 10''']]  [[Practical_Grammar_11|'''Week 11''']][[Practical_Grammar_12|'''Term Paper Project''']] -->

Latest revision as of 08:12, 14 July 2026

When it rains, it pours

Note the following sharp contrasts:

(1) It rained.
(2) *Ingrid rained

(3) There arose a storm
(4) *Ingrid arose a storm

What these examples show is that there are places where only meaningless expressions like it and there can occur in English, but not meaningful expressions like Ingrid or the cat. rain and similar words are called weather verbs and the construction in (3) has the name existential construction. This leads to the it of weather verbs being referred to as weather-it and the there in the existential construction as existential there. It is assumed that both expressions are meaningless and that the only subject th weather verbs permit is weather-it and the only subject that the existential construction tolerates is the existential there.

Note: for both of these meaningsless pronouns, there are pronouns spelled identically that are meaningful and in fact that is no coincidence: the meaningless pronouns developed historically from the meaningful ones in environments where their meaning came to be more and more bleached. As a consequence, we need two different lexical entries with the spelling it and two different ones for there as well.

Altogether, with respect to their subjects, there are three different verb classes in English:

1. 'Normal' verbs: they require a meaningful subject. They make up almost all verbs. Examples: sing, dance, put, tell, insult.
2. wheather-verbs: require wheather-it as their subject. Examples: rain, snowed, thunder.
3. Existential verbs: demand that their subject be the existential there. Examples: arise, be, arrive.

Implementation

It is actually fairly easy to implement these ideas in XLFG. We need the following:

A. A way of marking the distinction between words that do and do not have meaning
B. To make sure that normal verbs only tolerate meaningful subjects.
C. To find a way of making weather-verbs require their subject to be the meaningless weather-it and that the existential verbs require their subject to be the existential-there.

A Meaningful vs. meaningless nouns

We already have a way to distinguish meaningful from meaningless nouns. Recall that we specify the meaning of a noun in its PRED value. To model a meaningless noun simply means to not give it a PRED value.

B Selection for meaningful vs. meaningless nouns

This is also straightforward: meaningful subjects are those which are assigned a semantic role in the verb's PRED value. Meaningless subjects are of course not assigned a semantic role. After all, since meaningless expressions do not refer to anything, there is nothing that could play that role in an event.

C Selection for particular forms as SUBJ

This is a little more involved and requires two theoretical innovations.

1. FORM values for meaningless it and there. The problem is that weather verbs ONLY tolerate the meaningless it as a subject and existential verbs ONLY the meaningless there. But, how can these verbs tell these two meaningless items apart? The answer is that we need to give these two nouns functional information that the verb can selects. This is what the new FORM feature is for. 

Lexical entries:

it is marked [FORM:it] and 
there is marked [FORM:there]. 
Meaningful items are marked [FORM:none].
2. The completeness and coherence conditions assume that all the grammatical functions in a verb's PRED value are assigned a thematic role. For the subjects of weather and existential verbs, however, that is precisely not the case. Therefore, these subjects have to be listed outside the verb's PRED value. The PRED value of rain, for instance, will then be: [PRED:'RAIN<>SUBJ']. Since rain has no meaningful dependent, the brackets after its meaning stay empty. The non-semantic subject is then listed after the brackets.

With this, we have all the pieces in place for the next excercise.

Exercise 11

1. Open Grammar Grammar 9
2. For all the words in the sentences below, add lexical entries if that is necessary.
3. Add these sentences as test items with their grammaticality status.
4. Parse.

(5) Ingrid bought olives
(6) *it bought olives
(7) *there bought olives

(8) it rained
(9) *Ingrid rained
(10) *there rained

(11) there arose a storm
(12) *Ingrid arose a storm
(13) *it arose a storm

Note: in there arose a storm, assume there = SUBJ and a storm = OBJ.


Important note: the Wiki page currently does not allow me to upload pictures. Therefore, I have uploaded to Olat the file

Exercise-11-expected-output.pdf

which presents the structures that your grammar should produce for sentences (5)-(13).