By Fatskills Exam Guides Team — the exam nerds behind 28,500+ quizzes and 2.1M practice questions across 500+ global exams.
Recursive Formulas are mathematical expressions that define a sequence or a function in terms of a smaller version of itself. This means that the formula is applied repeatedly to produce the next term or value in the sequence.
You'll encounter this topic in exams that test mathematical reasoning, problem-solving, and pattern recognition. Expect questions that require you to identify and apply recursive formulas to solve problems, often with a time constraint.
Recursive formulas appear in various exams, including mathematics, computer science, and engineering. They typically carry a moderate to high weightage, ranging from 15% to 30% of the total marks. The examiner is testing your ability to recognize and apply recursive patterns, think logically, and solve problems efficiently.
To master recursive formulas, you need to understand the following key concepts:
You must be able to distinguish between these concepts and apply them correctly to solve problems.
The primary rule of recursive formulas is:
Sub-rules and exceptions include:
A simple visual pattern to remember is:
Intermediate
n! = n × (n-1)!
n
F(1) = 1
F(2) = F(1) + F(0) = 1 + 0 = 1
F(3) = F(2) + F(1) = 1 + 1 = 2
F(4) = F(3) + F(2) = 2 + 1 = 3
F(5) = F(4) + F(3) = 3 + 2 = 5
F(5) = 5
n!
n = 5
5! = 5 × 4!
4! = 4 × 3!
3! = 3 × 2!
2! = 2 × 1!
1! = 1
4! = 4 × 3! = 4 × 3 × 2! = 4 × 3 × 2 × 1! = 24
5! = 5 × 4! = 5 × 24 = 120
5! = 120
a_n = 2a_(n-1) + 1
a_1 = 1
a_2 = 2a_1 + 1 = 2(1) + 1 = 3
a_3 = 2a_2 + 1 = 2(3) + 1 = 7
a_4 = 2a_3 + 1 = 2(7) + 1 = 15
a_(n-1)
2^n - 1
n = 4
Why the Distractors Are Tempting: Options B, C, and D are plausible but incorrect values for 4!.
4!
Question: Find the 3rd term of the Fibonacci sequence.
F(n) = F(n-1) + F(n-2)
Why the Distractors Are Tempting: Options A, C, and D are plausible but incorrect values for the 3rd term.
Question: Find the limit of the recursive sequence a_n = 2a_(n-1) + 1, where a_1 = 1.
Why the Distractors Are Tempting: Options B, C, and D are plausible but incorrect values for the limit.
Question: Find the value of n! when n = 6.
n = 6
Why the Distractors Are Tempting: Options B, C, and D are plausible but incorrect values for 6!.
6!
Question: Find the 5th term of the recursive sequence a_n = 2a_(n-1) + 1, where a_1 = 1.
Join 4M+ learners. Unlock unlimited quizzes, wrong-answer tracking, flashcards + reminders, study guides, and 1-on-1 challenges.