English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

We define the sequence a recursively by setting
a_1 = 15 and a_(i+1) =a_i + 4 for all i>=1.
This sequence is arithmetic. Give the explicit description of the sequence.

2007-01-17 01:38:02 · 2 answers · asked by pkbrauer 1 in Science & Mathematics Mathematics

2 answers

A sequence is said to be arithmetic if the difference d between two adjacent terms a[i+1] and a[i] is constant.

The formula for the i-th term can be derived inductivly:

a[i+1] - a[i] = d => a[i+1] = a[i] + d

a[2] = a[1] + d
a[3] = a[2] + d = (a[1] + d) + d = a[1] + 2*d
a[4] = a[3] + d = (a[1] + 2*d) + d = a[1] + 3*d
....
We notice the regularity:
a[i] = a[1] + (i - 1)*d, i >= 1
This can be proven by mathemctical induction:
a[1] = a[1] + (1-1)*d = a[1] (true!)
a[i+1] = a[i] + d = (a[1] + (i-1)*d) + d = a[1] + i*d (true for i+1)

In our case, a[1] = 15 and d = 4, so the general term is:
a[1] = 15 + 4*(i - 1) = 4*i + 11

2007-01-17 01:43:45 · answer #1 · answered by Bushido The WaY of DA WaRRiOr 2 · 0 0

Its linear
a_i = 4(i-1) + 15

2007-01-17 01:44:11 · answer #2 · answered by Morkeleb 3 · 1 0

fedest.com, questions and answers