The cost of a pizza is $10.50 for no toppings, $12 with 1 topping, $13.50 with 2 toppings, $15 with 3 toppings, etc. what is a recursive formula that represents the cost of a pizza with n toppings?

looks like each topping costs $1.50

so ...

To find the recursive formula that represents the cost of a pizza with n toppings, we need to analyze the given information.

From the given data, we can observe that the cost of the pizza increases by $1.50 for each additional topping. So, if we have n toppings, the cost of the pizza can be represented as:

Cost of Pizza with n toppings = Cost of Pizza with (n-1) toppings + $1.50

Therefore, the recursive formula for the cost of a pizza with n toppings is:

C(n) = C(n-1) + $1.50

Where C(n) represents the cost of the pizza with n toppings, and C(n-1) represents the cost of the pizza with (n-1) toppings.