document.write( "Question 1104990: The sum of the ages of a man and his wife is six times the sum of the ages of their children. Two years ago the sum of their ages was ten times the age of their children. After six years the sum of their ages will be 3 times the sum of the ages of their children . How many children do they have ? \n" ); document.write( "
Algebra.Com's Answer #719764 by ankor@dixie-net.com(22740)![]() ![]() You can put this solution on YOUR website! let m = the man's present age \n" ); document.write( "let w = wife's present age \n" ); document.write( "let c = the sum of the children's present age \n" ); document.write( "let n = no. of children \n" ); document.write( ": \n" ); document.write( " The sum of the ages of a man and his wife is six times the sum of the ages of their children. \n" ); document.write( " m + w = 6c \n" ); document.write( ": \n" ); document.write( " Two years ago the sum of their ages was ten times the age of their children. \n" ); document.write( "(m-2) + (w-2) = 10(c - 2n) \n" ); document.write( " m + w - 4 = 10c - 20n \n" ); document.write( "replace (m+w) with 6c \n" ); document.write( "6c - 4 = 10c - 20n \n" ); document.write( "6c - 10c - 4 = - 20n \n" ); document.write( "-4c - 4 = -20n \n" ); document.write( "multiply by -1 \n" ); document.write( "4c + 4 = 20n \n" ); document.write( "simplify, divide by 4 \n" ); document.write( "c + 1 = 5n \n" ); document.write( ": \n" ); document.write( " After six years the sum of their ages will be 3 times the sum of the ages of their children. \n" ); document.write( "(m+6) + (w+6) = 3(c + 6n) \n" ); document.write( "m + w + 12 = 3c + 18n \n" ); document.write( "replace (m+w) with 6c \n" ); document.write( "6c + 12 = 3c + 18n \n" ); document.write( "6c - 3c + 12 = 18n \n" ); document.write( "3c + 12 = 18n \n" ); document.write( "simplify, divide by 3 \n" ); document.write( "c + 4 = 6n \n" ); document.write( ": \n" ); document.write( "How many children do they have? \n" ); document.write( " use elimination on these two simplified equation \n" ); document.write( "c + 4 = 6n \n" ); document.write( "c + 1 = 5n \n" ); document.write( "-----------subtraction eliminated c \n" ); document.write( "0 + 3 = n \n" ); document.write( "they have 3 children\r \n" ); document.write( "\n" ); document.write( " \n" ); document.write( " |