21.0k views
0 votes
Write a recursive sequence that represents the sequence defined by the

following explicit formula:
An = 1 - 5(n − 1)

Write a recursive sequence that represents the sequence defined by the following explicit-example-1
User Lampak
by
4.8k points

1 Answer

4 votes

Answer:


a_1=1\\a_n=a_(n-1)-5

Explanation:

a₁ = 1 - 5(1 - 1) = 1 - 5·0 = 1

a = 1 - 5(2 - 1) = 1 - 5·1 = 1 - 5 = a - 5

a = 1 - 5(3 - 1) = 1 - 5·2 = 1 - 5 - 5 = a - 5

a = 1 - 5(4 - 1) = 1 - 5·3 = 1 - 5 - 5 - 5 = a - 5

and so on, therefore:

aₙ = aₙ₋₁ - 5

User Wiktor Zychla
by
6.1k points