Could anyone inform me what a recursive form of an equation is?
As in: Choose the recursive form of the equation that represents the sequence...
As in: Choose the recursive form of the equation that represents the sequence...
-
_ will be used to represent subscript
A recursive sequence is typically in the form of:
a_n=a_(n-1)
So now say you had the sequence 5, 8, 11, 14, 17. The recursive form would be
a_n=a_(n-1)+3
A recursive sequence is typically in the form of:
a_n=a_(n-1)
So now say you had the sequence 5, 8, 11, 14, 17. The recursive form would be
a_n=a_(n-1)+3