document.write( "Question 973291: In 2000, the United States Postal Service charged $0.45 to mail a letter weighing up to 3 oz. and $0.30 each additional ounce. Write a function, in dollars, c(x), of mailing a letter weighing x ounces where x is an integer greater than 3. \n" ); document.write( "
Algebra.Com's Answer #595526 by macston(5194)![]() ![]() You can put this solution on YOUR website! . \n" ); document.write( "c(x)=$0.45+(x-3)($0.30) \n" ); document.write( "c(x)=$0.45+$0.30x-$0.90 \n" ); document.write( "c(x)=$0.30x-$0.45 \n" ); document.write( " |