English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

3 answers

Recursive series: a series where each term in the series is defined in terms of previous terms in the series. Examples:

Fibonacci series: 1, 1, 2, 3, 5, 8, 13, 21... in general, the nth term in the series is defined as the sum of the (n-1)th and (n-2)th term.
Factorial series: 0!=1, n!=n*(n-1)!

Which leads me to an old joke I saw in a dictionary once:

Recursion (n): see recursion.

2006-07-30 11:45:17 · answer #1 · answered by Pascal 7 · 0 0

A function which is defined in terms of itself is called a recurive function or a series. It must have a terminating comdition

like for factorial

fact(0) = 1; fact(n) = n* fact(n-1) n >0

fibonacci series

f(0) = 0; f(1) = 1;
f(n) = f(n-1) + f(n-2) n >1

2006-07-30 18:59:04 · answer #2 · answered by Mein Hoon Na 7 · 0 0

All geometric and arithmetic series are recursive. This means that each term is defined in terms of the previous term.

2006-07-30 19:09:04 · answer #3 · answered by Anonymous · 0 0

fedest.com, questions and answers