FMAT pure1 series and induction Flashcards

1
Q

What is the sum of the first n natural numbers?

A

The sum is given by:
Σr (from r = 1 to n) = n(n + 1) / 2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How is the sum of the first n natural numbers derived using triangle numbers?

A

The nth triangle number T_n forms a triangular array of dots.
Two such triangles form a rectangle with rows n and columns n + 1.
T_n = n(n + 1) / 2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the sum of the squares of the first n natural numbers?

A

The sum is given by:
Σr² (from r = 1 to n) = n(n + 1)(2n + 1) / 6

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Example: Find Σr² (from r = 1 to 50).

A

Σr² = (50 * 51 * 101) / 6 = 42925

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the sum of the cubes of the first n natural numbers?

A

The sum is given by:
Σr³ (from r = 1 to n) = [n(n + 1) / 2]²

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Example: Find Σr³ (from r = 1 to 10).

A

Σr³ = [(10 * 11) / 2]² = 55² = 3025

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the method of differences?

A

This method expresses a series as differences of terms, canceling intermediate terms to simplify the sum.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Example: Simplify Σ (r(r + 1)) for r = 1 to n.

A
  1. Expand r(r + 1) = r² + r.
  2. Use standard results for Σr² and Σr:
    Σr(r + 1) = Σr² + Σr = [n(n + 1)(2n + 1) / 6] + [n(n + 1) / 2].
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How are partial fractions used to sum series?

A

Decompose a rational expression into partial fractions, then use the method of differences to simplify.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Example: Sum Σ (2 / [(r + 1)(r + 2)]) for r = 1 to n.

A
  1. Decompose: 2 / [(r + 1)(r + 2)] = 2 / (r + 1) - 2 / (r + 2).
  2. Apply method of differences:
    Σ = 1 - 2/(n + 2).
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is a convergent series?

A

A series is convergent if its sum approaches a finite limit as the number of terms approaches infinity.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Example: Find the sum to infinity of Σ (2 / [(r + 1)(r + 2)]).

A

Using the sum for n terms: 1 - 2/(n + 2).
As n → ∞, 2/(n + 2) → 0.
Sum to infinity = 1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

How do you ensure correct cancellation in the method of differences?

A

Carefully identify and retain any remaining terms after cancellation, especially at the beginning and end of the series.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is proof by induction?

A

A mathematical proof method used to show that a statement is true for all positive integers.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What are the three essential steps in proof by induction?

A
  1. Prove the statement is true for a starting value (e.g., n = 1).
  2. Assume it is true for n = k.
  3. Prove it is true for n = k + 1.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Example: Prove Σr (from r = 1 to n) = n(n + 1) / 2 using induction.

A
  1. Base case (n = 1): LHS = 1; RHS = 1(1 + 1)/2 = 1. True.
  2. Assume true for n = k: Σr = k(k + 1)/2.
  3. For n = k + 1: Σr = [k(k + 1)/2] + (k + 1).
    Simplify to (k + 1)(k + 2)/2. True by induction.
17
Q

What is a counterexample in proofs?

A

A single example showing that a statement is false, disproving it.

18
Q

How is proof by induction used for divisibility?

A
  1. Prove the base case satisfies divisibility.
  2. Assume true for n = k.
  3. Show that if true for n = k, it is true for n = k + 1.
19
Q

Example: Prove 2^(n+1) - 1 is divisible by 3 for n ≥ 1.

A
  1. Base case (n = 1): 2^(1+1) - 1 = 3. Divisible by 3.
  2. Assume true for n = k: 2^(k+1) - 1 = 3m.
  3. For n = k + 1: 2^(k+2) - 1 = 2 * 2^(k+1) - 1.
    = 2(3m + 1) - 1 = 3(2m) + 1. True.
20
Q

How is proof by induction applied to matrices?

A
  1. Prove the result holds for n = 1.
  2. Assume it holds for n = k.
  3. Show it holds for n = k + 1 by matrix multiplication.
21
Q

Example: Prove A^n = [[1, 2n], [0, 2^n]] using induction.

A
  1. Base case (n = 1): A = [[1, 2], [0, 2]]. True.
  2. Assume true for n = k: A^k = [[1, 2k], [0, 2^k]].
  3. For n = k + 1: A^(k+1) = A^k * A.
    Verify: [[1, 2k + 2], [0, 2^(k+1)]] matches. True.
22
Q

How is proof by induction used for sequences?

A
  1. Prove the sequence formula is true for the first term.
  2. Assume it is true for the k-th term.
  3. Prove it is true for the (k + 1)-th term using the sequence definition.
23
Q

Example: Prove u_n = 3(4^(n-1)) - 1 satisfies the recurrence u_(n+1) = 4u_n + 3.

A
  1. Base case (n = 1): u_1 = 3(4^0) - 1 = 2. Matches.
  2. Assume true for n = k: u_k = 3(4^(k-1)) - 1.
  3. For n = k + 1: u_(k+1) = 4[3(4^(k-1)) - 1] + 3.
    Simplifies to 3(4^k) - 1. True.
24
Q

What are common errors in proof by induction?

A
  1. Skipping the base case.
  2. Incorrectly assuming n = k implies n = k + 1 without proof.
  3. Failing to clearly state the inductive step conclusion.
25
Q

Why does proof by induction work?

A

It establishes a domino effect: proving the base case and the inductive step ensures the result holds for all positive integers.