asked 139k views
0 votes
Find a recursive rule for the nth term of the sequence.

-10, 2, 14, 26, ...

asked
User Aamarks
by
7.6k points

1 Answer

0 votes

9514 1404 393

Answer:

a[1] = -10

a[n] = 12 + a[n-1]

Explanation:

First differences are ...

  • 2 -(-10) = 12
  • 14 -2 = 12
  • 26 -14 = 12

A constant first difference of 12 means this is an arithmetic sequence. Each term is 12 more than the previous, so the recursive rule is ...

a[1] = -10

a[n] = 12 + a[n-1]

answered
User Puppybits
by
8.1k 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.