File size: 57,642 Bytes
6fa4bc9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 | {
"paper_id": "P87-1013",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T09:13:33.071604Z"
},
"title": "",
"authors": [
{
"first": "William",
"middle": [
"C"
],
"last": "Rounds",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "University of Michigan Xerox PARC",
"location": {}
},
"email": ""
},
{
"first": "Alexis",
"middle": [],
"last": "Manaster-Ramer",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Wayne State University",
"location": {}
},
"email": ""
},
{
"first": "Ibm",
"middle": [
"T J"
],
"last": "Watson",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Wayne State University",
"location": {}
},
"email": ""
},
{
"first": "Research",
"middle": [],
"last": "Center",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Wayne State University",
"location": {}
},
"email": ""
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "Kay's functional-unification grammar notation [5] is a way of expressing grammars which relies on very few primitive notions. The primary syntactic structure is the feature structure, which can be visualised as a directed graph with arcs labeled by attributes of a constituent, and the primary structure-building operation is unification. In this paper we propose a mathematical formulation of FUG, using logic to give a precise account of the strings and the structures defined by any grammar written in this notation.",
"pdf_parse": {
"paper_id": "P87-1013",
"_pdf_hash": "",
"abstract": [
{
"text": "Kay's functional-unification grammar notation [5] is a way of expressing grammars which relies on very few primitive notions. The primary syntactic structure is the feature structure, which can be visualised as a directed graph with arcs labeled by attributes of a constituent, and the primary structure-building operation is unification. In this paper we propose a mathematical formulation of FUG, using logic to give a precise account of the strings and the structures defined by any grammar written in this notation.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "Our basic approach to the problem of syntactic description is to use logical formulas to put conditions or constraints on ordering of constituents, ancestor and descendant relations, and feature attribute information in syntactic structures. The present version of our logic has predicates specifically designed for these purposes. A grammar can be considered as just a logical formula, and the structures satisfying the formula are the syntactic structures for the sentences of the language. This notion goes back to DCG's [0], but our formulation is quite different. In particular, it builds on the logic of Kasper and Rounds [3] , a logic intended specifically to describe feature structures.",
"cite_spans": [
{
"start": 628,
"end": 631,
"text": "[3]",
"ref_id": "BIBREF2"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "2"
},
{
"text": "The formulation has several new aspects. First, it introduces the oriented feature structure as the primary syntactic structure. One can think of these structures as parse trees superimposed on directed graphs, although the general definition allows much more flexibility. In fact, our notation does away with the parse tree altogether.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "2"
},
{
"text": "A second aspect of the notation is its treatment of word order. Our logic allows small grammars to define free-word order languages over large vocabularies in a way not possible with standard ID/LP rules. It is not clear whether or not this treatment of word order was intended by Kay, but the issue naturally arose during the process of making this model precise. (Joshi [1] has adopted much the same conventions in tree adjunct grammar.)",
"cite_spans": [
{
"start": 372,
"end": 375,
"text": "[1]",
"ref_id": "BIBREF0"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "2"
},
{
"text": "A third aspect of our treatment is the use of fixedpoint formulas to introduce recursion into grammars. This idea is implicit in DCG's, and has been made explicit in the logics CLFP and ILFP [9] . We give a simple way of expressing the semantics of these formulas which corresponds closely to the usual notion of grammatical derivations. There is an interesting use of type ~ariables to describe syntactic categories and/or constructions.",
"cite_spans": [
{
"start": 191,
"end": 194,
"text": "[9]",
"ref_id": "BIBREF8"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "2"
},
{
"text": "We illustrate the power of the notation by sketching how the constructions of relational grammar [7] can be formulated in the logic. To our knowledge, this is the first attempt to interpret the relational ideas in a fully mathematical framework. Although relational networks themselves have been precisely specified, there does not seem to be a precise statement of how relational derivations take place. We do not claim that our formalization is the one intended by Postal and Perlmutter, but we do claim that our notation shows clearly the relationship of relational to transformational grammars on one hand, and to lexical-functional grammars on the other.",
"cite_spans": [
{
"start": 97,
"end": 100,
"text": "[7]",
"ref_id": "BIBREF6"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "2"
},
{
"text": "Finally, we prove that the satisfiability problem for our logic is undecidable. This should perhaps be an expected result, because the proof relies on simulating Turing machine computations in a grammar, and follows the standard undecidability arguments. The satisfiability problem is not quite the same problem as the aniversal recognition problem, however, and with mild conditions on derivations similar to those proposed for LFG [2] , the latter problem should become decidable.",
"cite_spans": [
{
"start": 433,
"end": 436,
"text": "[2]",
"ref_id": "BIBREF1"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "2"
},
{
"text": "We must leave efficiency questions unexamined in this paper. The notation has not been implemented. We view this notation as a temporary one, and anticipate that many revisions and extensions will be necessary if it is to be implemented at all. Of course, FUG itself could be considered as an implementation, but we have added the word order relations to our logic, which are not explicit in FUG.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "2"
},
{
"text": "In this paper, which is not full because of space limitations, we will give definitions and examples in Section 3; then will sketch the relational application in Section 4, and will conclude with the undecidability result and some final remarks.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "2"
},
{
"text": "Oriented f-structures",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "3.1",
"sec_num": null
},
{
"text": "In this section we will describe the syntactic structures to which our logical formulas refer. The next subsection obi,e de~.,. ,C will give the logic itself. Our intent is to represent not only feature information, but also information about ordering of constituents in a single structure. We begin with the unordered version, which is the simple DG (directed graph) structure commonly used for non-disjunctive information. This is formalized as an acyclic finite automaton, in the manner of Kasper-Rounds [3] . Then we add two relations on nodes of the DG: ancestor and linear precedence. The key insight about these relations is that they are partial; nodes of the graph need not participate in either of the two relations. Pure feature information about a constituent need not participate in any ordering. This allows us to model the \"cset\" and \"pattern\" information of FUG, while allowing structure sharing in the usual DG representation of features.",
"cite_spans": [
{
"start": 507,
"end": 510,
"text": "[3]",
"ref_id": "BIBREF2"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "3.1",
"sec_num": null
},
{
"text": "We are basically interested in describing structures like that shown in Figure i .",
"cite_spans": [],
"ref_spans": [
{
"start": 72,
"end": 80,
"text": "Figure i",
"ref_id": "FIGREF0"
}
],
"eq_spans": [],
"section": "3.1",
"sec_num": null
},
{
"text": "A formalism appropriate for specifying such DG structures is that of finite automata theory. A labeled DG can be regarded as a transition graph for a partially specified deterministic finite automaton. We will thus use the ordinary 6 notation for the transition function of the automaton. Nodes of the graph correspond to states of the automaton, and the notation 6(q, z) implies that starting at state(node) q a transition path actually exists in the graph labeled by the sequence z, to the state 6(q, z).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "3.1",
"sec_num": null
},
{
"text": "Let L be a set of arc labels, and A be a set of atomic feature values. An ( A, L)-automaton is a tuple",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "3.1",
"sec_num": null
},
{
"text": "where Q is a finite set of states, q0 is the initial state, L is the set of labels above, 6 is a partial function from Q x L to Q, and r is a partial function from terminating states of A to A. (q is terminating if 6(q, l) is undefined for all l \u2022 L.) We require that ,4 be connected and acyclic. The map r specifies the atomic feature values at the final nodes of the DG. (Some of these nodes can have unspecified values, to be unified in later. This is why r is only partial.) Let F be the set of terminating states of.A, and let PC.A) be the set of full paths of,4, namely the set {z \u2022 L* : 6(q0, z) \u2022 F}.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": ".4 = (Q,6,qo, r)",
"sec_num": null
},
{
"text": "Now we add the constituent ordering information to the nodes of the transition graph. Let Z be the terminal vocabulary (the set of all possible words, morphemes, etc.) Now r can be a partial map from Q to E u A, with the requirement that if r(q) \u2022 A, then q \u2022 F. Next, let a and < be binary relations on Q, the ancestor and precedence relations. We require a to be reflexive, antisymmetric and transitive; and the relation < must be irrefiexive and transitive. There is no requirement that any two nodes must be related by one or the other of these relations. There is, however, a compatibility constraint between the two relations:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": ".4 = (Q,6,qo, r)",
"sec_num": null
},
{
"text": "Note: We have required that the precedence and dominance relations be transitive. This is not a necessary requirement, and is only for elegance in stating conditions like the compatibility constraint. A better formulation of precedence for computational purposes would be the \"immediate precedence\" relation, which says that one constituent precedes another, with no constituents intervening. There is no obstacle to having such a relation in the logic directly.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "v(q, r, 8, t) \u2022 Q : (q < ~) ^ (q a s) ^ (~ a t) = s < t.",
"sec_num": null
},
{
"text": "Example. Consider the structure in Figure 2 . This graph represents an oriented f-structure arising from a LFG-style grammar for the language {anb\"c n I n > I}.",
"cite_spans": [],
"ref_spans": [
{
"start": 35,
"end": 43,
"text": "Figure 2",
"ref_id": "FIGREF0"
}
],
"eq_spans": [],
"section": "v(q, r, 8, t) \u2022 Q : (q < ~) ^ (q a s) ^ (~ a t) = s < t.",
"sec_num": null
},
{
"text": "In this example, there is an underlying CFG given by the following productions:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "v(q, r, 8, t) \u2022 Q : (q < ~) ^ (q a s) ^ (~ a t) = s < t.",
"sec_num": null
},
{
"text": "S --TC T--aTb lab C--cClc.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "v(q, r, 8, t) \u2022 Q : (q < ~) ^ (q a s) ^ (~ a t) = s < t.",
"sec_num": null
},
{
"text": "The arcs labeled with numbers (1,2,3) are analogous to arcs in the derivation tree of this grammar. The root node is of \"category\" S, although we have not represented this information in the structure. The nodes at the ends of the arcs 1,2, and 3 are ordered left to right; in our logic this will be expressed by the formula I < 2 < 3. The other arcs, labeled by COUNT and #, are feature arcs used to enforce the counting information required by the language. It is a little difficult in the graph representation to indicate the node ordering information and the ancestor information, so this will wait until the next section. Incidentally, no claim is made for the linguistic naturalness of this example!",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "v(q, r, 8, t) \u2022 Q : (q < ~) ^ (q a s) ^ (~ a t) = s < t.",
"sec_num": null
},
{
"text": "We will introduce the logic by continuing the example of the previous section. Consider Figure 2 . Particular nodes of this structure will be referenced by the sequences of arc labels necessary to reach them from the root node. These sequences will be called paths. Thus the path 12223 leads to an occurrence of the terminal symbol b. Then a formula of the form, say, 12 COUNT -22 COUNT would indicate that these paths lead to the same node. This is also how we specify linear precedence: the last b precedes the first c, and this could be indicated by the formula 12223<22221.",
"cite_spans": [],
"ref_spans": [
{
"start": 88,
"end": 96,
"text": "Figure 2",
"ref_id": "FIGREF0"
}
],
"eq_spans": [],
"section": "A presentation of the logic",
"sec_num": "3.2"
},
{
"text": "It should already be clear that our formulas will describe oriented f-structures. We have just illustrated two kinds of atomic formula in the logic. Compound formulas will be formed using A (and), and V (or). Additionally, let I be an arc label. Then an f-structure will satisfy a formula of the form I : \u00a2, iff there is an/-transition from the root node to the root of a substructure satisfying ~b. What we have not explained yet is how the recursive information implicit in the CFG is expressed in our logic. To do this, we introduce type variables as elementary formulas of the logic. In the example, these are the \"category\" variables S, T, and C. The grammar is given as a system of equations (more properly, equivalences), relating these variables.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A presentation of the logic",
"sec_num": "3.2"
},
{
"text": "We can now present a logical formula which describes the language of the previous section. ",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A presentation of the logic",
"sec_num": "3.2"
},
{
"text": "(I < 2) A (2 < 3) A\u00a21~z) (l:aA2:b A (count # : end) A (I < 2) A ~b12),",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A presentation of the logic",
"sec_num": "3.2"
},
{
"text": "where \u00a2I~ is the formula (e a 1) A (e a 2), in which e is the path of length 0 referring to the initial node of the f-structure, and where the other ~ formulas are similarly defined. (The ~b formulas give the required dominance information.) In this example, the set L -(1,2, 3, #, count}, the set E -{a,b,c}, and the set A --{end}. Thus the atomic symbol \"end\" does not appear as part of any derived string. It is easy to see how the structure in Figure 2 satisfies this formula. The whole structure must satisfy the formula S, which is given recursively. Thus the substructure at the end of the 1 arc from the root must satisfy the clause for T, and so forth.",
"cite_spans": [],
"ref_spans": [
{
"start": 448,
"end": 456,
"text": "Figure 2",
"ref_id": "FIGREF0"
}
],
"eq_spans": [],
"section": "A presentation of the logic",
"sec_num": "3.2"
},
{
"text": "It should now be clearer why we consider our logic a logic for functional grammar. Consider the FUG description in Figure 3 .",
"cite_spans": [],
"ref_spans": [
{
"start": 115,
"end": 123,
"text": "Figure 3",
"ref_id": "FIGREF0"
}
],
"eq_spans": [],
"section": "A presentation of the logic",
"sec_num": "3.2"
},
{
"text": "According to [5, Notice that the category names can be represented as type variables, and that the categories NP and VERB are free type variables. Given an assignment of a set of f-structures to these type variables, the type ENT will become well-specified.",
"cite_spans": [
{
"start": 13,
"end": 16,
"text": "[5,",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "A presentation of the logic",
"sec_num": "3.2"
},
{
"text": "A few other points need to be made concerning this example. First, our formula does not have any ancestor information in it, so the dominance relations implicit in Kay's patterns axe not represented. Second, our word order conventions are not the same as Kay's. For example, in the pattern (subj pred...), it is required that the subject be the very first constituent in the sentence, and that nothing intervene between the subject and predicate. To model this we would need to add the \"immediately left of\" predicate, because our < predicate is transitive, and does not require this property. Next, Kay uses \"CAT\" arcs to represent category information, and considers \"NP\" to be an atomic value. It would be possible to do this in our logic as well, and this would perhaps not allow NPs to be unified with VERBs. However, the type variables would still be needed, because they are essential for specifying recursion. Finally, FUG has other devices for special purposes. One is the use of nonlocai paths, which are used at inner levels of description to refer to features of the \"root node\" of a DG. Our logic will not treat these, because in combination with recursion, the description of the semantics is quite complicated. The full version of the paper will have the complete semantics. ",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A presentation of the logic",
"sec_num": "3.2"
},
{
"text": "The formalism",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "3.3",
"sec_num": null
},
{
"text": "We summarize the formal syntax of our logic. We postulate a set A of atomic feature names, a set L of attribute labels, and a set E of terminal symbols (word entries in a lexicon.) The type variables come from a set TVAR = {X0,Xt .... }. The following list gives the syntactical constructions. All but the last four items are atomic formulas. Items (1) and (2) are the identically true and false formulas, respectively. Item (8) is the way we officially represent path equations. We could as well have used equations like z = V, where ~ and V E L', but our deftnition lets us assert the simultaneous equality of a finite number of paths without writing out all the pairwise path equations. Finally, the last item (12) is the way to express recursion. It will be explained in the next subsection. Notice, however, that the keyword where is part of the syntax.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Syntax",
"sec_num": "3.3.1"
},
{
"text": "The semantics is given with a standard Tarski definition based on the inductive structure of wffs. Formulae are satisfied by pairs (.4,p) , where ,4 is an oriented fstructure and p is a mapping from type variables to sets off-structures, called an environment. This is needed because free type variables can occur in formulas. Here are the official clauses in the semantics:",
"cite_spans": [],
"ref_spans": [
{
"start": 131,
"end": 137,
"text": "(.4,p)",
"ref_id": "FIGREF14"
}
],
"eq_spans": [],
"section": "Semantics",
"sec_num": "3.3.2"
},
{
"text": "NIL always; TOP never;",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Semantics",
"sec_num": "3.3.2"
},
{
"text": "x iff.4 e p(X); a iff 7\"(q0) = a, where q0 is the initial state is meant to suggest that the Xs can be replaced by the Cs in \u00a2. Of course, the Cs may contain free occurrences of certain X variables, so we need to do this same replacement process in the system of Cs beforehand. It turns out that the replacement process is the same as the process of carrying out grammatical derivations, but making replacements of nonterminal symbols all at once.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Semantics",
"sec_num": "3.3.2"
},
{
"text": "With this idea in mind, we can turn to the definition of replacement. Here is another advantage of our logicreplacement is nothing more than substitution of formulas for type variables. Thus, if a formula 0 has distinct free type ",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Semantics",
"sec_num": "3.3.2"
},
{
"text": "~o) = \u00a2,[X *--TOP : X E D]; \u00a2(k+1) .-elk) i = ~'i[X : X e O].",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Semantics",
"sec_num": "3.3.2"
},
{
"text": "These formulas, which can be calculated iteratively, correspond to the derivation process. Next, we consider the formula \u00a2. In most grammars, \u00a2 will just be a \"distinguished\" type variable, say S. The f-structures defined by the successive formulas for S correspond in a natural way to the derivation trees of the grammar underlying the example. Next, we need to relate the official semantics to the derivational semantics just explained. This is done with the help of the following lemmas. The proofs are omitted. Finally, we must explain the notion of the language defined by \u00a2, where \u00a2 is a logical formula. Suppose for simplicity that $ has no free type variables. Then the notion A ~ 0 makes sense, and we say that a string w E L(~b) iff for some subsumpfion.minirnal f-structure ,4, A ~ \u00a2, and w is compatible with ,4. The notion of subsumption is explained in [8] . Briefly, we have the following definition.",
"cite_spans": [
{
"start": 867,
"end": 870,
"text": "[8]",
"ref_id": "BIBREF7"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Semantics",
"sec_num": "3.3.2"
},
{
"text": "Let ,4 and B be two automata. We say ,4 _ B (.4 subsumes B; B extends `4) iff there is a homomorphisrn from `4 to B; that is, a map h : Q.4 --Qs such that (for all existing transitions) It can be shown that subsurnption is a partial order on isomorphism classes of automata (without orderings), and that for any formula 4} without recursion or ordering, that there are a finite number of subsumption-minimal automata satisfying it. We Consider as candidate structures for the language defined by a formula, only automata which are minimal in this sense. The reason we do this is to exclude f-structures which contain terminal symbols not mentioned in a formula. For example, the formula NIL is satisfied by any f-structure, but only the minimal one, the one-node automaton, should be the principal structure defined by this formula.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Semantics",
"sec_num": "3.3.2"
},
{
"text": "By compatibility we mean the following. In an fstructure `4, restrict the ordering < to the terminal symbois of,4. This ordering need not be total; it may in fact be empty. If there is an extension of this partial order on the terminal nodes to a total order such that the labeling symbols agree with the symbols labeling the positions of w, then w is compatible with A. This is our new way of dealing with free word order. Suppose that no precedence relations are specified in a formula. Then, minimal satisfying f-structures will have an empty < relation. This implies that any permutation of the terminal symbols in such a structure will be allowed. Many other ways of defining word order can also be expressed in this Logic, which enjoys an advantage over ID/LP rules in this respect.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Semantics",
"sec_num": "3.3.2"
},
{
"text": "Consider the relational analyses in Figures 4 and 5 . These analyses, taken from [7] , have much in common with functional analyses and also with transsformational ones. The present pair of networks illustrates a kind of raising construction common in the relational literature. In Figure 4 , there are arc labels P, I, and 2, representing \"predicate\", \"subject\", and \"object\" relations. The \"cl\" indicates that this analysis is at the first linguistic stratum, roughly like a transformational cycle. In Figure 5 , we learn that at the second stratum, the predicate (\"believed\") is the same as at stratum i, as is the subject. However, the object at level 2 is now \"John\", and the phrase \"John killed the farmer\" has become a \"chSmeur\" for level 2.",
"cite_spans": [
{
"start": 81,
"end": 84,
"text": "[7]",
"ref_id": "BIBREF6"
}
],
"ref_spans": [
{
"start": 36,
"end": 51,
"text": "Figures 4 and 5",
"ref_id": "FIGREF0"
},
{
"start": 282,
"end": 290,
"text": "Figure 4",
"ref_id": "FIGREF0"
},
{
"start": 504,
"end": 512,
"text": "Figure 5",
"ref_id": "FIGREF0"
}
],
"eq_spans": [],
"section": "Modeling Relational Grammar",
"sec_num": "4"
},
{
"text": "The relational network is almost itself a feature structure. To make it one, we employ the trick of introducing an arc labeled with l, standing for \"previous level\". The conditions relating the two levels can easily be stated as path equations, as in Figure 6 .",
"cite_spans": [],
"ref_spans": [
{
"start": 251,
"end": 259,
"text": "Figure 6",
"ref_id": "FIGREF0"
}
],
"eq_spans": [],
"section": "Modeling Relational Grammar",
"sec_num": "4"
},
{
"text": "The dotted lines in Figure 6 indicate that the nodes they connect are actually identical. We can now indicate precisely other information which might be specified in a relational grammar, such as the ordering information I < P < 2. This would apply to the \"top level\", which for Perlmutter and Postal would be the \"final level\", or surface level. A recursive specification would also become possible: thus This is obviously an incomplete grammar, but we think it possible to use this notation to give a complete specification of an RG and, perhaps at some stage, a computational test.",
"cite_spans": [],
"ref_spans": [
{
"start": 20,
"end": 28,
"text": "Figure 6",
"ref_id": "FIGREF0"
}
],
"eq_spans": [],
"section": "Modeling Relational Grammar",
"sec_num": "4"
},
{
"text": "In this section we show that the problem of sa(is/iability -given a formula, decide if there is an f-structure satisfying it -is undecidable. We do this by building a formula which describes the computations of a given Turing machine. In fact, we show how to speak about the computations of an automaton with one stack (a pushdown automaton.) This is done for convenience; although the halting problem for one-stack automata is decidable, it will be clear from the construction that the computation of a two-stack machine could be simulated as well. This model is equivalent to a Turing machine -one stack represents the tape contents to the left of the TM head, and the other, the tape contents to the right. We need not simulate moves which read input, because we imagine the TM started with blank tape. The halting problem for such machines is still undecidable.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Undecidability",
"sec_num": "5"
},
{
"text": "We make the following conventions about our PDA. Moves are of two kinds:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Undecidability",
"sec_num": "5"
},
{
"text": "\u2022 qi : push b; go to qj ;",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Undecidability",
"sec_num": "5"
},
{
"text": "\u2022 qi : pop stack; if a go to qj else go to qk.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Undecidability",
"sec_num": "5"
},
{
"text": "The machine has a two-character stack alphabet {a, b}. (In the push instruction, of course pushing \"a\" is allowed.) If the machine attempts to pop an empty stack, it cannot continue. There is one final state qf. The machine halts sucessfully in this and only this state. We reduce the halting problem for this machine to the satisfiability problem for our logic. The simulation proceeds as in the relational grammar example. Each configuration of the stack corresponds to a level in an RG derivation. Initially, the stack is empty. Thus we put Then we describe standard configurations:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Undecidability",
"sec_num": "5"
},
{
"text": "C0//F ::= ISIT V (p : CONF A (QO V... V QN)).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Undecidability",
"sec_num": "5"
},
{
"text": "Next, we show how configurations are updated, depending on the move rules. If q\u00a3 is push b; go to qj, then we write QI ::=nex~:qjAp:next:qiAs:a:noneAsb=ps.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Undecidability",
"sec_num": "5"
},
{
"text": "The last clause tells us that the current stack contents, after finding a %\" on top, is the same as the previous contents. The %: none\" clause guarantees that only a %\" is found on the DG representing the stack. The second clause enforces a consistent state transition from the previous configuration, and the first clause says what the next state should be.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Undecidability",
"sec_num": "5"
},
{
"text": "If q\u00a3 is pop stack; if a go to qj else go to qk, then we write the following. For the last configuration, we put I~F ::----C011F A p : nex~ : qf.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Undecidability",
"sec_num": "5"
},
{
"text": "We take QF as the \"distinguished predicate\" of our scheme.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Undecidability",
"sec_num": "5"
},
{
"text": "It should be clear that this formula, which is a big where-formula, is satisfiable if[\" the machine reaches state qf.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Undecidability",
"sec_num": "5"
},
{
"text": "It would be desirable to use the notation provided by our logic to state substantive principles of particulax linguistic theories. Consider, for example, Kashket's parser for Warlpiri [4] , which is based on GB theory. For languages like Warlpiri, we might be able to say that linear order is only explicitly represented at the morphemic level, and not at the phrase level. This would translate into a constraint on the kinds of logical formulas we could use to describe such languages: the < relation could only be used as a relation between nodes of the MORPHEME type. Given such a condition on formulas, it migh t then be possible to prove complexity results which were more positive than a general undecidability theorem. Similar remarks hold for theories like relational grammar, in which many such constraints have been studied. We hope that logical tools will provide a way to classify these empirically motivated conditions.",
"cite_spans": [
{
"start": 184,
"end": 187,
"text": "[4]",
"ref_id": "BIBREF3"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion",
"sec_num": "6"
}
],
"back_matter": [],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "The Convergence of Mildly Context-Sensitive Grammar Formalisms",
"authors": [
{
"first": "A",
"middle": [],
"last": "Joshi",
"suffix": ""
},
{
"first": "K",
"middle": [],
"last": "Vijay-Shanker",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Weir",
"suffix": ""
}
],
"year": null,
"venue": "The Processing of Linguistic Structure",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Joshi, A. , K. Vijay-Shanker, and D. Weir, The Con- vergence of Mildly Context-Sensitive Grammar For- malisms. To appear in T. Wasow and P. Sells, ed. \"The Processing of Linguistic Structure\", MIT Press.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "LFG: a Formal System for Grammatical Representation",
"authors": [
{
"first": "R",
"middle": [],
"last": "Kaplan",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Bresnan",
"suffix": ""
}
],
"year": 1982,
"venue": "",
"volume": "",
"issue": "",
"pages": "173--281",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Kaplan, R. and J. Bresnan, LFG: a Formal Sys- tem for Grammatical Representation, in Bresnan, ed. The Mental Representation of Grammatical Re- lations, MIT Press, Cambridge, 1982, 173-281.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "A Logical Semantics for Feature Structures",
"authors": [
{
"first": "R",
"middle": [],
"last": "Kasper",
"suffix": ""
},
{
"first": "W",
"middle": [],
"last": "Rounds",
"suffix": ""
}
],
"year": 1986,
"venue": "Proceedings of e4th A CL Annual Meeting",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Kasper, R. and W. Rounds, A Logical Semantics for Feature Structures, Proceedings of e4th A CL Annual Meeting, June 1986.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "Parsing a free word order language: Warlpiri",
"authors": [
{
"first": "M",
"middle": [],
"last": "Kashket",
"suffix": ""
}
],
"year": 1986,
"venue": "Proc. 24th Ann. Meeting of ACL",
"volume": "",
"issue": "",
"pages": "60--66",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Kashket, M. Parsing a free word order language: Warlpiri. Proc. 24th Ann. Meeting of ACL, 1986, 60-66.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Proceedings of the Fifth Annual Meeting of the Berkeley Linguistics Society",
"authors": [
{
"first": "M",
"middle": [],
"last": "Kay",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Grammar",
"suffix": ""
}
],
"year": 1979,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Kay, M. Functional Grammar. In Proceedings of the Fifth Annual Meeting of the Berkeley Linguistics So- ciety, Berkeley Linguistics Society, Berkeley, Califor- nia, February 17-19, 1979.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Definite Clause Grammars for Language Analysis: A Survey of the Formalism and a Comparison with Augmented Transition Networks",
"authors": [
{
"first": "F",
"middle": [
"C N"
],
"last": "Pereira",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Warren",
"suffix": ""
}
],
"year": 1980,
"venue": "Artificial Intelligence",
"volume": "13",
"issue": "",
"pages": "231--278",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Pereira, F.C.N., and D. Warren, Definite Clause Gram- mars for Language Analysis: A Survey of the Formal- ism and a Comparison with Augmented Transition Networks, Artificial Intelligence 13, (1980), 231-278.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Syntax and Semantics, voi. 18: Current Approaches to Syntaz",
"authors": [
{
"first": "D",
"middle": [
"M"
],
"last": "Perlmutter",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Grammar",
"suffix": ""
}
],
"year": 1980,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Perlmutter, D. M., Relational Grammar, in Syntax and Semantics, voi. 18: Current Approaches to Syn- taz, Academic Press, 1980.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "A Complete Logical Calculus for Record Structures Representing Linguistic Information",
"authors": [
{
"first": "W",
"middle": [
"C"
],
"last": "Rounds",
"suffix": ""
},
{
"first": "R",
"middle": [],
"last": "Kasper",
"suffix": ""
}
],
"year": 1986,
"venue": "IEEE Symposium on Logic in Computer Science",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Rounds, W. C. and R. Kasper. A Complete Logi- cal Calculus for Record Structures Representing Lin- guistic Information. IEEE Symposium on Logic in Computer Science, June, 1986.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "LFP: A Formalism for Linguistic Descriptions and an Analysis of its Complexity",
"authors": [
{
"first": "W",
"middle": [],
"last": "Rounds",
"suffix": ""
}
],
"year": null,
"venue": "Computational Linguistics",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Rounds, W., LFP: A Formalism for Linguistic De- scriptions and an Analysis of its Complexity, Com- putational Linguistics, to appear.",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"text": "A typical DG.",
"type_str": "figure",
"uris": null,
"num": null
},
"FIGREF1": {
"text": "An oriented f-structure for a4b4c 4.",
"type_str": "figure",
"uris": null,
"num": null
},
"FIGREF2": {
"text": "<2) A~b12 (l:cA2:CA(count #----2count) A\u00a21~) (i :CA(count ~ --end) A ~I) (I :aA2:TA3:bA(count #----2count) A",
"type_str": "figure",
"uris": null,
"num": null
},
"FIGREF3": {
"text": "page 149], this descril~tion specifies sentences, verbs, or noun phrases. Let us call such structures \"entities\", and give a partial translation of this description into our logic. Create the type variables ENT, S, VERB, and NP. Consider the recursive formula v VERB subj : NP A pred : VERB A(subj < pred) A((seomp : none) V (seomp : S A(pred <scomp)))",
"type_str": "figure",
"uris": null,
"num": null
},
"FIGREF5": {
"text": "Disjunctive specification in FUG.",
"type_str": "figure",
"uris": null,
"num": null
},
"FIGREF6": {
"text": ". a, in which a E A 5. o', in which o\" E E 6. z<v, in which z and v E L\" 7. x c~ V, in which z and V E L\" 8. [zt ..... x~], in which each z~ E L= 9./:$ 10. @^g, 11. ~v,~ 12. ~b where [Xt ::= ~bt;... X,~ ::= ~,]",
"type_str": "figure",
"uris": null,
"num": null
},
"FIGREF7": {
"text": "o\" E ~-, iff r(q0) = o'; v < w iff 6(q0, v) < 6(qo, w); v a w iff 6(qo, v) a ~(qo, w); [=~ ..... =.] iffVi,j : 6(q0,zl) = ~(qo,xj); 9. (.4,p) ~ l : ~ iff (.4/l,p) ~ ~, where .4/1 is the automaton .4 started at 6(qo, l); 10. (A, p) ~ ~ ^ ~ iff (A, p) ~ ~ and (A, p) ~ ~; 11. (.4,p) ~ ~ V ~b similarly; 12. (.4,p) ~ ~b where [Xt ::= Ot;...X, ::= 0n] iff for some k, (.4, p(~)) ~ ~b, where p(k) is defined inductively as follows: \u2022 p(\u00b0)(xo = 0; \u2022 p(k+~)(Xd = {B I (~,p(~)) [= ,~,}, and where p(k)(X) = p(X) if X # Xi for any i.We need to explain the semantics of recursion. Our semantics has two presentations. The above definition is shorter to state, hut it is not as intuitive as a syntactic, operational definition. In fact, our notation ~b where [Xt ::= ~bl ..... Xn ::-~bn]",
"type_str": "figure",
"uris": null,
"num": null
},
"FIGREF8": {
"text": "variables in the set D = {Xt ..... An}, and Ct,..-, \u00a2, are formulas, then the notation denotes the simultaneous replacement of any free occurrences of the Xj in 0 with the formula Cj, taking care to avoid variable clashes in the usual way (ordinarily this will not be a problem.) Now consider the formula \u00a2 where [Xt ::= Ct;.-.X, ::= \u00a2,].The semantics of this can be explained as follows. Let D = {XI ..... X,~}, and for each k _> 0 define a set of formulas {\u00a2~k) [ I _< i _< n}. This is done inductively on k:",
"type_str": "figure",
"uris": null,
"num": null
},
"FIGREF9": {
"text": "If (`4, p) is a pair consisting of an automaton and an environment, then we define (`4, p) ~ \u00a2 where [Xt ::= \u00a2i;...X,t ::= \u00a2,] iff for some k, (.4, p) ~ \u00a2[X, ,-elk): X, E D]. Example. Consider the formula (derived from a regular grammar) aA2 : S) V(I :hA2 :T) Vc (I :bA2 : S) V(I :aA2 : T) Vd. Then, using the above substitutions, and simplifying according to the laws of Kasper-Rounds, we have CH) = (1:aA2:c) V(1:bA2:d)Vc; \u00a2(~) = (1:bA2:c) V(1:aA2:d)Vd; \u00a2(2) = I:aA2:(I:aA2:c) V(I:bA2:d)Vc) V l:bA2:((l:bA2:c) V(l:aA2:d)Vd)VC.",
"type_str": "figure",
"uris": null,
"num": null
},
"FIGREF10": {
"text": "`4,p) ~ \u00a2~) ~ (`4, p(k)) ~ \u00a2i. Lemma 2 (`4,p) ~ 0[Xj --\u00a2./ : X./ E D] iff(`4,p') O, where p\u00b0(Xi) = {B ] (B,p) ~ \u00a2i}, if Xi E D, and otherwise is p(X).",
"type_str": "figure",
"uris": null,
"num": null
},
"FIGREF11": {
"text": "1. h(6.~(q, l)) = 6B(h(q), l);2. r(h(q)) = r(q) for all q such that r(q) E A;3. h(qoa) = qo~.",
"type_str": "figure",
"uris": null,
"num": null
},
"FIGREF13": {
"text": "pointer to top of stack next ---value of next state p ---pointer to previous stack configuration Type variables: CONF --structure represents a machine configuration INIT0 FINAL --confi~trations at start and finish QO ..... QN: property of being in one of these states",
"type_str": "figure",
"uris": null,
"num": null
},
"FIGREF14": {
"text": "Network for The woman believed that John killed the farmer.",
"type_str": "figure",
"uris": null,
"num": null
},
"FIGREF15": {
"text": "Network for The woman believed John to have killed the farmer.",
"type_str": "figure",
"uris": null,
"num": null
},
"FIGREF16": {
"text": "Representing Figure 5 as an f-structure. INIT ::= s : (b : none A a : none) A nerl; : q0.",
"type_str": "figure",
"uris": null,
"num": null
}
}
}
} |