document.write( "Question 1188914: I don't understand this q\r
\n" );
document.write( "\n" );
document.write( "In one city, a taxi fare includes an initial fixed charge, plus a charge based on each kilometre travelled. The possible fares charged, in dollars, in this city, can be represented by the recursion formula\r
\n" );
document.write( "\n" );
document.write( "tn = tn-1 + 0.75; t1 =8\r
\n" );
document.write( "\n" );
document.write( "a) What is the initial fixed charge?\r
\n" );
document.write( "\n" );
document.write( "b) What is the charge per kilometre travelled?\r
\n" );
document.write( "\n" );
document.write( "c) Is this an arithmetic or geometric sequence?\r
\n" );
document.write( "\n" );
document.write( "d) Find the general term of the sequence.\r
\n" );
document.write( "\n" );
document.write( "e) Calculate the fare for a 15 km trip. \n" );
document.write( "
Algebra.Com's Answer #820101 by greenestamps(13209) You can put this solution on YOUR website! \n" ); document.write( "My guess is that it is the recursive formula you don't understand. I will explain that; then you can answer the questions. \n" ); document.write( "If you then still need more help, re-post the question telling us WHAT it is about the problem that you don't understand. \n" ); document.write( "The recursive formula is \n" ); document.write( "tn = tn-1 + 0.75; t1 =8 \n" ); document.write( "I much prefer to write it as a function, like this: \n" ); document.write( "t(n) = t(n-1)+0.75; t(1) = 8 \n" ); document.write( "In that form, t is the total taxi fare and n is the number of kilometers traveled. The recursive formula then says two things: \n" ); document.write( "(1) The cost for traveling n kilometers is the cost for traveling (n-1) kilometers, plus 75 cents -- in other words, each additional kilometer costs 75 cents more; and \n" ); document.write( "(2) The cost of traveling 1 kilometer is $8 \n" ); document.write( " \n" ); document.write( " |