Ask Question
28 November, 14:57

Complete the recursive formula of the geometric sequence 0.2,-1,5,-25

+4
Answers (1)
  1. 28 November, 17:45
    0
    s[1] = 0.2; s[n] = - 5·s[n-1]

    Step-by-step explanation:

    To write a recursive formula, you need to know how a given term relates to the ones before it. Here, each term is - 5 times the one before. So part of the formula is ...

    s[n] = - 5·s[n-1]

    The other part of a recursive formula is the part that tells the initial values necessary to make this recursive function work. Here, one initial value is needed. We know that the first term is 0.2, so that's what we need to say:

    s[1] = 0.2

    __

    The recursive formula is ...

    s[1] = 0.2 s[n] = - 5·s[n-1]
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Complete the recursive formula of the geometric sequence 0.2,-1,5,-25 ...” in 📙 Mathematics if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers