The recursive formula can be used to determine the total amount of time spent making hats based on the total amount of time spent previously is f(n + 1) = f(n) + 0.75
<h3>Recursive functions</h3>
The general recursive function is expressed as:
an+1 = d + an
where
r is the common difference
Given the sequence below
1.5, 2.25, 3.0, 3.75, ...
Common difference = 2.25 - 1.5 = 0.75
Substitute
f(n + 1) = f(n) + d
f(n + 1) = f(n) + 0.75
Hence the recursive formula can be used to determine the total amount of time spent making hats based on the total amount of time spent previously is f(n + 1) = f(n) + 0.75