
Search

As of October, 2016, Embarcadero is offering a free release
of Delphi (Delphi
10.1 Berlin Starter Edition ). There
are a few restrictions, but it is a welcome step toward making
more programmers aware of the joys of Delphi. They do say
"Offer may be withdrawn at any time", so don't delay if you want
to check it out. Please use the
feedback link to let
me know if the link stops working.

Support DFF - Shop
If you shop at Amazon anyway, consider
using this link.
We receive a few cents from each
purchase. Thanks

Support DFF - Donate
If you benefit from the website, in terms of
knowledge, entertainment value, or something otherwise useful,
consider making a donation via PayPal to help defray the
costs. (No PayPal account necessary to donate via credit
card.) Transaction is secure.

Mensa®
Daily Puzzlers
For over 15 years
Mensa Page-A-Day calendars have provided several puzzles a year
for my programming pleasure. Coding "solvers" is most fun,
but many programs also allow user solving, convenient for "fill
in the blanks" type. Below are Amazon links to the
two most recent years.
Mensa®
365 Puzzlers Calendar 2017
Mensa®
365 Puzzlers Calendar 2018

(Hint: If you can
wait, current year calendars are usually on sale in January.)

Contact
Feedback:
Send an
e-mail with your comments about this program (or anything else).

|
| |
Problem Description
Write a program to parse English language story problems of a particular type
("Age" problems) to produce the algebraic equations which can be used to solve
the problem. For example:
"A year ago, Gary was twice as old as Ron is now. In
four more years, Ron will be as old as Gary is now. Neither one is yet a
teenager. How old are Gary and Ron now?"
should produce equations Gary-1=2*Ron
and Ron+4=Gary
Background & Techniques
Each edition of the
Mensa
Brain Puzzlers Page-A-Day Calendar
that my wife and I work
through has a number of age related problems similar to the above sample.
It occurred to me that the text of these problems was uniform enough that a program to examine the
text and convert it into the appropriate equations would be more interesting
than solving the puzzles by hand. The current program took about a
week of spare time to create and was more successful than I would have
expected.
The syntax analysis is far from being generalized but it is adequate to handle
the 8 age problems in this
year's calendar which were entered verbatim as "AgeTest1.txt" through
"Agetest8.txt" and included in the zip file downloads below. The problems
are converted in several stages and using a number of word conversion tables.
Briefly, the analysis is table driven (to the extent that this was easy to
do), with idea that I could enhance the parser and make it work for new problems
by changing the tables. There are 5 text files used as follows:
1. Un-needed words and delimiters are removed based on "UnNeededWords.tbl" file.
2. Names of the people are identified. Common initial capitalized words to
ignore are in "Initialwords.tbl". The other capitalized words must be
proper names. The names are used as variable names representing that
person's age.
3. Numbers are converted to a standard text form using the "Numbers.tbl" file;
"one" to "1", "twice" to "2*"
etc.
4.Sentences are converted to a "canonical" form replacing names with "&V", whole
numbers and fraction
numerators with "&N", denominators with "&D". Patterns in file "OpWords.tbl" are
tested against the
canonical form and matches are replaced with a corresponding text phrase in
equation form.
5. Numeric and name identifiers and then replaced with the original values and
the results displayed.
Two problems made interesting coding tasks:
 | When the problem starts with a phrase specifying when something was or
will be true (adverbial phrase?) it may apply to the next person mentioned
or to both of them. For example, "In 4 years, A will be
twice as old as B." must produce (A+4)=2*(B+4).
That is unless B has an "is now" phrase attached. E.g. "In 4
years, A will be twice as old as B is now." in which case the equation
becomes (A+4)=2*B. Handling this case required a global
variable which could be added (or subtracted) from the right side
persons age if necessary. |
 | The use of pronouns "he" and "she" are assumed to refer to
the 1st person named in the preceding sentence. This works in most cases for
the sample problems. One case which I did not even try to resolve is
in problem AgeTest6.txt which contains the sentence: "When
Marian is as old as Tim is now, he will be three times as old as she is now.
" The program produces "When Marian = Tim he = 3* she" which I
thought was close enough, especially since this is the third equation and
therefore not needed to solve the problem. |
For the text forms represented by the 8 included sample files, the program works
quite well. The
resulting 2 equations in 2 unknowns are easily solved algebraically. A future
version may add the less
interesting solver code to produce numeric answers for the problems.
Addendum November 28, 2007: Here is Version 2 which does
solve the age equations to report the numerical solution. While
finding the solution using a linear programming technique would be simple,
putting the expression in standard form to extract the coefficients might
not have been. My alternative approach uses a recently posted
Expression
Evaluator object to find values for the left and right sides of each
equation by trial and error. Using ages 1 through 20 for each person, we
look for ages which make the left side expression equal to the right side
expression for each equation and reports the successful pair.
Addendum December 11, 2007: Version 2.1 posted today handles a
couple of additional problems, mainly by adding a few entries to to Unneeded
words table and the OpWords table. The last problem from today's
Mensa calendar entry, Agetest10.txt, required a change to test all
equations in pairs rather than simply using the first two equations since the
first two sentences yield equations which are essentially identical. ("Rachael
is now twice as old as Ryan will be in one year." and "In
two more years, she'll be twice as old as Ryan will be then." yielding "Rachael=2x(Ryan+1)"
and "Rachael+2=2x(Ryan+2)" ) . Either equation together with the
3rd sentence will produce an solution.
Addendum January 16, 2008: The new Mensa calendar started off
2008 with an problem about Nick's and his grandfather's ages which our
program couldn't solve. The un-capitalized word "grandfather" was
not recognized as a name and led to a new category of words, those which should
be treated as names even though they do not begin with a capital letter.
To reduce the growing number of word conversion categories, I replaced all of
the individual text files with a single initialization file .
AgeProblemTables.ini contains sections for each of the previous table files
plus the new "Capitalized" section. Version 3 zip files
contain AgeTest11.txt, the now solvable problem about Nick and his grandpa.
For the programmers, I should mention what I learned and using TInifile:
The ReadSection method which reads names for a specific section, only
recognizes entries that contain an "=" sign even though the value (the data to
the right of the equal sign) is not required. Firstwords,
UnNeeded, and Capitalize sections all used this "name only" format.
The Numbers, Denominators, and OpWords sections use the
ReadSectionValues method to read names and values.
Addendum April 8, 2008: Version 4 was posted today with a couple
of additional problems; 15 now including a couple of variations of the same
problem with alternate text. There was some more tweaking of the parsing
tables, and, to help debugging, buttons to reload the parsing tables
without restarting the program, and a "Backtest" button which runs all
available problems and displays a summary of results.
Running/Exploring the Program
Suggestions for Further Explorations
 |
Done January, 2008 The 5 text tables which drive the parser could
exist in a single .Ini file. |
 |
Handling a wider range
of age problems would make the program smarter (not automatically!) |
 |
Done Nov. 28,2007.Add an equation solver
to derive the numeric answers from the generated equations. |
Original: November 14, 2007 |
Modified:
May 15, 2018
|
|