Syntax 2 (16-Feb-2004)

Structural Ambiguity

Lexical ambiguity can occur when a phrase contains a homonym, that is a word which has multiple meanings, as in "the mechanic picked up a nut".

Structural ambiguity occurs when a given phrase can be parsed in more than one way. For example "Mary seemed very keen on the boat" could be be taken to mean either:

  1. Mary was enthusiastic about the boat
  2. Mary was very keen when she was on the boat
In either case, the words in the sentence are exactly the same, but the phrase structure tree for the sentence will look different depending on which meaning is described. In the case of (a), we would have:
               S 
               |
	   +-------+
          NP       VP 
         /         |
        /       +------+
       N        V      AP
       .        .      |
       .        .      +----+--------+
       .        .     Adv  Adj	     PP
       .        .      .    .        |
       .        .      .    .	  +------+
       .        .      .    .	  P     NP
       .        .      .    .     .      |
       .        .      .    .     .   +----+
       .        .      .    .     .  Det   N
       .        .      .    .     .   .    .
      Mary   seemed   very keen  on  the  boat 
Significantly here, the verb phrase with "seemed" as its head has as its complement the adjective phrase "very keen on the boat". I.e. looking at the granddaughters of S we have "Mary", "seemed", and "very keen on the boat".

In the phrase structure diagram representing the second alternative:

               S 
               |
	   +-------+
          NP       VP 
         /         |
        /       +------+-------------+
       N        V      AP            PP
       .        .      |             |
       .        .      +----+     +------+   
       .        .     Adv  Adj	  P     NP
       .        .      .    .     .      |
       .        .      .    .	  .   +----+
       .        .      .    .	  .  Det   N
       .        .      .    .     .   .    .
      Mary   seemed   very keen  on  the  boat 

The PP "on the boat" has moved up the tree to become a daughter of the VP, rather than of the AP. So the granddaughters of the S are now "Mary", "seemed", "very keen", and "on the boat".

Subject/Object Relations

While the terms subject and object have semantic definitions that may be taught in English lessons, it is more helpful to regard them as structural concepts, which occupy certain positions in a phrase structure tree: There are tests that can be made for "subject-hood": An object generally complements a verb in a VP. Transforming a sentence from active to passive will swap the subject and object: Such transformations are said to alter the surface structure (i.e. form) of the sentence, leaving the deep structure (meaning) unchanged.

Why is it important to be able to identify subject/object?

Some reasons:

Some Phrase Structure Rules

The following are culled from F+R. The notation "->" means "can consist of":
  1. S -> NP Aux VP
    A Sentence can consist of a noun phrase followed by an auxiliary followed by a verb phrase. The auxiliary may be inferred from the verb inflection, e.g. "the boy slept" has no explicit auxiliary, but from the tense of the verb we know that it is "past"
  2. NP -> Det N (PP)
    A noun phrase can consist of a determiner, followed by a noun, followed by an optional preposition phrase. E.g.
    • the man (Det N)
    • the man in the moon (Det N PP)
  3. VP -> V (NP) (PP)
    A Verb Phrase can consist of a Verb followed by an optional Noun Phrase then an optional Prepositional Phrase. E.g.
    • the boy slept (V)
    • the boy ate some pizza (V NP)
    • the boy hit the nail with the hammer (V NP PP)
    • the boy fell off the wall (V PP)
  4. PP -> P NP
    A preposition phrase can consist of a preposition followed by a noun phrase
  5. AP -> Adj (PP)
    An adjectival phrase can consist of an adjective followed by an optional preposition phrase
  6. NP -> (Det) (AP) N (PP)
    Refines rule 2, the Determiner is optional. E.g.
    • men (N)
    • yellow things in the fridge (AP N PP)
  7. VP -> V (NP) (PP) (Adv)
    Refines rule 3, an adverb may be added
  8. S' -> Comp S
    A subordinate clause can consist of a COMPLEMENTISER (a word that can introduce an embedded sentence, turning it into a COMPLEMENT, e.g. that, if, whether) and a sentence. Examples:
    • I thought that you were going to school
    • He wondered if it was raining
    • I told you that he thought that you had finished your homework
Since many of the above definitions are recursive, phrases and sentences can be (theoretically) be constructed that are infinitely long.

Useful book readings for this lecture:


Sounds, Grammar and Meaning page