Chandra
Math / Sequence, Series, Limit

Sequence, Series, Limit

Arithmetic

Sequence

Arithmetic math is based on addition. If you graph it, it always forms a perfectly straight line.

an=a1+(n1)da_n = a_1 + (n - 1)d

Variable Breakdown:

  • ana_n (The Target): The value of the number at position nn. (e.g., “What is the 100th number?”)
  • a1a_1 (The Start): The very first number in your list.
  • nn (The Position): Which step you are on. We use (n1)(n-1) because we don’t add the difference to the first term; we only start adding it from the second term onward.
  • dd (The Common Difference): The amount you add (or subtract) at every step.

You start a job at $50,000 (a1a_1). You get a guaranteed raise of $3,000 (dd) every year. What is your salary in Year 10 (nn)?

a10=50,000+(101)3,000=$77,000a_{10} = 50,000 + (10 - 1)3,000 = \mathbf{\$77,000}

Series

Sn=n(a1+an)2S_n = \frac{n(a_1 + a_n)}{2}

Variable Breakdown:

  • SnS_n: The “Sum.” The total of all numbers from the 1st to the nn-th.
  • n/2n/2: This represents the number of “pairs” you have.
  • (a1+an)(a_1 + a_n): The sum of the first and last term.

Practical Example: A theater has 20 rows. The 1st row has 30 seats (a1a_1), and the 20th row has 80 seats (a20a_{20}). How many total seats (S20S_{20}) are in the theater?

S20=20(30+80)2=10×110=1,100 seatsS_{20} = \frac{20(30 + 80)}{2} = 10 \times 110 = \mathbf{1,100 \text{ seats}}


Geometric

Geometric math is based on multiplication. It starts slow but “explodes” or “vanishes” very quickly.

Sequence

an=a1rn1a_n = a_1 \cdot r^{n-1}

Variable Breakdown:

  • a1a_1: The starting value.
  • rr (Common Ratio): What you multiply by each time.
    • If r=2r = 2, it doubles.
    • If r=0.5r = 0.5, it cuts in half.
  • n1n-1: The number of times the growth has happened.

A viral post starts with 10 shares (a1a_1). The number of shares triples (r=3r=3) every hour. How many shares will occur in Hour 6 (nn)?

a6=103(61)=10243=2,430 sharesa_6 = 10 \cdot 3^{(6-1)} = 10 \cdot 243 = \mathbf{2,430 \text{ shares}}

Series

Sn=a1(1rn1r)S_n = a_1 \left( \frac{1 - r^n}{1 - r} \right)

Variable Breakdown:

  • rnr^n: The total growth factor over nn steps.
  • 1r1-r: The denominator that scales the sum correctly.

You save $100 this month. Every month you increase your savings by 10% (r=1.10r=1.10). How much total have you saved after 4 months (nn)?

S4=100(11.10411.10)=100×4.641=$464.10S_4 = 100 \left( \frac{1 - 1.10^4}{1 - 1.10} \right) = 100 \times 4.641 = \mathbf{\$464.10}

Infinite Geometric Series

This is the “Limit” part of your heading. If a geometric sequence gets smaller and smaller (r<1|r| < 1), the total sum doesn’t go to infinity—it hits a “wall” or a Limit.

S=a11rS_\infty = \frac{a_1}{1 - r}

Variable Breakdown:

  • SS_\infty: The value the sum approaches but never exceeds.
  • 1r1 - r: The “gap” remaining.

You drop a “Super-Ball” from a height of 10 feet (a1a_1). Each bounce reaches half (r=0.5r=0.5) the height of the previous bounce. If it bounces forever, what is the total vertical distance it travels?

S=1010.5=100.5=20 feetS_\infty = \frac{10}{1 - 0.5} = \frac{10}{0.5} = \mathbf{20 \text{ feet}}


Limit

A limit describes the value that a function or sequence approaches as the input gets arbitrarily close to some point. Not every expression has a finite value at a given point, but it may approach one.

limxaf(x)=L\lim_{x \to a} f(x) = L

  • LL: The value f(x)f(x) gets closer to as xx gets closer to aa.
  • The arrow (\to) means “approaches”—xx gets arbitrarily close to aa without necessarily reaching it.

Connecting to Sequences

For sequences, the limit asks: as nn \to \infty (the term number goes to infinity), does ana_n approach a specific number?

  • If ana_n settles toward a single value, the sequence converges to that limit.
  • If ana_n grows without bound or oscillates forever, it diverges.

The infinite geometric series from the previous section is a classic example. As nn \to \infty, rn0r^n \to 0 (when r<1|r| < 1), so the sum approaches the fixed value a11r\frac{a_1}{1 - r}.