Questions: Parsing Preferences and Computational Complexity
5 questions to test your understanding
Score: 0 / 5
Question 1 Multiple Choice
Consider two sentences: (A) 'The reporter who attacked the senator resigned.' (B) 'The reporter that the senator attacked resigned.' Both are grammatical. Research consistently shows sentence (A) is processed faster. What is the primary reason?
ASentence (A) uses 'who' while (B) uses 'that,' and 'who' is a simpler relative pronoun.
BSentence (A) is a subject relative clause where the dependency is shorter and more frequent; sentence (B) is an object relative clause with a longer dependency and an intervening noun phrase.
CSentence (B) is grammatically marked as passive voice, which always increases processing difficulty.
DSentence (A) follows late closure more strictly, while (B) violates it, causing a reanalysis penalty.
This is the classic subject-relative vs. object-relative asymmetry. In (A), 'reporter' is the subject of the relative clause ('reporter attacked senator') — short dependency, frequent structure. In (B), 'reporter' is the object of 'attacked' while 'senator' intervenes as subject — a longer dependency that must be held in working memory while more material is processed. The difficulty is driven by dependency distance and structural frequency, not the relative pronoun used or voice.
Question 2 Multiple Choice
Which principle best explains why a parser initially analyzes 'The horse raced past the barn fell' as meaning the horse raced past the barn, rather than recognizing it as a passive reduced relative clause?
AThe parser applies minimal attachment, preferring 'raced' as the main verb requiring no additional syntactic structure.
BThe parser applies late closure, attaching 'barn' to the most recently opened noun phrase.
CThe parser has insufficient working memory to track the subject 'horse' while processing 'raced.'
DThe parser expects passive voice to be marked overtly, and reduced relatives violate this expectation.
Minimal attachment drives the initial misanalysis: the parser attaches 'raced' as the main verb (the simplest structure, requiring the fewest syntactic nodes) rather than as the beginning of a reduced relative clause. The reduced relative clause analysis requires opening an additional S-node for the embedded clause, which minimal attachment avoids unless forced. When 'fell' arrives, it cannot be the main verb because 'raced' already filled that role — the parser must revise, producing the garden-path effect.
Question 3 True / False
Object relative clauses are harder to process than subject relative clauses because they are grammatically incorrect in standard English.
TTrue
FFalse
Answer: False
Both subject and object relative clauses are grammatically well-formed. The difficulty is a processing phenomenon, not a grammaticality judgment. Object relative clauses are harder because they create a longer dependency distance — the relativized element is in object position, separated from the head noun by an intervening subject NP — and are less frequent in natural language. The parser experiences measurable reading-time increases and higher error rates, but not because they violate grammar.
Question 4 True / False
Center-embedded sentences like 'The reporter that the senator that the lobbyist attacked accused ran' are difficult to process because maintaining multiple open dependencies simultaneously exhausts working memory.
TTrue
FFalse
Answer: True
Center-embedding stacks relative clauses inside each other, forcing the parser to hold multiple incomplete dependencies open simultaneously: 'reporter' waits for its verb ('ran'), 'senator' waits for its verb ('accused'), and 'lobbyist attacked' must be resolved — all before any of the main clause verbs arrive. Working memory capacity limits how many open dependencies can be maintained. Native speakers typically fail to process more than two levels of center-embedding, demonstrating that grammatical competence does not predict processing ease.
Question 5 Short Answer
Why does dependency distance predict parsing difficulty better than sentence length alone?
Think about your answer, then reveal below.
Model answer: Sentence length doesn't capture what actually strains the parsing system: the burden of holding an open, unresolved dependency in working memory while processing intervening material. A long sentence where each dependency is quickly resolved is easy; a short sentence where a single dependency spans many intervening words is hard. Dependency distance measures the actual memory load — how many words must be processed between an element and the word it depends on. Long-distance dependencies are hard because they force the parser to maintain incomplete structures in memory for longer.
This is why the subject/object relative clause asymmetry is such a clean demonstration: both sentence types have very similar lengths, but their dependency structures differ — subject relatives resolve the dependency quickly, object relatives stretch it across an intervening noun phrase. The processing cost maps onto the dependency structure, not the surface length. This also explains why scrambled or topicalized constructions in flexible word-order languages create processing costs without adding words.