answersLogoWhite

0


Best Answer

You need to know two numbers to completely describe the geometric sequence: the starting number, and the ratio between each number and the previous one.

When you use recursion, you always need a "base case", otherwise, the recursion will repeat without end.

In words, if "n" is 1, the result is the starting term. Otherwise, it is the ratio times the "n-1"th term.

The following version is appropriate for a programming language (written here in pseudocode, i.e., not for a specific language):

function geometric(starting_number, ratio, term)

if term = 1:

result = starting_number

else:

result = ratio * geometric(starting_number, ratio, term - 1)

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Which is the recursive formula for the nth term in a geometric sequence?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

A certain arithmetic sequence has the recursive formula If the common difference between the terms of the sequence is -11 what term follows the term that has the value 11?

In this case, 22 would have the value of 11.


Is geometric sequence a sequence in which each successive terms of the sequence are in equal ratio?

Yes, that's what a geometric sequence is about.


What is the form of a sequence where you get one term by doing something to the previous term?

Recursive Form


What is the 9th term in the geometric sequence described by this explicit formula?

In order to answer the question is is necessary to know what the explicit formula was. But, since you have not bothered to provide that information, the answer is .


In the geometric sequence 4,12,36,....which term is 8748?

2946


What is the formula for the sequence 3 6 12 24 48 96 192 384?

previous * 2 Since each term after the first is the product of the preceding term and 2 (a constant which can be found by dividing any term by its predecessor and is called the common ratio, r), this is a geometric sequence. In general, if the nth term of a geometric sequence is represented by an, then an = a1rn-1 In our case, a = 3 and r = 2, so the formula for the sequence becomes, an = 3 x 2n-1


When In a geometric sequence the term an plus 1 can be smaller than the term a?

Yes, it can.


What is the next term in the geometric sequence 4-1236?

1240


How is the value of any term calculated if the position of term is known?

A sequence usually has a position-to-value function. Alternatively, it can be derived from the recursive relationship that defines the sequence.


How do you determine if a sequence is geometric?

A sequence is geometric if each term is found by mutiplying the previous term by a certain number (known as the common ratio). 2,4,8,16, --> here the common ratio is 2.


What does geometric sequence?

You mean what IS a geometric sequence? It's when the ratio of the terms is constant, meaning: 1, 2, 4, 8, 16... The ratio of one term to the term directly following it is always 1:2, or .5. So like, instead of an arithmetic sequence, where you're adding a specific amount each time, in a geometric sequence, you're multiplying by that term.


Determine if the sequence below is arithmetic or geometric and determine the common difference/ ratio in simplest form 300,30,3?

This is a geometric sequence since there is a common ratio between each term. In this case, multiplying the previous term in the sequence by 10.