Introduction to Sequences
Chapter 8: Predicting What Comes Next — Exploring Sequences and Progressions
Page 1 of 7: Introduction to Sequences — Full Concept Coverage
Concept Introduction
Have you ever watched a tiny sapling grow into a tree? Imagine you decide to measure its height every Sunday morning. On the first Sunday, it's 10 cm tall. The next, it's 13 cm. The third Sunday, it's 16 cm, and the fourth, 19 cm. You have a list of numbers: 10, 13, 16, 19, ...
This ordered list of numbers is a perfect real-life example of a sequence. Each number in the list is called a term, and they are arranged according to a specific rule or pattern. In this case, the rule is simple: "add 3 cm to the previous week's height." Mathematics gives us the tools to describe such patterns, predict future terms (like the plant's height on the 10th Sunday), and understand the structure behind them. This chapter is your guide to mastering the language of patterns.
Definitions & Formulas
Understanding the language of sequences is the first step. Here are the fundamental terms and symbols we will use throughout this chapter.
| Symbol / Term | Meaning | Example |
|---|---|---|
| Sequence | An ordered arrangement of numbers, shapes, or other objects that follow a specific rule or pattern. | 2, 4, 6, 8, ... (a sequence of even numbers) |
| Term | Each individual number or item in a sequence. | In 2, 4, 6, 8, ..., the number '6' is a term. |
n | The position or index of a term in the sequence. n must be a positive integer (1, 2, 3, ...). | For the term '6', its position n is 3. |
a₁, a₂, ... | Notation for the terms. a₁ is the first term, a₂ is the second term, and so on. | In 2, 4, 6, 8, ..., a₁=2, a₂=4, a₃=6. |
aₙ | The n-th term or the general term. It's a formula that defines the rule of the sequence. | For 2, 4, 6, 8, ..., the general term is aₙ = 2n. |
| Finite Sequence | A sequence with a specific, countable number of terms. It has a definite end. | The sequence of marks in a test: 85, 92, 78. |
| Infinite Sequence | A sequence that continues forever and has no last term. | The sequence of natural numbers: 1, 2, 3, 4, ... |
{{KEY: type=concept | title=Term Value vs. Term Position | text=A crucial concept is to distinguish between n and aₙ. The variable n tells you the position of a term in the line (1st, 2nd, 10th, etc.). The variable aₙ tells you the actual value of the term at that position.}}
The Logic of the General Term
How does a simple formula like aₙ = 2n + 5 generate an entire, infinite list of numbers? The logic is based on substitution. The general term is like a machine: you input a position (n), and it outputs the value of the term (aₙ) at that position.
Let's walk through how to generate a sequence from the general term aₙ = 2n + 5.
-
Understand the Goal: We want to find the list of numbers that this rule creates. We start by finding the first few terms.
-
Find the First Term (
a₁): The position of the first term isn=1. We substitute this value into our formula.a₁ = 2(1) + 5a₁ = 2 + 5 = 7 -
Find the Second Term (
a₂): For the second term, the position isn=2. We substitute this into the same formula.a₂ = 2(2) + 5a₂ = 4 + 5 = 9 -
Find the Third Term (
a₃): For the third term, the position isn=3.a₃ = 2(3) + 5a₃ = 6 + 5 = 11 -
Assemble the Sequence: By continuing this process, we can list the sequence.
The sequence is: 7, 9, 11, 13, ...
-
Predict Any Term: The power of the general term is that we don't need to list all previous terms to find a specific one. To find the 100th term (
a₁₀₀), we simply substituten=100.a₁₀₀ = 2(100) + 5 = 205
The general term aₙ is the fundamental building block for understanding and working with sequences.
Solved Examples
Let's apply these concepts to some problems, starting from easy and moving to more challenging ones.
Example 1: Finding the First Few Terms (Easy)
Given: The general term of a sequence is aₙ = 4n - 3.
To Find: The first three terms of the sequence.
Solution:
-
To find the first term (
a₁), we substituten = 1into the general formula.a₁ = 4(1) - 3 = 4 - 3 = 1 -
To find the second term (
a₂), we substituten = 2.a₂ = 4(2) - 3 = 8 - 3 = 5 -
To find the third term (
a₃), we substituten = 3.a₃ = 4(3) - 3 = 12 - 3 = 9
Final Answer: The first three terms of the sequence are 1, 5, and 9.
Example 2: Finding a Specific Term (Medium)
Given: A sequence is defined by the rule aₙ = n² + 2n.
To Find: The 15th term of the sequence (a₁₅).
Solution:
-
Identify the general term, which is given as
aₙ = n² + 2n. -
Identify the position of the term we need to find, which is
n = 15. -
Substitute
n = 15into the formula to calculatea₁₅.a₁₅ = (15)² + 2(15) -
Calculate the values.
15²is225and2 × 15is30.a₁₅ = 225 + 30 -
Perform the final addition.
a₁₅ = 255
Final Answer: The 15th term of the sequence is 255.
Example 3: Working with Alternating Signs (Hard)
Given: The general term of a sequence is aₙ = (-1)ⁿ⁺¹ × (n / (n+1)).
To Find: The 5th term (a₅) and the 10th term (a₁₀).
Solution:
-
First, let's find the 5th term by substituting
n = 5into the formula.a₅ = (-1)⁵⁺¹ × (5 / (5+1)) -
Simplify the exponent and the fraction.
5+1is6.a₅ = (-1)⁶ × (5 / 6) -
Calculate
(-1)⁶. Since the power is even, the result is+1.a₅ = 1 × (5 / 6) = 5/6 -
Now, let's find the 10th term by substituting
n = 10into the formula.a₁₀ = (-1)¹⁰⁺¹ × (10 / (10+1)) -
Simplify the exponent and the fraction.
10+1is11.a₁₀ = (-1)¹¹ × (10 / 11) -
Calculate
(-1)¹¹. Since the power is odd, the result is-1.a₁₀ = -1 × (10 / 11) = -10/11
Final Answer: The 5th term is 5/6 and the 10th term is -10/11.
Example 4: Understanding a Recursive Sequence (Tricky)
Given: A sequence is defined such that its first term a₁ = 5 and for all n > 1, the rule is aₙ = 2aₙ₋₁ - 3.
To Find: The first four terms of the sequence.
Solution:
-
We are given the first term directly.
a₁ = 5 -
To find the second term (
a₂), we use the recursive rule withn = 2. The rule isa₂ = 2a₂₋₁ - 3, which simplifies toa₂ = 2a₁ - 3. We use the known value ofa₁.a₂ = 2(5) - 3 = 10 - 3 = 7 -
To find the third term (
a₃), we use the rule withn = 3, which isa₃ = 2a₂ - 3. We must use the value ofa₂that we just calculated.a₃ = 2(7) - 3 = 14 - 3 = 11 -
To find the fourth term (
a₄), we use the rule withn = 4, which isa₄ = 2a₃ - 3. We use the value ofa₃.a₄ = 2(11) - 3 = 22 - 3 = 19
Final Answer: The first four terms of the sequence are 5, 7, 11, and 19.
Famous Numerical Patterns
Some sequences are so common and important that they have their own names. Recognizing them can be a great shortcut.
- Natural Numbers: 1, 2, 3, 4, 5, ... (
aₙ = n) - Even Numbers: 2, 4, 6, 8, 10, ... (
aₙ = 2n) - Odd Numbers: 1, 3, 5, 7, 9, ... (
aₙ = 2n - 1) - Square Numbers: 1, 4, 9, 16, 25, ... (
aₙ = n²) - Cube Numbers: 1, 8, 27, 64, 125, ... (
aₙ = n³) - Triangular Numbers: 1, 3, 6, 10, 15, ... (
aₙ = n(n+1)/2) These represent the total number of dots in a triangle that is built up row by row.
{{VISUAL: diagram: A simple dot pattern showing the first four triangular numbers (1, 3, 6, 10) arranged in triangles.}}
Tips & Tricks
When faced with a list of numbers, how do you find the pattern? Here are some techniques to try.
| Technique | How it Works | Example Sequence |
|---|---|---|
| 1. Find the Difference | Calculate the difference between consecutive terms (a₂ - a₁, a₃ - a₂, etc.). If it's a constant, you have an Arithmetic Progression. | 5, 8, 11, 14, ... (Difference is always +3) |
| 2. Check for Powers | Look at the numbers. Are they perfect squares (n²), cubes (n³), or close to them (e.g., n² - 1 or n³ + 1)? | 0, 3, 8, 15, 24, ... (This is n² - 1) |
| 3. Look for Alternation | If the signs of the terms are alternating (+, -, +, -, ...), the general term will almost certainly involve a factor of (-1)ⁿ or (-1)ⁿ⁺¹. | 1, -2, 3, -4, ... (This is (-1)ⁿ⁺¹ × n) |
Common Mistakes
Many students make similar small errors when first learning about sequences. Be aware of these common pitfalls.
| ❌ Wrong Approach | ✅ Right Approach | Why it Matters |
|---|---|---|
Assuming n can be zero. "Let's find the 0th term by setting n=0." | The position n is a natural number, so it must start from 1 (n = 1, 2, 3, ...). | The definition of a sequence in school mathematics is based on positions: 1st, 2nd, 3rd. There is no "0th" position. |
Confusing n and aₙ. Given aₙ = 5n, writing a₃ = 5a₃. | Substituting the position n into the formula. For aₙ = 5n, write a₃ = 5(3) = 15. | n is the input (position), and aₙ is the output (value). You must substitute the input value for n. |
For a recursive rule like aₙ = aₙ₋₁ + 4, calculating a₅ without a₄. | You must calculate terms in order. To find a₅, you first need the value of a₄. | Recursive sequences are like a chain. Each link depends on the one before it; you cannot skip links. |
Miscalculating (-1)ⁿ. Writing (-1)⁴ = -1. | Remember: (-1) raised to an even power is +1. (-1) raised to an odd power is -1. | This small sign error will make the entire term's value incorrect in an alternating sequence. |
Brain-Teaser Questions
Test your understanding with these slightly more challenging problems.
-
The start of a famous sequence is 1, 1, 2, 3, 5, 8, ... What are the next two terms? What is the rule that defines this sequence?
💡 Answer: The next two terms are 13 and 21. The rule is that each term is the sum of the two preceding terms. This is a recursive definition:
aₙ = aₙ₋₁ + aₙ₋₂, witha₁=1anda₂=1. This is the Fibonacci Sequence. -
A sequence is defined as follows:
aₙis the value of the n-th digit after the decimal point in the number e = 2.7182818... What is the value ofa₁ + a₅?💡 Answer:
a₁is the 1st digit after the decimal, which is 7.a₂is 1,a₃is 8,a₄is 2, anda₅is 8. Therefore,a₁ + a₅ = 7 + 8 = 15. -
What is the 20th term of the sequence 2, 6, 12, 20, 30, ...? (Hint: Think about how each term can be expressed as a product of two numbers).
💡 Answer: Let's analyze the terms:
a₁ = 2 = 1 × 2,a₂ = 6 = 2 × 3,a₃ = 12 = 3 × 4,a₄ = 20 = 4 × 5. The pattern isaₙ = n × (n+1). Therefore, the 20th term isa₂₀ = 20 × (20+1) = 20 × 21 = 420.
Mini Cheatsheet
Screenshot this table for a quick summary of today's key concepts. It's perfect for last-minute revision!
| Concept | Key Idea / Formula | Notes |
|---|---|---|
| Sequence | An ordered list of numbers following a rule. | e.g., 3, 6, 9, 12, ... |
| Position vs. Value | n is the position (1, 2, 3...). aₙ is the value at that position. | For 3, 6, 9, ..., if n=3, then a₃=9. |
General Term aₙ | A formula in terms of n that defines any term in the sequence. | Example: aₙ = 3n generates the sequence 3, 6, 9, ... |
| Recursive Formula | Defines a term based on the value of the previous term(s). | Example: aₙ = aₙ₋₁ + 3 with a₁=3. |
| Finding Terms | To find the k-th term, substitute n = k into the general formula. | To find the 50th term of aₙ = 2n-1, calculate a₅₀ = 2(50)-1 = 99. |
Explicit Rule for a Sequence & Recursive Rule for a Sequence
{{FORMULA: expr=tₙ = an + b | symbols=tₙ:the n-th term, n:term position, a:common difference, b:a constant}}
Defining Sequences: Explicit and Recursive Rules
Imagine you start a new fitness plan. On Day 1, you do 10 push-ups. Every day after, you decide to do 3 more push-ups than the day before. How many will you do on Day 15? Or Day 100?
Trying to list out every day's total would be tedious. What if you had a shortcut? A "rule" that could tell you the push-up count for any given day, just by knowing the day number.
This is the core idea behind defining sequences. Instead of just listing terms, we can create powerful mathematical rules that describe the entire sequence. This lesson explores two ways to create these rules: the explicit rule, which is like a direct calculator for any term, and the recursive rule, which defines a term based on the ones that came before it.
Definitions & Formulas
Understanding the language of sequences is the first step. Here are the key terms we will use.
| Symbol / Term | Meaning | Example |
|---|---|---|
| Sequence | An ordered list of numbers. | 2, 4, 6, 8, ... |
n | The term position or term number. It must be a natural number (1, 2, 3, ...). | In 2, 4, 6, 8, for the term 6, n is 3. |
tₙ or uₙ or sₙ | The n-th term of the sequence; the value of the term at position n. | For the sequence 2, 4, 6, 8, t₃ is 6. |
| Explicit Rule | A formula that calculates tₙ directly using its position, n. | tₙ = 2n. To find the 50th term, just plug in n=50. |
| Recursive Rule | A formula that defines tₙ by relating it to one or more previous terms (like tₙ₋₁). | tₙ = tₙ₋₁ + 2, with a starting term t₁ = 2. |
tₙ₋₁ | The term immediately before the n-th term (the previous term). | If we are looking at t₅, then tₙ₋₁ is t₄. |
The Logic Behind the Rules
How do we come up with these rules? Let's analyze a simple sequence of odd numbers: 1, 3, 5, 7, ... to understand the logic for both rule types.
1. Crafting an Explicit Rule (The Direct Formula)
-
Observe the relationship between term value and term position (
n). Let's list them out:- Position 1 (
n=1): Term is 1 - Position 2 (
n=2): Term is 3 - Position 3 (
n=3): Term is 5 - Position 4 (
n=4): Term is 7
- Position 1 (
-
Look for a pattern connecting
ntotₙ. Notice that each term is close to double its position number.- For
n=1,2 × 1 = 2. The term is1. We need to subtract 1. - For
n=2,2 × 2 = 4. The term is3. We need to subtract 1. - For
n=3,2 × 3 = 6. The term is5. We need to subtract 1.
- For
-
Generalize the pattern into a formula. The pattern is consistent: take the position number
n, multiply by 2, and then subtract 1. This gives us the explicit rule.tₙ = 2n – 1 -
Test the rule. Let's find the 5th term using our rule:
t₅ = 2 × 5 – 1 = 9. The sequence is1, 3, 5, 7, ...and the next term is indeed 9. The rule works!
2. Crafting a Recursive Rule (The Step-by-Step Formula)
-
Observe the relationship between a term and its previous term.
- To get from 1 to 3, we add 2.
- To get from 3 to 5, we add 2.
- To get from 5 to 7, we add 2.
-
State the relationship using sequence notation. Each term (
tₙ) is equal to the previous term (tₙ₋₁) plus 2.tₙ = tₙ₋₁ + 2 -
Provide a starting point. The recursive rule
tₙ = tₙ₋₁ + 2tells us how to move from one term to the next, but it doesn't tell us where to start. Without a starting value, we could have10, 12, 14, ...or-5, -3, -1, .... We must specify the first term.t₁ = 1 -
Combine them into the full recursive definition. The complete rule is the relationship and the starting point.
t₁ = 1, and tₙ = tₙ₋₁ + 2 for n ≥ 2
{{KEY: type=concept | title=Explicit vs. Recursive | text=An explicit rule is like having a GPS map: you can find any location (term) directly by knowing its address (position n). A recursive rule is like giving directions: "take 2 steps forward from where you are now," which means you must know your current position to find the next one.}}
Solved Examples
Let's apply these concepts to solve some problems, ranging from straightforward to more complex.
Example 1: Finding a Distant Term (Easy)
Given: The explicit rule for a sequence is uₙ = 2n – 1.
To Find: The 53rd term, the 108th term, and the 1170th term.
Solution:
-
The explicit formula
uₙ = 2n – 1allows us to calculate any term directly by substituting the value ofn. -
To find the 53rd term, we set
n = 53.u₅₃ = (2 × 53) – 1 = 106 – 1 = 105 -
To find the 108th term, we set
n = 108.u₁₀₈ = (2 × 108) – 1 = 216 – 1 = 215 -
To find the 1170th term, we set
n = 1170.u₁₁₇₀ = (2 × 1170) – 1 = 2340 – 1 = 2339
Final Answer:
The 53rd term is 105.
The 108th term is 215.
The 1170th term is 2339.
Example 2: Checking if a Number Belongs to a Sequence (Medium)
Given: A sequence is generated by the explicit formula sₙ = 5n – 2.
To Find: Check if the numbers 308 and 471 are terms of this sequence.
Solution:
-
For a number to be a term in the sequence, there must be a natural number
n(1, 2, 3, ...) that produces this number when plugged into the formula. -
Let's check for 308. We set
sₙ = 308and solve forn.5n – 2 = 308 -
Add 2 to both sides.
5n = 310 -
Divide by 5.
n = 310 ÷ 5 = 62 -
Since
n = 62is a natural number, 308 is indeed a term in the sequence. It is the 62nd term. -
Now, let's check for 471. We set
sₙ = 471and solve forn.5n – 2 = 471 -
Add 2 to both sides.
5n = 473 -
Divide by 5.
n = 473 ÷ 5 = 94.6 -
Since
n = 94.6is not a natural number, there is no term at position 94.6. Therefore, 471 is not a term in this sequence.
Final Answer:
308 is the 62nd term of the sequence.
471 is not a term of the sequence because its calculated position n is not a natural number.
Example 3: Working with a Recursive Rule (Hard)
Given: A sequence is defined by the recursive rule u₁ = 1 and uₙ = 2uₙ₋₁ + 3 for n ≥ 2.
To Find: The first four terms of the sequence.
Solution:
-
We are given the first term, which is our starting point.
u₁ = 1 -
To find the second term (
u₂), we use the rule withn = 2. The rule isu₂ = 2u₂₋₁ + 3, which simplifies tou₂ = 2u₁ + 3.u₂ = (2 × u₁) + 3 = (2 × 1) + 3 = 2 + 3 = 5 -
To find the third term (
u₃), we use the rule withn = 3. The rule isu₃ = 2u₃₋₁ + 3, which simplifies tou₃ = 2u₂ + 3. We use the value ofu₂we just found.u₃ = (2 × u₂) + 3 = (2 × 5) + 3 = 10 + 3 = 13 -
To find the fourth term (
u₄), we use the rule withn = 4. The rule isu₄ = 2u₄₋₁ + 3, which simplifies tou₄ = 2u₃ + 3. We use the value ofu₃.u₄ = (2 × u₃) + 3 = (2 × 13) + 3 = 26 + 3 = 29
Final Answer:
The first four terms of the sequence are 1, 5, 13, 29.
Example 4: The Virahānka–Fibonacci Sequence (Tricky)
Given: The Virahānka–Fibonacci sequence is defined by V₁ = 1, V₂ = 2, and Vₙ = Vₙ₋₁ + Vₙ₋₂ for n ≥ 3.
To Find: The first eight terms of the sequence.
Solution:
-
This recursive rule is special because it depends on the two previous terms. We are given the first two terms to start.
V₁ = 1 V₂ = 2 -
To find the third term (
V₃), we use the ruleV₃ = V₂ + V₁.V₃ = 2 + 1 = 3 -
To find the fourth term (
V₄), we use the ruleV₄ = V₃ + V₂.V₄ = 3 + 2 = 5 -
To find the fifth term (
V₅), we use the ruleV₅ = V₄ + V₃.V₅ = 5 + 3 = 8 -
We continue this pattern, always adding the two preceding terms.
V₆ = V₅ + V₄ = 8 + 5 = 13V₇ = V₆ + V₅ = 13 + 8 = 21V₈ = V₇ + V₆ = 21 + 13 = 34
Final Answer:
The first eight terms of the Virahānka–Fibonacci sequence are 1, 2, 3, 5, 8, 13, 21, 34.
Tips & Tricks
Master sequences with these powerful shortcuts.
| Tip | Technique | How it Helps |
|---|---|---|
1. The 'a' Shortcut | For any linear explicit rule tₙ = an + b, the value a is the constant difference between consecutive terms. | Quickly identify the pattern. If a sequence is 4, 9, 14, 19,..., the difference is 5, so the rule will start with 5n. |
| 2. The Natural Number Check | To check if a number k is a term, solve the explicit rule for n. If n is a natural number (1, 2, 3...), it's a term. | This provides a foolproof method to confirm if a number belongs to a sequence, preventing guesswork. |
| 3. Choose the Right Tool | Use the explicit rule to find a distant term (like the 500th). Use the recursive rule to find the very next term. | Saves a huge amount of time. Calculating the 500th term recursively would require 499 calculations! |
Common Mistakes
Avoid these common pitfalls when working with sequence rules.
| ❌ Wrong | ✅ Right | Why it's a Mistake |
|---|---|---|
tₙ = tₙ₋₁ + 5 (incomplete) | t₁ = 3, tₙ = tₙ₋₁ + 5 | A recursive rule must have a starting point (t₁). Without it, the sequence is not uniquely defined. |
For tₙ = 4n + 1, is 11 a term? 4n = 10, so n = 2.5. Yes, it's a term. | n=2.5 is not a natural number. The term position cannot be a fraction. So, 11 is not a term. | The term position n represents a count (1st, 2nd, 3rd...) and must be a positive integer. |
For tₙ = 10n, the 5th term is n=5. | For tₙ = 10n, the 5th term is t₅. n=5 is the position, and t₅ = 10 × 5 = 50 is the value of the term. | Confusing the position (n) with the value of the term at that position (tₙ) is a fundamental error. |
Brain-Teaser Questions
Test your understanding with these challenging problems.
-
A sequence is defined by
t₁ = 2,t₂ = 3, andtₙ = tₙ₋₁ + tₙ₋₂ + 1forn ≥ 3. What is the value oft₅?💡 Answer:
t₃ = t₂ + t₁ + 1 = 3 + 2 + 1 = 6.t₄ = t₃ + t₂ + 1 = 6 + 3 + 1 = 10.t₅ = t₄ + t₃ + 1 = 10 + 6 + 1 = 17. -
The number of seats in a concert hall's rows follows the explicit rule
sₙ = n² + 10. Can a row have exactly 179 seats?💡 Answer: We need to check if
n² + 10 = 179has a natural number solution forn.n² = 179 – 10 = 169.n = √169 = 13. Sincen=13is a natural number, yes, the 13th row has exactly 179 seats. -
Consider a sequence with the explicit rule
tₙ = (-1)ⁿ⁺¹ × (3n). What is the sum of the 10th term and the 11th term?💡 Answer: First, find the 10th term:
t₁₀ = (-1)¹⁰⁺¹ × (3 × 10) = (-1)¹¹ × 30 = -1 × 30 = -30. Next, find the 11th term:t₁₁ = (-1)¹¹⁺¹ × (3 × 11) = (-1)¹² × 33 = 1 × 33 = 33. The sum ist₁₀ + t₁₁ = -30 + 33 = 3.
Mini Cheatsheet
Screenshot this table for a quick revision of all the key concepts from this page.
| Concept | Key Formula / Idea | Example |
|---|---|---|
| Explicit Rule | Defines a term tₙ based on its position n. | tₙ = 3n – 7 |
| Recursive Rule | Defines a term tₙ based on previous terms like tₙ₋₁. | t₁ = 1, tₙ = tₙ₋₁ + 4 |
Term Position (n) | Must be a natural number (1, 2, 3, ...). | For 8, 11, 14, the term 14 is at n=3. |
| Checking Membership | To see if k is a term, solve tₙ = k. n must be a natural number. | Is 20 in tₙ=3n–7? 3n=27, n=9. Yes. |
| Virahānka–Fibonacci | V₁=1, V₂=2, Vₙ = Vₙ₋₁ + Vₙ₋₂. Each term is the sum of the previous two. | 1, 2, 3, 5, 8, 13, ... |
Arithmetic Progressions
Page 3: Arithmetic Progressions
Concept Introduction
Imagine you start a new job with a monthly salary of ₹30,000, and every year your salary increases by ₹2,000. After 1 year, your salary becomes ₹32,000, after 2 years it becomes ₹34,000, and so on. The sequence of your annual salaries forms a pattern: 30000, 32000, 34000, 36000, ...
Notice something special? Each term is obtained by adding the same fixed amount (₹2,000) to the previous term. This constant addition creates what we call an Arithmetic Progression or AP.
Arithmetic progressions appear everywhere in daily life — taxi fares that charge a base fee plus a per-kilometer rate, seating arrangements in stadiums where each row has a few more seats than the previous one, or even the pattern of odd numbers 1, 3, 5, 7, ... Understanding APs helps us predict future terms, find specific terms without listing all previous ones, and solve real-world planning problems efficiently.
{{FORMULA: expr=tₙ = a + (n - 1) × d | symbols=tₙ:nth term of AP, a:first term, n:term position, d:common difference}}
Definitions & Key Terms
| Symbol / Term | Meaning |
|---|---|
| AP | Arithmetic Progression — a sequence where consecutive terms differ by a constant |
| a | First term of the AP |
| d | Common difference (the constant added to each term to get the next) |
| n | Position of the term (1st, 2nd, 3rd, ..., nth) |
| tₙ | The nth term of the AP |
| Explicit Rule | Formula giving tₙ directly: tₙ = a + (n - 1) × d |
| Recursive Rule | Formula giving next term from previous: t₁ = a, tₙ = tₙ₋₁ + d for n ≥ 2 |
{{KEY: type=definition | title=What Makes a Sequence an AP? | text=A sequence is an AP if and only if the difference between any term and its previous term is constant throughout. This constant is called the common difference (d).}}
Understanding the Formula: Logic & Derivation
Let's build the nth term formula step-by-step to understand where it comes from.
1. Start with the first term:
The first term is given as a. So when n = 1, we have t₁ = a.
2. Find the second term:
To get the second term, we add the common difference once:
t₂ = a + d = a + (2 - 1) × d
3. Find the third term:
To get the third term, we add the common difference twice:
t₃ = a + d + d = a + 2d = a + (3 - 1) × d
4. Find the fourth term:
Similarly, the fourth term requires adding the common difference three times:
t₄ = a + d + d + d = a + 3d = a + (4 - 1) × d
5. Observe the pattern:
Notice the pattern emerging? For the nth term, we add the common difference (n - 1) times to the first term.
6. Generalize the formula:
Therefore, the general term or nth term of an AP is:
tₙ = a + (n - 1) × d
This is the explicit formula because it lets us calculate any term directly without knowing previous terms.
Visualizing Arithmetic Progressions
One beautiful property of APs is their linear visual representation. When we plot the term number (n) on the x-axis and the term value (tₙ) on the y-axis, the points always lie on a straight line.
{{VISUAL: diagram:coordinate plane showing points (1,1), (2,5), (3,9), (4,13), (5,17) forming a straight line representing the AP 1, 5, 9, 13, 17...}}
Why does this happen?
The formula tₙ = a + (n - 1) × d can be rewritten as:
tₙ = a - d + d × n
This has the form y = c + mx where m = d (the slope) and c = a - d (the y-intercept when extended). Since this is a linear equation, the graph is always a straight line.
Key Insight: The common difference d represents the slope of this line. A positive d gives an increasing AP (upward slope), while a negative d gives a decreasing AP (downward slope).
Solved Examples
Example 1: Finding the Common Difference (Easy)
Given: The AP is 7, 11, 15, 19, 23, ...
To Find: The common difference d
Solution:
- The common difference is found by subtracting any term from its next term.
d = t₂ - t₁
- Substitute the values from the sequence.
d = 11 - 7 = 4
- We can verify by checking other consecutive terms:
15 - 11 = 4,19 - 15 = 4.
Final Answer: d = 4
Example 2: Finding the 20th Term (Medium)
Given: First term a = 5, common difference d = 3
To Find: The 20th term t₂₀
Solution:
- Use the nth term formula for arithmetic progressions.
tₙ = a + (n - 1) × d
- Substitute
n = 20,a = 5, andd = 3.
t₂₀ = 5 + (20 - 1) × 3
- Simplify step-by-step.
t₂₀ = 5 + 19 × 3
- Calculate the multiplication and addition.
t₂₀ = 5 + 57 = 62
Final Answer: t₂₀ = 62
Example 3: Finding Which Term Has a Given Value (Hard)
Given: The AP is 4, 9, 14, 19, 24, ...
To Find: Which term of this AP is 124?
Solution:
- First, identify the first term and common difference.
a = 4, d = 9 - 4 = 5
- We need to find
nsuch thattₙ = 124. Use the nth term formula.
tₙ = a + (n - 1) × d
- Substitute the known values:
a = 4,d = 5,tₙ = 124.
124 = 4 + (n - 1) × 5
- Simplify by subtracting 4 from both sides.
120 = (n - 1) × 5
- Divide both sides by 5.
24 = n - 1
- Add 1 to both sides.
n = 25
Final Answer: The 25th term is 124
Example 4: Taxi Fare Problem (Tricky — Real-Life Application)
Given: A taxi charges ₹200 as a fixed booking fee plus ₹40 per kilometer. A person travels 10 km.
To Find: (a) The fare after 1 km, 2 km, 3 km as an AP; (b) Total fare for 10 km
Solution:
- After 1 km, the fare is the fixed charge plus one kilometer's charge.
Fare after 1 km = 200 + 40 × 1 = 240
- After 2 km, add another ₹40.
Fare after 2 km = 200 + 40 × 2 = 280
- After 3 km:
Fare after 3 km = 200 + 40 × 3 = 320
-
The sequence is 240, 280, 320, ... which is an AP with
a = 240andd = 40. -
For the general nth kilometer, the fare formula is:
tₙ = 240 + (n - 1) × 40 = 240 + 40n - 40 = 200 + 40n
- For 10 km, substitute
n = 10.
t₁₀ = 200 + 40 × 10 = 200 + 400 = 600
Final Answer: (a) AP is 240, 280, 320, ... (b) Fare for 10 km = ₹600
Tips & Tricks
| Shortcut Technique | When to Use | Example |
|---|---|---|
| Quick check if sequence is AP | Always verify by checking if t₂ - t₁ = t₃ - t₂ = t₄ - t₃ | For 5, 8, 11, 14: 8-5=3, 11-8=3, 14-11=3 ✓ |
| Finding d when two terms are known | If you know tₘ and tₙ, use d = (tₙ - tₘ)/(n - m) | If t₅ = 17 and t₉ = 33, then d = (33-17)/(9-5) = 16/4 = 4 |
| Reverse calculation for first term | If you know any term tₙ and d, find a = tₙ - (n-1) × d | If t₇ = 50 and d = 6, then a = 50 - 6×6 = 50 - 36 = 14 |
Common Mistakes
| ❌ Wrong Approach | ✅ Correct Approach |
|---|---|
Thinking tₙ = a + n × d (multiplying by n instead of n-1) | Use tₙ = a + (n - 1) × d — the first term already accounts for one position |
Finding d by t₃ - t₁ and dividing by 2 | Always use consecutive terms: d = t₂ - t₁ or t₃ - t₂ |
| Forgetting to check if sequence is actually an AP | Always verify: calculate differences between consecutive terms first |
| Using wrong sign for d in decreasing AP | In sequences like 20, 15, 10, 5..., d = -5 (negative), not positive |
{{KEY: type=warning | title=Critical Formula Point | text=The term (n - 1) appears because when you are at the nth position, you have moved (n - 1) steps from the first term. Each step adds d. This is the most common source of errors!}}
Brain-Teaser Questions
Question 1: If the 5th term of an AP is 23 and the 9th term is 39, can you find the 1st term and common difference without using simultaneous equations?
