Skip to main content

Section 7.3 Tree Diagrams: Reading and Interpreting

This textbook uses tree diagrams (also called phrase structure trees or constituent trees) to represent sentence structure. Tree diagrams show how words group into phrases and phrases group into larger structures.

The Components of a Tree.

Nodes: Points in the tree, labeled with category symbols (S, NP, VP, N, V, etc.). Each node represents either a word or a phrase.
Branches: Lines connecting nodes, showing which elements belong together. Elements connected to the same higher node form a unit.
Dominance: A node dominates everything beneath it. The S node at the top dominates the entire sentence. An NP node dominates everything in that noun phrase.

Common Labels.

Label Meaning Examples
S Sentence Complete clause
NP Noun phrase the dog, she, my old friend
VP Verb phrase runs, ate the sandwich, is happy
PP Prepositional phrase in the house, with enthusiasm
ADJP Adjective phrase very tall, happy
ADVP Adverb phrase quickly, very slowly
N Noun dog, happiness, Sarah
V Verb run, is, consider
ADJ Adjective tall, blue, interesting
ADV Adverb quickly, never, there
DET Determiner the, a, my, this
PRON Pronoun she, it, they
PREP Preposition in, on, with, to
CONJ Conjunction and, but, or
AUX Auxiliary has, will, been, can

Reading a Simple Tree.

Example: β€œThe dog barked.”
Multi-level labeling table for "The dog barked"
Syntax tree for "The dog barked" showing NP with DET and N, and VP with V
[S [NP [DET The] [N dog]] [VP [V barked]]]
Reading from the top:
  1. The S (sentence) divides into NP and VP
  2. The NP contains DET (determiner) + N (noun): β€œthe dog”
  3. The VP contains just V (verb): β€œbarked”
  4. The words themselves appear at the bottom
The tree shows that β€œthe” and β€œdog” form a unit (the NP), and this unit is the subject of the verb β€œbarked”.

A More Complex Example.

Example: β€œThe young artist from Paris painted beautiful landscapes.”
Multi-level labeling table for "The young artist from Paris painted beautiful landscapes"
Syntax tree for "The young artist from Paris painted beautiful landscapes" showing complex NP with PP modifier and VP with object NP
[S [NP [DET The] [ADJP [ADJ young]] [N artist] [PP [PREP from] [NP [N Paris]]]] [VP [V painted] [NP [ADJP [ADJ beautiful]] [N landscapes]]]]
This tree shows:

Why Trees Show Hierarchy.

Notice that the tree is not just a flat list of words. It shows grouping. β€œThe young artist from Paris” is a unit; β€œbeautiful landscapes” is a unit. These units can be moved, replaced, and manipulated as wholes.
For instance, you can replace the entire subject NP with a pronoun:
You can move the entire object NP to the front for emphasis:
These operations work on constituentsβ€”groups that the tree identifies as units.