Ari is starting a yard service business. He charges a flat rate of $10 plus an additional $15 per hour, regardless of the service. Create a function and use a table to determine how much Ari will make if he works for 1, 1.5, 2, 2.5, and 3 hours.

The function to calculate how much Ari will make based on the number of hours worked is:

Total earnings = $10 + ($15/hour) * (number of hours worked)

Using the function, the earnings for 1, 1.5, 2, 2.5, and 3 hours of work are as follows:

For 1 hour: $10 + ($15/hour) * 1 hour = $10 + $15 = $25
For 1.5 hours: $10 + ($15/hour) * 1.5 hours = $10 + $22.5 = $32.50
For 2 hours: $10 + ($15/hour) * 2 hours = $10 + $30 = $40
For 2.5 hours: $10 + ($15/hour) * 2.5 hours = $10 + $37.50 = $47.50
For 3 hours: $10 + ($15/hour) * 3 hours = $10 + $45 = $55

Therefore, Ari will earn $25 for 1 hour, $32.50 for 1.5 hours, $40 for 2 hours, $47.50 for 2.5 hours, and $55 for 3 hours of work.