SOLUTION: A store is having a sale on books. If you buy the first book for $12, each additional book will cost $6. Which formula models this situation?
Question 1150943: A store is having a sale on books. If you buy the first book for $12, each additional book will cost $6. Which formula models this situation?
You can put this solution on YOUR website! A store is having a sale on books.
If you buy the first book for $12, each additional book will cost $6.
Which formula models this situation?
:
f(b) = 6(b-1) + 12
where
b = total number of books
f(b) = total cost of the books
This function is defined for all integer values of b >= 0.
The formula is in three lines:
0 dollars, if b = 0,
f(b) = 12 dollars, if b = 1
12 + 6*(b-1) dollars, if b > 1.