Maths Recurrence Relations
Recurrence Relations Overview
- A recurrence relation is a formula that defines each term of a sequence based on its previous terms.
Basic Structure
- Given starting value, the formula is typically written as:
- Where:
- is the current term
- is the next term
- is a function that relates to
Examples of Simple Recurrence Relations
- Consider a simple case where
- If the starting value :
- Calculation:
- Therefore,
- For the next term using the earlier result:
Properties of Recurrence Relations
- Recurrence relations can lead to:
- Values that continually increase (e.g., doubling and adding a constant).
- Values that stabilize or approach a limit (e.g., limits exist when certain conditions apply).
Conditions for Stability and Limits
- If the multiplier (constant before ) is between -1 and 1, the sequence approaches a limit.
- Example: If (multiplier of ) is , then as approaches infinity, the sequence approaches a value.
- If the multiplier is greater than 1 or less than -1, the sequence diverges to infinity or negative infinity, respectively.
- If the recurrence relation fluctuates between positive and negative without stabilizing, it may bounce around a certain range without settling.
Example of Calculation with Limit
- For and , the limit formula is:
- Calculation:
- Applying to our example:
- Applying to our example:
- This shows that the sequence will stabilize around 16 regardless of starting value, provided you follow the recurrence relation.
Complex Examples and Applications
- The farmer scenario illustrates how you can set up a recurrence relation based on loss and replenishment of livestock:
- Formula example:
- Formula example:
- Nature of calculation is essentially about persistence, ensuring you maintain and adjust the livestock number.
General Examples
For a sheep farmer losing 13% of his flock:
- Initial value:
- Recurrence:
- After 10 years (compute sequentially to find )
Island population scenario with 18% exit:
- Initial Population:
- Recurrence:
For pruned rose bushes:
- Initial Height:
- Recurrence involving pruning and growth:
Conclusion
- Recurrence relations are powerful modeling tools useful in various scenarios from livestock management to population modeling. By identifying the recurrence base and analyzing the properties, students can predict future behaviors of sequenced events.
- Always ensure that when determining limits, the coefficients of the recurrence relationships maintain conditions specified (% values between -1 and 1) for stable results.