|
Calling Sequence
|
|
PartOfSpeech( word )
IsNoun( word )
IsVerb( word )
IsPlural( word )
IsTransitiveVerb( word )
IsIntransitiveVerb( word )
IsUsuallyParticipleVerb( word )
IsNounPhrase( word )
IsAdjective( word )
IsAdverb( word )
IsConjunction( word )
IsPreposition( word )
IsInterjection( word )
IsPronoun( word )
IsDefiniteArticle( word )
IsIndefiniteArticle( word )
IsNominative( word )
|
|
Parameters
|
|
|
|
Description
|
|
•
|
The various "Is" commands listed on this page test whether a given English word fits the specified part of speech. One of true, false, or FAIL will be returned. true indicates the given word can be used that way for any one meaning of any words matching the same spelling. false indicates that the given word is known to the system, but is not listed as matching the specified part of speech (which does not mean that word could not be a match, just not commonly so according to the built-in word list). FAIL indicates the given word is not known to the system and therefore the answer is not known.
|
•
|
The PartOfSpeech command will return a list of the various parts of speech known for the given word. The list will be ordered in terms of most common usage first. The PartOfSpeech command will return one or more of the following: "Noun", "Plural", "Noun Phrase", "Verb (usually participle)", "Verb (transitive)", "Verb (intransitive)", "Adjective", "Adverb", "Conjunction", "Preposition", "Interjection", "Pronoun", "Definite Article", "Indefinite Article", "Nominative".
|
•
|
These commands operate by looking up entries in a table compiled from a combination of "Moby (tm) Part-of-Speech II" and the WordNet database compiled by Kevin Atkinson available at http://aspell.net/. This is by no means a complete list, so many words will have only a subset of their principle uses listed. In particular the list of noun-phrases and plural forms is limited.
|
•
|
This function is part of the EssayTools package, so it can be used in the short form PartOfSpeech(..) only after executing the command with(EssayTools). However, it can always be accessed through the long form of the command by using EssayTools[PartOfSpeech](..).
|
|
|
Examples
|
|
| (1) |
| (2) |
| (3) |
|
|
Compatibility
|
|
•
|
The EssayTools[PartOfSpeech], EssayTools[IsNoun], EssayTools[IsPlural], EssayTools[IsVerb], EssayTools[IsTransitiveVerb], EssayTools[IsIntransitiveVerb], EssayTools[IsUsuallyParticipleVerb], EssayTools[IsNounPhrase], EssayTools[IsAdjective], EssayTools[IsAdverb], EssayTools[IsConjunction], EssayTools[IsPreposition], EssayTools[IsInterjection], EssayTools[IsPronoun], EssayTools[IsDefiniteArticle], EssayTools[IsIndefiniteArticle] and EssayTools[IsNominative] commands were introduced in Maple 17.
|
|
|
|