logo Hurry, Grab up to 30% discount on the entire course
Order Now logo

Ask This Question To Be Solved By Our ExpertsGet A+ Grade Solution Guaranteed

expert
Anuj MittalMathematics
(/5)

589 Answers

Hire Me
expert
Himani KhatterStatistics
(/5)

841 Answers

Hire Me
expert
Mitchie SimaCriminology
(5/5)

938 Answers

Hire Me
expert
Ngozi EmeagwaliStatistics
(/5)

834 Answers

Hire Me
Python Programming

In this assignment, you will write a program that takes as input a parsed sentence and produces a symbolic representation.

INSTRUCTIONS TO CANDIDATES
ANSWER ALL QUESTIONS

Programming Assignment

Overview

In this assignment, you will write a program that takes as input a parsed sentence and produces a symbolic representation.

Grammar

The context-free grammar is as follows:

Grammar

S → NP VP

NP → Name

NP → Det Adj* Noun VP → Verb NP PP*

VP → Verb NP NP PP* PP → Prep NP

Lexicon:

Adj: { big, nice, old, pretty, small }

Det: { a, an, the }

Name: { Amy, Bob, Carol, David }

Noun: { book, boy, flowers, girl, man, woman, store }

Prep: { for, from, to }

Verb: { gave, got, bought, sold }

 

The asterisks in Adj* and PP* means that there can be 0, 1, 2 ... Adjs/PPs. (This is known as the Kleene star, pronouned “Clay-ny”.)

Representation

The representation that you will output will be as a set of atomic, ground formulas in the predicate calculus (that is, there are no quantifiers and no Boolean operators). When there are entities that are unnamed or implicit in the natural language text, you create a new constant symbol to represent them. Other than these new constant symbols, the non-logical primitives of the language are as follows:

Unary Predicates:

Big(x), Nice(x), Old(x), Pretty(x), Small(x), Book(x), Boy(x) Flowers(x), Girl(x), Store(x), Man(x), Woman(x), Money(x), Transfer(e)

Binary Predicates:

Source(e,x), Destination(e,x), Object(e,x)

The verbs “gave” and “got” denote a single transfer event. The verbs “bought” and “sold” denote two transfer events: a transfer of merchandise and a transfer of money. The object of a transfer is the thing whose ownership is changing; the source is the original owner; and the destination is the final owner.

If X buys Y for Z from W, or X buys Z Y from W, then there are three transfer events: X transfer money to W, W transfers Y to X, and then X presumably will transfer Y to Z.

Input/Output format

The input format is a parenthesized form of the sentence, either read from input or passed as an argument in an interpreter. A subtree whose label at the root is L is represented by the expression L(subtree, ... subtreeK).

For instance the parse tree

S--->NP--->Name--->Amy

|

|->VP--->Verb--->gave

|

|-->NP--->Det--->the

|      |

|      |->Adj--->pretty

|      |

|      |->Noun--->flowers

|

|->PP--->Prep--->to

|

|->NP--->Det--->the

|

|->Adj--->small

|

|->Noun--->boy

is input as the string

S(NP(Name(Amy)),VP(Verb(gave),NP(Det(the),Adj(pretty),Noun(flowers)),

PP(Prep(to),NP(Det(the),Adj(small),Noun(boy))))).

If a person is not mentioned, then no constant need be created for it. For instance, in representing the sentence “David sold a book,” you do not have to create a constant for the person he sold it to. However, with sentences involving “bought” or “sold”, you do need a constant for the money, since that is what distinguishes “bought” and “sold” from “got” and “gave”.

Ignore upper and lower case.

The grammar of course includes sentences that are semantically, pragmatically anomalous and even grammatically wrong e.g. “The flowers sold the big small big big boy to a old book.” I don’t care what happens with these; the program can do whatever is easiest for you. You may assume that the program will be tested on reasonable inputs. If you have questions about borderline cases, feel free to ask, but the answer will probably be, “I don’t care.”

The output is a set of atomic ground formulas, one per line. The order doesn’t matter.

Examples

Input:

S(NP(Name(Amy)),VP(Verb(gave),NP(Det(the),Adj(pretty),Noun(flowers)),

PP(Prep(to),NP(Det(the),Adj(small),Noun(boy))))).

Output:

Transfer(X1). Pretty(X2).

Flowers(X2). Small(X3).

Boy(X3).

Source(X1,Amy). Destination(X1,X3). Object(X1,X2).

Here X1, X2, X3 are constant symbols that the program creates to denote the event, the flowers, and the boy, respectively.

Input:

S(NP(Det(The),Noun(boy)),VP(Verb(bought),NP(Det(the),Adj(old),Noun(book)),

PP(Prep(from),NP(Det(the),Adj(old),Noun(man)))))

Output:

Transfer(X1). Transfer(X2). Money(X3).

Boy(X4).

Book(X5).

Old(X5).

Man(X6).

Old(X6).

Source(X1,X4). Destination(X1,X6) Object(X1,X3).

Source(X2,X6). Destination(X2,X4). Object(X2,X5).

Input:

S(NP(Name(David)),VP(Verb(bought),NP(Name(Amy)),NP(Det(a),Adj(small), Adj(nice),Noun(book))))

 

Output: Transfer(X1). Transfer(X2). Transfer(X3). Money(X4).

Book(X5). Small(X5). Nice(X5). Source(X1,David). Object(X1,X4).

Destination(X2,David). Object(X2,X5).

Source(X3,David). Destination(X3,Amy). Object(X3,X5).

Related Questions

. The fundamental operations of create, read, update, and delete (CRUD) in either Python or Java

CS 340 Milestone One Guidelines and Rubric  Overview: For this assignment, you will implement the fundamental operations of create, read, update,

. Develop a program to emulate a purchase transaction at a retail store. This  program will have two classes, a LineItem class and a Transaction class

Retail Transaction Programming Project  Project Requirements:  Develop a program to emulate a purchase transaction at a retail store. This

. The following program contains five errors. Identify the errors and fix them

7COM1028   Secure Systems Programming   Referral Coursework: Secure

. Accepts the following from a user: Item Name Item Quantity Item Price Allows the user to create a file to store the sales receipt contents

Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip

. The final project will encompass developing a web service using a software stack and implementing an industry-standard interface. Regardless of whether you choose to pursue application development goals as a pure developer or as a software engineer

CS 340 Final Project Guidelines and Rubric  Overview The final project will encompass developing a web service using a software stack and impleme

April
January
February
March
April
May
June
July
August
September
October
November
December
2025
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
SunMonTueWedThuFriSat
30
31
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
1
2
3
00:00
00:30
01:00
01:30
02:00
02:30
03:00
03:30
04:00
04:30
05:00
05:30
06:00
06:30
07:00
07:30
08:00
08:30
09:00
09:30
10:00
10:30
11:00
11:30
12:00
12:30
13:00
13:30
14:00
14:30
15:00
15:30
16:00
16:30
17:00
17:30
18:00
18:30
19:00
19:30
20:00
20:30
21:00
21:30
22:00
22:30
23:00
23:30