Evaluate the Summation sum from n=1 to 90 of 3n-7
The question asks for the evaluation of a specific mathematical summation. The summation is to be calculated for a series where each term is in the form of 3n - 7, with n starting at 1 and ending at 90. The goal is to find the total sum when you add up all individual terms for each value of n within the specified range.
$\sum_{n = 1}^{90} 3 n - 7$
Solution:
Decompose the given summation into two separate summations that are easier to manage using the distributive property of summation: $\sum_{n=1}^{90}(3n-7) = 3\sum_{n=1}^{90}n - \sum_{n=1}^{90}7$
Calculate the summation $3\sum_{n=1}^{90}n$.
Utilize the arithmetic series sum formula: $\sum_{k=1}^{n}k = \frac{n(n+1)}{2}$
Insert the upper limit of the summation into the formula and include the coefficient: $3\left(\frac{90(90+1)}{2}\right)$
Proceed with simplifying the expression.
Combine $90$ and $1$: $3\frac{90 \cdot 91}{2}$
Calculate the product of $90$ and $91$: $3\left(\frac{8190}{2}\right)$
Divide $8190$ by $2$: $3 \cdot 4095$
Multiply $3$ by $4095$: $12285$
Compute the summation $\sum_{n=1}^{90}-7$.
Apply the constant series sum formula: $\sum_{k=1}^{n}c = cn$
Replace the constant and the upper limit of the summation: $(-7)(90)$
Perform the multiplication of $-7$ and $90$: $-630$
Combine the outcomes of the two summations: $12285 - 630$
Finalize by subtracting $630$ from $12285$: $11655$
Solution:"11655"
Knowledge Notes:
Summation Properties: Summation (or sigma notation) allows for the concise expression of the sum of a sequence of values. The distributive property lets us break down a complex summation into simpler components, often separating variable terms from constants.
Arithmetic Series: An arithmetic series is the sum of the terms of an arithmetic sequence, a sequence in which each term after the first is obtained by adding a constant difference to the preceding term. The sum of the first $n$ natural numbers is given by the formula $\sum_{k=1}^{n}k = \frac{n(n+1)}{2}$.
Sum of a Constant Sequence: The sum of a constant $c$ over $n$ terms is simply $cn$, because each term in the sequence is the same and there are $n$ such terms.
Simplification: Simplifying expressions involves performing arithmetic operations like addition, multiplication, and division to reduce an expression to its simplest form.
Combining Results: After evaluating separate parts of a problem, the final step often involves combining these parts to obtain the final result, which may require addition, subtraction, or other operations.