Question 1031334
Josh has three aunts.  He knows that following facts about the ages of his three aunts:
•	Annie is twenty-two years younger than twice Claire’s age.

{{{A = 2C-22}}}

•	Betty is seventeen years older than half of Annie’s age.

{{{B = expr(1/2)A + 17}}}

•	Claire is six years younger than Betty.

{{{C = B-6}}}


•	The three women’s ages add to exactly one hundred years.

{{{A+B+C=100}}}

How old is each aunt?
<pre>
Pick any of these three systems:

{{{system(B = expr(1/2)A + 17,C = B-6,A+B+C=100)}}}, {{{system(A = 2C-22,C = B-6,A+B+C=100)}}}, {{{system(A = 2C-22,B = expr(1/2)A + 17,A+B+C=100)}}}   

and you'll get the answers.  Hint: the youngest aunt is 29.

Edwin</pre>