document.write( "Question 888186: The girls hockey team is going to put in an order for new jerseys. The total cost will include a one time design fee plus the cost per jersey. If the order was for 30 jerseys the total cost would be $800. If they order 40 jerseys the total cost will be $1050.
\n" );
document.write( "A. Use this information to determine the one-time design fee and cost per jersey for the order.\r
\n" );
document.write( "\n" );
document.write( "B. Construct a function using the one-time design fee and the cost per jersey that would determine the total cost for any number of jerseys ordered.
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #537168 by richwmiller(17219)![]() ![]() You can put this solution on YOUR website! 1050=40j+d \n" ); document.write( "800=30j+d \n" ); document.write( "250=10j \n" ); document.write( "25=j \n" ); document.write( "Each jersey costs $25 \n" ); document.write( "The design d costs $50\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "b) c=nj+d \n" ); document.write( "where c is total cost \n" ); document.write( "n is number of jerseys \n" ); document.write( "j is cost per jersey \n" ); document.write( "d is design cost \n" ); document.write( " \n" ); document.write( " |