Evaluate the Summation sum from i=1 to 6 of 2-i-i^2
The question asks to calculate the sum of a series where the terms are given by a specific formula, which is 2 - i - i^2, and the summation is to be carried out from i=1 to i=6. In this summation, i represents each integer from 1 through 6, and for each of these values of i, the expression 2 - i - i^2 is computed and all the results are then added together to obtain the final sum.
$\sum_{i = 1}^{6} 2 - i - i^{2}$
$\sum_{i = 1}^{6} (2 - i - i^2) = \sum_{i = 1}^{6} 2 - \sum_{i = 1}^{6} i - \sum_{i = 1}^{6} i^2$
$\sum_{i = 1}^{6} 2$
$\sum_{i = 1}^{n} c = cn$
$(2)(6)$
$2 \times 6 = 12$
$\sum_{i = 1}^{6} i$
$\sum_{i = 1}^{n} i = \frac{n(n + 1)}{2}$
$(-1) \left(\frac{6(6 + 1)}{2}\right)$
$-1 \frac{6 \times 7}{2}$
$-1 \left(\frac{42}{2}\right)$
$-1 \times 21$
$-21$
$\sum_{i = 1}^{6} i^2$
$\sum_{i = 1}^{n} i^2 = \frac{n(n + 1)(2n + 1)}{6}$
$(-1) \left(\frac{6(6 + 1)(2 \times 6 + 1)}{6}\right)$
$-1 \frac{6 \times 7 (2 \times 6 + 1)}{6}$
$-1 \frac{42(12 + 1)}{6}$
$-1 \frac{42 \times 13}{6}$
$-1 \left(\frac{546}{6}\right)$
$-1 \times 91$
$-91$
$12 - 21 - 91$
$-9 - 91$
$-100$
To solve the given problem, we need to understand the following concepts:
Summation Notation: Summation notation is a convenient way to represent the sum of a series of terms. It is denoted by the Greek letter sigma ($\Sigma$) and includes an expression for the terms to be summed, along with the index of summation and its range.
Sum of a Constant: The sum of a constant $c$ over $n$ terms is simply $cn$. This is because each term in the summation is the same, and there are $n$ such terms.
Sum of the First n Natural Numbers: The sum of the first $n$ natural numbers is given by the formula $\frac{n(n + 1)}{2}$.
Sum of the Squares of the First n Natural Numbers: The sum of the squares of the first $n$ natural numbers is given by the formula $\frac{n(n + 1)(2n + 1)}{6}$.
Decomposition of Summations: A summation of multiple terms can be broken down into separate summations of each term. This is useful when the individual terms have known summation formulas.
Arithmetic Operations: Basic arithmetic operations like addition, subtraction, multiplication, and division are used to simplify the expressions obtained from the summation formulas.
By applying these concepts and formulas, we can evaluate the given summation step by step, breaking it down into simpler parts and using known formulas to find the sum of each part.