document.write( "Question 700503: Tickets for a raffle cost either £2 or £4. A man buys 10 tickets costing a total of £36.
\n" );
document.write( "How many of each kind does he buy?
\n" );
document.write( "(hint: let there be x tickets at £2 and y tickets at £4)
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #431847 by CRandunu(8)![]() ![]() You can put this solution on YOUR website! let there be x tickets at £2 and y tickets at £4\r \n" ); document.write( "\n" ); document.write( "given total tickets = x+y= 10 -----------(1) \n" ); document.write( "total cost = cost of £2 tickets + cost of £4 tickets= 2x+4y =36----(2)\r \n" ); document.write( "\n" ); document.write( "so we have \n" ); document.write( "x+y= 10 -----------(1) \n" ); document.write( "2x+4y =36----(2)\r \n" ); document.write( "\n" ); document.write( "(2)- 2*(1) gives 2y=16 , y=8 \n" ); document.write( "from (1) gives x=2\r \n" ); document.write( "\n" ); document.write( "he buys two £2 tickets and 8 £4 tickets \n" ); document.write( " |