Respuesta :
Answer:
[tex]\sum_{k=0}^{n}2k+1[/tex]
Step-by-step explanation:
Let's take a look at how much is added from one term to the next and see if we can recognize a pattern!
- 1 to 4: +3
- 4 to 9: +5
- 9 to 16: +7
- 16 to 25: +9
- 25 to 36: +11
If we start by listing the first number in sequence, 1, we get the familiar list:
1, 3, 5, 7, 9, 11
Of course, this is simply the list of the first six odd numbers. To get the first term, we add the first 1 odd number, to get the second, we add first 2 (1 +3), to get the third, we add the first 3 (1 + 3 + 5), and so on. How do we shorten these sums so we're not writing out dozens of terms as the sequence goes on?
Sigma notation: Summing things up
For situations where we're adding up a lot of numbers that follow a predictable pattern, mathematicians came up with something called summation notation, or sigma notation, coming from the Greek S, Σ, short for "sum". Here's a simple example of a sum expressed in sigma notation:
[tex]\sum_{n=1}^{4}n=1+2+3+4[/tex]
Let's break this down. n acts as our counter. [tex]\sum_{n=1}[/tex] sets it to start counting at 1, and tells us to stop counting at n = 4. The [tex]\sum n[/tex] bit tells us what pattern we'll be following, in this case, each step of the way we'll be adding the value of the counter.
In summation
So how do we express the sum 1 + 3 + 5 + ... in sigma notation? First, we need an expression that describes the pattern algebraically. Ever odd number is 1 away from an even number, so we can either describe our list with the expression [tex]2k+1[/tex] (if we start at k = 0), or [tex]2k-1[/tex] (if we start at k = 1). I'll choose [tex]2k+1[/tex] for this problem.
We want to start counting at k = 0 , and we can choose whatever we want for our stopping point. Let's call that stopping point n, for the nth term in the series. In sigma notation, we can now write this series in the form
[tex]\sum_{k=0}^{n}2k+1[/tex]
Let's test it out for the first few values to see if it works!
- n = 0: [2(0) + 1] = 1
- n = 1: [2{0) + 1] + [2(1)+1] = 1 + 3 = 4
- n = 2: [2{0) + 1] + [2(1) + 1] + [2(2) + 1] = 1 + 3 + 5 = 9
Checks out!
To write the series in summation notation, we have to identify a pattern. After we identify the pattern, we get that the notation is:
[tex]S = \sum_{n = 1}^{\infty} n^2[/tex]
Terms:
- The first term is 1, which is also the square of 1, as [tex]1^1 = 1[/tex]
- The second term is 4, which is also the square of 2, as [tex]2^2 = 2[/tex]
- The third term is 9, which is also the square of 3, as [tex]3^2 = 9[/tex]
- The fourth term is 16, which is also the square of 4, as [tex]4^2 = 16[/tex]
- The fifth term is 25, which is also the square of 5, as [tex]5^2 = 25[/tex]
- The sixth term is 36, which is also the square of 6, as [tex]6^2 = 36[/tex]
From this, we can get a pattern that each term is the square of the index, and the notation is:
[tex]S = \sum_{n = 1}^{\infty} n^2[/tex]
A similar question is found at: https://brainly.com/question/16543477