Lexical Functional Grammar (LFG) is a formal theory of syntax that treats grammatical structure as a relationship between two distinct, but interlinked, levels of representation: cstructure (constituent structure) and fstructure (functional structure). First proposed by JoanB.Baker in the mid1970s, LFG was designed to capture the intuition that the way words combine into phrases (the tree view) can be kept separate from the way grammatical functions such as subject, object, and tense are assigned. This separation allows the theory to model a wide range of linguistic phenomena while staying computationally tractable.
cstructure is a traditional phrasestructure tree built from a set of rewrite rules (similar to those used in ContextFree Grammars). It records the hierarchical arrangement of words into phrases such as NP, VP, PP, etc. The rules are lexicalized: each rule is associated with a lexical item that provides the grammatical information needed to build the tree.
fstructure is a set of attributevalue pairs that represent syntactic functions and their grammatical features. Typical attributes include SUBJ, OBJ, COMP, TENSE, NUM, and CASE. An fstructure can be visualized as a flat, unordered feature matrix that abstracts away from the hierarchical ordering of constituents.
The correspondence principle links cstructure nodes to their corresponding functional information in fstructure. This is achieved through functional annotations attached to the rewrite rules. For example, a VP node may be annotated ( SUBJ) = ( NP), meaning that the subject function of the clause (the represents the current node) is identified with the NP that is its sister in the cstructure.
Each lexical item contributes a set of lexical features that define how the item participates in both structures. A verb like eat might have an entry such as:
This entry tells the parser that eat is a predicate, expects a subject NP, and optionally an object NP. The lexical entry is the primary source of grammatical information; the rewrite rules merely provide the scaffolding.
( COMP* OBJ) = X means the object of the clause that is embedded somewhere inside the complement field.SUBJ must be present for finite clauses, or CASE must agree with NUM) are expressed as independent statements on the fstructure, not as part of the treebuilding process.While LFG shares the constituency approach of Government & Binding (GB) and the featurebased orientation of HeadDriven Phrase Structure Grammar (HPSG), there are notable differences:
The declarative nature of LFG makes it well suited for computational parsing. Implementations such as the Freeling suite and the pyLFG library can generate both the cstructure tree and the accompanying fstructure, facilitating downstream tasks like semantic role labeling and machine translation.
Because fstructures are flat and functionoriented, LFG provides a natural framework for modeling incremental sentence processing. Empirical studies have shown that speakers are sensitive to the functional constraints expressed in fstructure (e.g., case agreement) even when the constituent hierarchy is not yet fully built.
Researchers have used LFG to capture the staged acquisition of grammatical functions in children. The theory predicts that functional categories (subject, object) can be learned before children master complex phrasestructure rules, a pattern observed in crosslinguistic acquisition data.
Lexical Functional Grammar offers a compelling blend of hierarchical constituency and functional abstraction. Its core ideascstructure, fstructure, and the correspondence principleprovide a clear, modular architecture that captures a wide spectrum of syntactic facts while staying amenable to computational implementation. Ongoing work continues to refine its handling of longdistance dependencies and to expand its coverage across typologically diverse languages. Whether for theoretical investigation, languagetechnology development, or psycholinguistic modeling, LFG remains a valuable and influential approach within modern linguistic theory.
```
