Owners of SUVs need to know the miles per gallon every month. Given the amount of money spent to fill the gasoline tank, the number of miles driven since the last time the tank was filled, and the price per gallon, develop a computational model that computes the miles per gallon.

price = $p/gal

money spent = $s
miles driven = m mi

mi/gal = m mi * $p/gal / $s = mp/s

To develop a computational model that computes miles per gallon (MPG) for SUV owners, you will need to follow these steps:

1. Determine the amount of gasoline consumed: Subtract the amount of gasoline remaining in the tank after driving from the amount of gasoline initially added to the tank. This will give you the total amount of gasoline consumed since the last fill-up.

2. Calculate the distance traveled: Use the number of miles driven since the last fill-up.

3. Calculate the MPG: Divide the distance traveled by the amount of gasoline consumed. The resulting value will be the MPG.

Here's a step-by-step guide:

1. Gather the necessary inputs:
- Amount of money spent to fill the gasoline tank (Total Fuel Cost)
- Number of miles driven since the last time the tank was filled (Distance Driven)
- Price per gallon (Price per Gallon)

2. Calculate the amount of gasoline consumed:
- Let's assume the SUV has a fuel tank capacity of T gallons.
- Subtract the amount of gasoline remaining in the tank after driving from the tank's capacity to calculate gasoline consumed: Gasoline Consumed = T - (Remaining Gasoline)

3. Calculate the MPG:
- Divide the Distance Driven by the Gasoline Consumed: MPG = Distance Driven / Gasoline Consumed

Here is a simplified formula for calculating MPG:
MPG = Distance Driven / (T - Remaining Gasoline)

By following the above steps and using the provided inputs, you can create a computational model that computes the miles per gallon for SUV owners based on the amount of money spent, distance driven, and price per gallon.