document.write( "Question 1172083: 1.Bob earns a 3.5% commission on all sales above $10,000 in any given month. How much must Bob sell in a month in order to earn a commission of $1400?\r
\n" );
document.write( "
\n" );
document.write( "
\n" );
document.write( "\n" );
document.write( "2. A local store has two types of hard candy, one that sells for $1.30 per pound, and the other for $0.90 per pound. How much of each type of candy should be used to create 100 lb of a mix that will sell for $1.00 per pound?\r
\n" );
document.write( "
\n" );
document.write( "\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #797015 by Theo(13342)![]() ![]() You can put this solution on YOUR website! problem number 1:\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "let x = the total amount sold. \n" ); document.write( "let y = the commission. \n" ); document.write( "you have a split function. \n" ); document.write( "y = 0 when x <= 10,000 \n" ); document.write( "y = .035 * (x - 10,000) when x is greater than 10,000. \n" ); document.write( "if he makes 1400 commission, you can assume he sold more than 10,000 worth. \n" ); document.write( "your equation is therefore: \n" ); document.write( "y = .035 * (x - 10,000) \n" ); document.write( "simplify to get: \n" ); document.write( "y = .035 * x - .035 * 10,000 \n" ); document.write( "simplify further to get: \n" ); document.write( "y = .035 * x - 350 \n" ); document.write( "when y = 1400, the equation becomes: \n" ); document.write( "1400 = .035 * x - 350 \n" ); document.write( "add 350 to both sides of the equation to get: \n" ); document.write( "1750 = .035 8 x \n" ); document.write( "solve for x to get: \n" ); document.write( "x = 1750 / .035 = 50,000 \n" ); document.write( "if he sells 50,000 worth in sales, he will make 1400 in commission. \n" ); document.write( "it works like this. \n" ); document.write( "he makes 0 commission on sales totaling 10,000. \n" ); document.write( "he makes 3.5% commission on all sales over 10,000. \n" ); document.write( "this becomes 50,000 - 10,000 = 40,000 worth of sales over 10,000. \n" ); document.write( "that gets you .035 * 40,000 = 1400. \n" ); document.write( "solution is confirmed to be good. \n" ); document.write( "he must sell 50,000 in a month in order to earn a commission of 1400 for that month.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( " \n" ); document.write( " |