One Rule Gives You the Hundredth Term; the Other Makes You Walk There
Learn to spot the pattern in a sequence and continue it, write the explicit rule for the nth term, write the recursive rule including the Fibonacci sequence, and convert between the two descriptions.
What are the two different ways to describe a sequence?
Look at , , , , . There are two honest ways to say what is going on.
The recursive way: start at and keep adding .
The explicit way: the th term is three times , less one.
Both describe the same list. But ask for the hundredth term and they behave completely differently. The explicit rule gives it at once:
The recursive rule gives it too — after you have worked out the other ninety-nine terms first.
So the explicit rule is the more useful one whenever it exists. Its drawback is that some sequences have no simple explicit rule at all, and the Fibonacci sequence in the third section is the standard example: it is easy to describe recursively and hard to describe explicitly.
This page covers the first part of the CBSE Class 9 Mathematics chapter on sequences — continuing a pattern, writing both kinds of rule, and moving between them.
The recursive way: start at and keep adding .
The explicit way: the th term is three times , less one.
Both describe the same list. But ask for the hundredth term and they behave completely differently. The explicit rule gives it at once:
The recursive rule gives it too — after you have worked out the other ninety-nine terms first.
So the explicit rule is the more useful one whenever it exists. Its drawback is that some sequences have no simple explicit rule at all, and the Fibonacci sequence in the third section is the standard example: it is easy to describe recursively and hard to describe explicitly.
This page covers the first part of the CBSE Class 9 Mathematics chapter on sequences — continuing a pattern, writing both kinds of rule, and moving between them.
How do you spot the pattern and write the next three terms?
Write the differences between consecutive terms first. If they are constant, the rule is add the same amount. If they are not, look at the ratios, then at the differences of the differences.
Worked example 1 — constant differences. , , , . Differences: , , . So keep adding :
Worked example 2 — constant ratio. , , , . Differences , , are not constant, but the ratios are , , . So keep doubling:
Worked example 3 — square numbers. , , , . Differences , , are not constant, but they grow by each time, so the next differences are , , :
These are , , — the square numbers.
Worked example 4 — triangular numbers. , , , . Differences , , , increasing by one, so the next differences are , , :
These count dots stacked in a triangle: one row of , then , then , and so on.
Worked example 5 — each term from the two before it. , , , , . Differences are , , , , which is the sequence itself shifted — a signal to try adding pairs. Indeed , , , so
This is the Fibonacci sequence.
Worked example 6 — an alternating sign. , , , . The ratio is each time:
A finite list never forces a single continuation. After , , the answer is natural under keep doubling, but is equally defensible under add one more each time. So a complete answer states the rule as well as the terms — the rule is what makes the continuation more than a guess.
Where the structure supplies the certainty. For the triangular numbers the rule is not fitted to the numbers at all; it is a count of dots, and each new row genuinely adds one more dot than the row before. That is the difference between a pattern you have justified and one you have merely matched, and the next sections turn justified patterns into formulas.
Worked example 1 — constant differences. , , , . Differences: , , . So keep adding :
Worked example 2 — constant ratio. , , , . Differences , , are not constant, but the ratios are , , . So keep doubling:
Worked example 3 — square numbers. , , , . Differences , , are not constant, but they grow by each time, so the next differences are , , :
These are , , — the square numbers.
Worked example 4 — triangular numbers. , , , . Differences , , , increasing by one, so the next differences are , , :
These count dots stacked in a triangle: one row of , then , then , and so on.
Worked example 5 — each term from the two before it. , , , , . Differences are , , , , which is the sequence itself shifted — a signal to try adding pairs. Indeed , , , so
This is the Fibonacci sequence.
Worked example 6 — an alternating sign. , , , . The ratio is each time:
A finite list never forces a single continuation. After , , the answer is natural under keep doubling, but is equally defensible under add one more each time. So a complete answer states the rule as well as the terms — the rule is what makes the continuation more than a guess.
Where the structure supplies the certainty. For the triangular numbers the rule is not fitted to the numbers at all; it is a count of dots, and each new row genuinely adds one more dot than the row before. That is the difference between a pattern you have justified and one you have merely matched, and the next sections turn justified patterns into formulas.
Formula
How do you write the explicit rule for the nth term?
**For a sequence with constant differences, the difference is the coefficient of **, and the constant is whatever makes the first term come out right:
For sequences that are not of that kind, recognise the standard families below.
**Worked example 1 — constant difference .** For , , , : , and , so
Check at : . At : . Then and .
**Worked example 2 — constant difference .** For , , , : and , so
Check at : . Then .
Worked example 3 — square numbers. For , , , :
Worked example 4 — triangular numbers. The th triangular number is the sum , and the closed form is
Check at : . Correct. Then and .
Worked example 5 — a doubling sequence. For , , , the ratio is , so
Check at : . At : . Then .
Worked example 6 — working backwards from a term. Which term of , , , equals ? Solve :
So is the twentieth term. And is a term? gives , which is not divisible by — so no.
Always check the rule at a term other than the first. The constant was chosen to make correct, so the first term proves nothing. The second or third term is the real test, and it takes one substitution.
Not every sequence has a workable explicit rule. The Fibonacci sequence does have one, but it involves irrational numbers and is well beyond this stage — so it is described recursively instead, which is the next section.
For sequences that are not of that kind, recognise the standard families below.
**Worked example 1 — constant difference .** For , , , : , and , so
Check at : . At : . Then and .
**Worked example 2 — constant difference .** For , , , : and , so
Check at : . Then .
Worked example 3 — square numbers. For , , , :
Worked example 4 — triangular numbers. The th triangular number is the sum , and the closed form is
Check at : . Correct. Then and .
Worked example 5 — a doubling sequence. For , , , the ratio is , so
Check at : . At : . Then .
Worked example 6 — working backwards from a term. Which term of , , , equals ? Solve :
So is the twentieth term. And is a term? gives , which is not divisible by — so no.
Always check the rule at a term other than the first. The constant was chosen to make correct, so the first term proves nothing. The second or third term is the real test, and it takes one substitution.
Not every sequence has a workable explicit rule. The Fibonacci sequence does have one, but it involves irrational numbers and is well beyond this stage — so it is described recursively instead, which is the next section.
How do you write a recursive rule and use it for the Fibonacci sequence?
Give the starting term or terms, then a rule that builds each new term from the ones before it. A recursive description always needs both halves.
Worked example 1 — adding a constant. For , , , :
Generating: , , , . Correct.
Worked example 2 — multiplying by a constant. For , , , :
Generating: , , , , .
Worked example 3 — triangular numbers. Each one adds the next whole number:
Generating: , , , . Correct.
Worked example 4 — square numbers. Each square adds the next odd number:
Generating: , , . Correct — and this is why , a fact the next part of this chapter uses.
Worked example 5 — the Fibonacci sequence. Here each term needs the two before it, so two starting values are required:
Generating step by step:
-
-
-
-
-
-
-
-
The number of starting values must match how far back the rule reaches. A rule using only needs one starting value; Fibonacci's rule reaches back two terms, so it needs two. **Giving only would leave the sequence undetermined**, since could be anything and every later term would change with it.
Worked example 6 — the same rule, different start. Keep but begin , :
A completely different list from the identical rule. So the starting values are part of the description, not preamble to it.
Recursion is how a growing pattern actually behaves. A matchstick row genuinely gains three sticks per square, and a stack of dots genuinely gains one more row — the recursive rule states the mechanism. The explicit rule is the shortcut derived from it, which is why converting between them is worth being able to do in both directions.
Worked example 1 — adding a constant. For , , , :
Generating: , , , . Correct.
Worked example 2 — multiplying by a constant. For , , , :
Generating: , , , , .
Worked example 3 — triangular numbers. Each one adds the next whole number:
Generating: , , , . Correct.
Worked example 4 — square numbers. Each square adds the next odd number:
Generating: , , . Correct — and this is why , a fact the next part of this chapter uses.
Worked example 5 — the Fibonacci sequence. Here each term needs the two before it, so two starting values are required:
Generating step by step:
-
-
-
-
-
-
-
-
The number of starting values must match how far back the rule reaches. A rule using only needs one starting value; Fibonacci's rule reaches back two terms, so it needs two. **Giving only would leave the sequence undetermined**, since could be anything and every later term would change with it.
Worked example 6 — the same rule, different start. Keep but begin , :
A completely different list from the identical rule. So the starting values are part of the description, not preamble to it.
Recursion is how a growing pattern actually behaves. A matchstick row genuinely gains three sticks per square, and a stack of dots genuinely gains one more row — the recursive rule states the mechanism. The explicit rule is the shortcut derived from it, which is why converting between them is worth being able to do in both directions.
How do you convert between the explicit and recursive descriptions?
Explicit to recursive: find the difference between consecutive terms. Recursive to explicit: identify the constant difference and fit the constant.
Worked example 1 — explicit to recursive. Given , compute the difference:
So the recursive form is , with .
Worked example 2 — recursive to explicit. Given and , the difference is and the constant is :
Check at : . At : , matching , , .
Worked example 3 — explicit to recursive for the squares. Given :
So with — the odd numbers, as the previous section found by inspection.
Worked example 4 — explicit to recursive for the triangular numbers. Given :
So with . Both descriptions confirmed against each other.
Worked example 5 — recognising a family from its rule. A sequence has with . The increments are the odd numbers, so the terms are the partial sums of the odds — the square numbers, and the explicit rule is .
Another has with . The increments are the whole numbers, so these are the triangular numbers, .
Worked example 6 — a relation between the two families. Add two consecutive triangular numbers:
So . Check algebraically:
Two triangles of dots, one turned upside down, fit together into a square — which is the picture that identity draws.
Conversion is only easy in one direction for some sequences. Going explicit to recursive is always a subtraction and always works. Going recursive to explicit requires recognising the pattern of increments, and for Fibonacci no elementary explicit rule exists — the increments are the sequence itself, so there is nothing simpler to sum. That asymmetry is the reason both descriptions are taught, rather than one being treated as the proper form.
Worked example 1 — explicit to recursive. Given , compute the difference:
So the recursive form is , with .
Worked example 2 — recursive to explicit. Given and , the difference is and the constant is :
Check at : . At : , matching , , .
Worked example 3 — explicit to recursive for the squares. Given :
So with — the odd numbers, as the previous section found by inspection.
Worked example 4 — explicit to recursive for the triangular numbers. Given :
So with . Both descriptions confirmed against each other.
Worked example 5 — recognising a family from its rule. A sequence has with . The increments are the odd numbers, so the terms are the partial sums of the odds — the square numbers, and the explicit rule is .
Another has with . The increments are the whole numbers, so these are the triangular numbers, .
Worked example 6 — a relation between the two families. Add two consecutive triangular numbers:
So . Check algebraically:
Two triangles of dots, one turned upside down, fit together into a square — which is the picture that identity draws.
Conversion is only easy in one direction for some sequences. Going explicit to recursive is always a subtraction and always works. Going recursive to explicit requires recognising the pattern of increments, and for Fibonacci no elementary explicit rule exists — the increments are the sequence itself, so there is nothing simpler to sum. That asymmetry is the reason both descriptions are taught, rather than one being treated as the proper form.
Exam tip
Exam tip: write the differences first, then check at a second term
Write the differences under the sequence before anything else. Constant differences mean a linear rule; growing differences mean squares or triangles; constant ratios mean doubling or halving.
If the differences are not constant, take their differences too. For the second differences are all — the signature of .
State the rule, not just the next terms. *Add each time* or earns the marks; three numbers alone do not.
Check the explicit rule at a term other than the first — the constant was fitted to , so or is the real test.
A recursive description needs its starting value. One starting value for a rule using ; two for Fibonacci, which reaches back twice.
Show the generation step by step for a recursive question: , , .
**For "which term equals ", solve the rule as an equation**: gives . If comes out fractional, the value is not a term — say so.
Learn the two standard forms: for triangular numbers, for squares.
**To convert explicit to recursive, subtract from and simplify — it is always a short algebra step.
And remember ** — it turns several triangular-number questions into one line.
If the differences are not constant, take their differences too. For the second differences are all — the signature of .
State the rule, not just the next terms. *Add each time* or earns the marks; three numbers alone do not.
Check the explicit rule at a term other than the first — the constant was fitted to , so or is the real test.
A recursive description needs its starting value. One starting value for a rule using ; two for Fibonacci, which reaches back twice.
Show the generation step by step for a recursive question: , , .
**For "which term equals ", solve the rule as an equation**: gives . If comes out fractional, the value is not a term — say so.
Learn the two standard forms: for triangular numbers, for squares.
**To convert explicit to recursive, subtract from and simplify — it is always a short algebra step.
And remember ** — it turns several triangular-number questions into one line.
Did you know
Why eight times a triangular number is always one short of a square
Take any triangular number, multiply it by eight, and add one. The result is always a perfect square.
- :
- :
- :
- :
- :
The squares produced are — the odd squares, in order, with giving .
The algebra is short enough to check. With :
And is odd for every whole , which is exactly the pattern observed. For it gives , matching .
There is also a picture. Eight copies of a triangle of dots can be arranged around a single central dot to fill a square — the one extra dot is the , and it sits in the middle where the eight triangles cannot reach.
What makes this worth noticing is that the identity is an algebraic rearrangement of a formula you already have. The expression is a perfect square because of the identity from the algebra chapter, with and .
So a fact about stacked dots turns out to be the square of a binomial, and the connection runs through — a formula the next part of this chapter derives properly rather than quoting.
- :
- :
- :
- :
- :
The squares produced are — the odd squares, in order, with giving .
The algebra is short enough to check. With :
And is odd for every whole , which is exactly the pattern observed. For it gives , matching .
There is also a picture. Eight copies of a triangle of dots can be arranged around a single central dot to fill a square — the one extra dot is the , and it sits in the middle where the eight triangles cannot reach.
What makes this worth noticing is that the identity is an algebraic rearrangement of a formula you already have. The expression is a perfect square because of the identity from the algebra chapter, with and .
So a fact about stacked dots turns out to be the square of a binomial, and the connection runs through — a formula the next part of this chapter derives properly rather than quoting.
Exam relevance
How do sequences feed into JEE Main?
Because the explicit and recursive descriptions become the two standard ways of specifying a series, and recursion is the engine of mathematical induction.
This is the foundation for Class 11 Mathematics Sequences and Series and Principle of Mathematical Induction, both examined in JEE Main. The explicit rule found here is the th term of an arithmetic progression, written there as — the same expression rearranged. The doubling rule is the th term of a geometric progression. Both standard forms are already on this page under different names, which the next two parts of this chapter make explicit.
Recursion is what induction proves things about. A recursive rule says how each term follows from the last, and induction is the method for proving a closed formula matches it — assume it for , derive it for . The conversion worked through here, showing , is precisely the inductive step for the formula , and Class 11 questions ask for exactly that argument written formally.
Triangular and square numbers reappear as summation formulas. Class 11 gives
and the first of those is the triangular-number formula. Questions requiring a sum of a series in use these as building blocks, and the identity is the kind of manipulation that shortens them.
The Fibonacci sequence appears in JEE Advanced and olympiad problems as a recurrence to be analysed, and it is the standard example of why a recursive definition is sometimes the only practical one. Its explicit formula involves irrational numbers and is met much later, which is the honest reason it is left recursive here.
For NTSE and olympiad papers, pattern-continuation and next-term questions appear directly, and the second-differences technique on this page is the reliable method for them.
What the questions look like. For board work, expect write the next three terms with the rule stated, **find the th term and a specified term such as the twentieth, generate terms from a recursive rule, convert between the two forms, and identify triangular or square numbers. For JEE Main, sequences appear as AP and GP problems, as summations, and as recurrences.
How board and competitive emphasis differ. A board paper rewards the stated rule** and the step-by-step generation. A competitive paper assumes the th term formula and tests whether you can sum a series or recognise which progression is hiding in a word problem.
The single trap that costs the most marks. Giving a recursive rule without its starting values, or giving only one where two are needed. with alone describes infinitely many sequences — and both obey it. The starting values are part of the answer, and an otherwise perfect rule loses marks without them.
This is the foundation for Class 11 Mathematics Sequences and Series and Principle of Mathematical Induction, both examined in JEE Main. The explicit rule found here is the th term of an arithmetic progression, written there as — the same expression rearranged. The doubling rule is the th term of a geometric progression. Both standard forms are already on this page under different names, which the next two parts of this chapter make explicit.
Recursion is what induction proves things about. A recursive rule says how each term follows from the last, and induction is the method for proving a closed formula matches it — assume it for , derive it for . The conversion worked through here, showing , is precisely the inductive step for the formula , and Class 11 questions ask for exactly that argument written formally.
Triangular and square numbers reappear as summation formulas. Class 11 gives
and the first of those is the triangular-number formula. Questions requiring a sum of a series in use these as building blocks, and the identity is the kind of manipulation that shortens them.
The Fibonacci sequence appears in JEE Advanced and olympiad problems as a recurrence to be analysed, and it is the standard example of why a recursive definition is sometimes the only practical one. Its explicit formula involves irrational numbers and is met much later, which is the honest reason it is left recursive here.
For NTSE and olympiad papers, pattern-continuation and next-term questions appear directly, and the second-differences technique on this page is the reliable method for them.
What the questions look like. For board work, expect write the next three terms with the rule stated, **find the th term and a specified term such as the twentieth, generate terms from a recursive rule, convert between the two forms, and identify triangular or square numbers. For JEE Main, sequences appear as AP and GP problems, as summations, and as recurrences.
How board and competitive emphasis differ. A board paper rewards the stated rule** and the step-by-step generation. A competitive paper assumes the th term formula and tests whether you can sum a series or recognise which progression is hiding in a word problem.
The single trap that costs the most marks. Giving a recursive rule without its starting values, or giving only one where two are needed. with alone describes infinitely many sequences — and both obey it. The starting values are part of the answer, and an otherwise perfect rule loses marks without them.
Key takeaways
Sequences, explicit rules and recursion: quick revision
- Write the differences first. Constant differences mean a linear rule; constant ratios mean doubling; growing differences mean squares or triangles.
- (add ). (double). (ratio ).
- — square numbers, second differences all .
- — triangular numbers, differences .
- — Fibonacci, each term the sum of the two before.
- State the rule, not just the terms — a finite list never forces one continuation.
- Explicit rule for constant difference : .
- gives , so and .
- gives , so .
- Squares: , so . Triangles: , so and .
- Doubling: gives , so .
- **"Which term equals "**: solve to get . gives no whole , so is not a term.
- Check the explicit rule at a second term, since the constant was fitted to the first.
- Recursive rule needs a starting value and a step: , .
- , generates the triangles; , generates the squares by adding odd numbers.
- Fibonacci needs TWO starting values: with , giving .
- The same rule from gives — the starting values are part of the description.
- Explicit to recursive: subtract. ; ; .
- ****: and , proved by .
- ** is always an odd square**: , since .
- Fibonacci has no elementary explicit rule at this stage, which is why both descriptions are needed.
Write out the Fibonacci sequence to the fifteenth term, then divide each term by the one before it and watch what the answers settle towards.
- (add ). (double). (ratio ).
- — square numbers, second differences all .
- — triangular numbers, differences .
- — Fibonacci, each term the sum of the two before.
- State the rule, not just the terms — a finite list never forces one continuation.
- Explicit rule for constant difference : .
- gives , so and .
- gives , so .
- Squares: , so . Triangles: , so and .
- Doubling: gives , so .
- **"Which term equals "**: solve to get . gives no whole , so is not a term.
- Check the explicit rule at a second term, since the constant was fitted to the first.
- Recursive rule needs a starting value and a step: , .
- , generates the triangles; , generates the squares by adding odd numbers.
- Fibonacci needs TWO starting values: with , giving .
- The same rule from gives — the starting values are part of the description.
- Explicit to recursive: subtract. ; ; .
- ****: and , proved by .
- ** is always an odd square**: , since .
- Fibonacci has no elementary explicit rule at this stage, which is why both descriptions are needed.
Write out the Fibonacci sequence to the fifteenth term, then divide each term by the one before it and watch what the answers settle towards.