I am supposed to come up with a real life problem and then write a function to represent that real life scenario, but I am not confident in my answer. Could you look it over and tell me if I did it correctly?

The basic cell phone plan costs 19.99 a month plus an additional fee of $0.15 for every minute of use. What is the plan holders monthly cost if he or she uses 75 minutes of talk time?
What is the plan holders monthly cost if he or she uses 120 minutes of talk time?
If c = cost and t =the number of months we have a function that will look like this to represent my real life example�¥
C(t)=$19.99+ $0.15t
Inputs
c (75)
c(120)

It looks ok to me except I can't read the symbols between example and C(t). Also, I think you intended t to represent the number of minutes and not the number of months.

There was not supposed to be any symbol there,My mistake. And yes I did mean minutes , and I had already changed that part...Thank you, now I can submit it with ease.

To calculate the plan holder's monthly cost for a given number of minutes, you need to use the function C(t) = $19.99 + $0.15t, as you correctly mentioned.

For the first scenario where the plan holder uses 75 minutes of talk time, you can substitute t = 75 into the function C(t) to find the monthly cost:

C(75) = $19.99 + $0.15 * 75
= $19.99 + $11.25
= $31.24

So, the plan holder's monthly cost in this case would be $31.24.

Similarly, for the second scenario where the plan holder uses 120 minutes of talk time, you can substitute t = 120 into the function C(t):

C(120) = $19.99 + $0.15 * 120
= $19.99 + $18.00
= $37.99

Thus, the plan holder's monthly cost in this case would be $37.99.

You have correctly represented the real-life scenario and used the function to calculate the monthly costs for different talk time durations. Well done!