Iteration
Iterations are like mathematical recipes that tell you how to get from one term to the next in a sequence. They're incredibly useful in computer programming and modelling real-world scenarios.
In iteration, we use the notation U₁ for the first term, and U_{n+1} for the next term in the sequence. The rule U_{n+1} = 5U_n + 1 means "to get the next term, multiply the current term by 5 and add 1." Starting with U₁ = 4, we calculate U₂ = 5 × 4 + 1 = 21, then U₃ = 5 × 21 + 1 = 106, and so on.
Different iteration rules create different patterns. For example, U_{n+1} = U_n/4 with U₁ = 32 creates a decreasing sequence: 32, 8, 2, 0.5, etc. This particular sequence divides each term by 4 to get the next.
Applied thinking: Iterations are used to model population growth, compound interest, and even weather forecasts! They allow mathematicians and scientists to see how systems evolve over time when following specific rules.