document.write( "Question 1039198: the user is charge p 300 monthly for a particular mobile plan, which includes 100 free text messages.
\n" );
document.write( "messages in excess of 100 are charged p 1 each.
\n" );
document.write( "represent the amount t a consumer pays each month as a function of the number of messages m sent in a month
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #653971 by Theo(13342)![]() ![]() You can put this solution on YOUR website! this would be a partial function or what might be called a split function.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "t = 300 for x <= 100\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "t = 300 + 1 * (x-100) for x > 100.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "as long as the number of messages is less than or equal to 100, the first formula of t = 300 is used.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "if the number of messages exceeds 100, then the second formula of t = 300 + 1 * (x - 100) is used.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "assume the customer used 150 messages. \n" ); document.write( "since the number of messages is greater than 100, the second formula kicks in. \n" ); document.write( "the monthly charge is 300 + 1 * (150 - 100) = 300 + 1 * 50 = 300 + 50 = 350.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "assume the customer used 90 messages. \n" ); document.write( "since the number of messages is less than or equal to 100, the first formula kicks in. \n" ); document.write( "the monthly charge is 300.\r \n" ); document.write( " \n" ); document.write( " \n" ); document.write( "\n" ); document.write( " \n" ); document.write( " |