asked 181k views
2 votes
The sequence is defined recursively. Write the first four terms.

a 1 = -10; a n = n - a n - 1

asked
User Theorder
by
9.1k points

1 Answer

3 votes

Answer:

-10, 12, -9 and 13

Explanation:

Given the recursive sequence

a1 = -10

an = n - an-1

a2 = 2 - a1

a2 = 2 - (-10)

a2 = 2+10

a2 = 12

a3 = 3 - a2

a3 = 3 - (12)

a3 = -9

a4 = 4 - a3

a4 = 4 - (-9)

a4 = 4+9

a4 = 13

Hence the first 4 terms are -10, 12, -9 and 13

answered
User Redseven
by
8.8k points

No related questions found

Welcome to Qamnty — a place to ask, share, and grow together. Join our community and get real answers from real people.