To represent the rent during the \( n \)th year of living in the apartment using a recursive formula, we can define the following:
Let \( R(n) \) be the rent during the \( n \)th year.
-
For the first year (\( n = 1 \)), the rent is $1700: \[ R(1) = 1700 \]
-
For each subsequent year (from the second year onwards), the rent increases by $70 per year. Thus, the recursive relation can be expressed as: \[ R(n) = R(n-1) + 70 \quad \text{for } n > 1 \]
Putting it all together, the recursive formula for the rent \( R(n) \) during the \( n \)th year is:
\[ R(1) = 1700 \] \[ R(n) = R(n-1) + 70 \quad \text{for } n > 1 \]
This formula allows you to calculate the rent for any year \( n \) based on the previous year's rent.