Evaluate the Summation sum from i=1 to 21 of i(i-1)^2
The problem is asking for the computation of a specified summation. Specifically, it requires the evaluation of a series where each term is the product of three factors: the index 'i', and the square of the index 'i' minus one. The summation involves calculating the value of this expression for each integer 'i' starting from 1 up to and including 21, and then adding up all these individual values to find the total sum.
$\sum_{i = 1}^{21} i \left(\left(\right. i - 1 \left.\right)\right)^{2}$
Rewrite $(i - 1)^2$ as $(i - 1)(i - 1)$ to get $i((i - 1)(i - 1))$.
Expand to get $i(i(i - 1) - (i - 1)(i - 1))$.
Expand further to get $i(i^2 - i - (i - 1)(i - 1))$.
Complete the expansion to get $i(i^2 - i - i + 1)$.
This results in $i(i^2 - i - i + 1)$.
Rearrange to get $i(i^2 - 2i + 1)$.
Combine to get $i(i^2 - 2i + 1)$.
Multiply to get $i^3 - 2i^2 + i$.
Raise $i$ to the power of 3 to get $i^3$.
Combine to get $i^3$.
Get $i^3 - 2i^2 + i$.
This results in $i^3 - 2i^2 + i$.
Get $i^3 - 2i^2 + i$.
Get $\sum_{i=1}^{21} (i^3 - 2i^2 + i)$.
$\sum_{i=1}^{21} i^3 - 2\sum_{i=1}^{21} i^2 + \sum_{i=1}^{21} i$
$\sum_{i=1}^{n} i^3 = \frac{n^2(n + 1)^2}{4}$
$\frac{21^2(21 + 1)^2}{4}$
Multiply to get $\frac{441 \cdot 484}{4}$.
Divide to get $53361$.
$\sum_{i=1}^{n} i^2 = \frac{n(n + 1)(2n + 1)}{6}$
$-2 \cdot \frac{21(21 + 1)(2 \cdot 21 + 1)}{6}$
Multiply to get $-2 \cdot \frac{462 \cdot 43}{6}$.
Divide and multiply to get $-6622$.
$\sum_{i=1}^{n} i = \frac{n(n + 1)}{2}$
$\frac{21(21 + 1)}{2}$
Get $231$.
$53361 - 6622 + 231$
$46739 + 231$
Final result is $46970$.
The solution involves several key knowledge points in algebra and summation:
Expansion of Binomials: The square of a binomial, $(a - b)^2$, is expanded using the FOIL (First, Outer, Inner, Last) method to get $a^2 - 2ab + b^2$.
Distributive Property: This property allows us to multiply a single term by each term inside a parenthesis, such as $a(b + c) = ab + ac$.
Combining Like Terms: Terms that have the same variable raised to the same power can be combined by adding or subtracting their coefficients.
Summation Formulas: There are formulas to find the sum of powers of natural numbers:
Exponent Rules: When multiplying like bases, the exponents are added, such as $a^m \cdot a^n = a^{m+n}$.
Commutative Property of Multiplication: The order in which two numbers are multiplied does not affect the product, $ab = ba$.
Simplification: The process of reducing an expression to its simplest form by performing all possible operations and combining like terms.