The company that operates for 18 hours a day has introduced a new daily wage system that
incorporates variable hourly rate to encourage longer shifts. The company pays $10 for first
hour or any part of the first hour. Afterwards, company pays additional 2% per hour for each
hour or part of each additional hour. Write a piece-wise function that shows the salary as a
function of hours. Also sketch a graph of this function.
1
Expert's answer
2021-09-26T17:46:34-0400
Let a person work h hours for the company
Note if 0<h≤1 then the company pays $10
If 1<h≤2 then the company pays $10+10+1002∗10
If 2<h≤3 then the company pays $10+10+10+1002∗(3−1)∗10
=30+1002∗(3−1)∗10
So for h hours the company pays 10∗h+1002∗(h−1)∗10 ,h>0
Comments