Q1.
Why is it useful to have an explicit formula for the nth term of a sequence?
Answer
Because it lets you reach any term directly, without first working out all the terms before it.
With un = 2n – 1:
u300 = 2 × 300 – 1 = 599 — in one step, not 299 steps
u300 = 2 × 300 – 1 = 599 — in one step, not 299 steps
It is also the only convenient way to answer the reverse question. To ask "is 137 in this sequence, and where?" you simply solve the equation:
2n – 1 = 137
2n = 138
n = 69 — so 137 is the 69th odd number
2n = 138
n = 69 — so 137 is the 69th odd number
Why it happens: an explicit rule is a function of the position. Because n appears on its own in the formula, substituting a value of n is a single calculation, and the formula can equally be read backwards as an equation in n. A recursive rule cannot do this: to reach the 300th term it must first know the 299th, which needs the 298th, and so on all the way down to the start.
Tip: when you solve tn = k, always look at the n you get. Only a natural number counts — a fraction or a negative value means k is not a term at all.