Ari is starting a yard service business. He changes 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.

To calculate Ari's earnings, we need to consider the flat rate of $10 plus the additional $15 per hour.

Let's denote the number of hours Ari works as "x". The equation for his earnings can be expressed as:

Earnings = $10 + ($15/hour) * x

We can create a table by substituting the given values of x:

| Number of hours (x) | Earnings |
|---------------------|----------|
| 1 | $25 |
| 1.5 | $32.5 |
| 2 | $40 |
| 2.5 | $47.5 |
| 3 | $55 |

Therefore, Ari will make $25 if he works for 1 hour, $32.5 if he works for 1.5 hours, $40 if he works for 2 hours, $47.5 if he works for 2.5 hours, and $55 if he works for 3 hours.