🎓 BookMCQ
← Back to 6. Integration

📝 Properties of sums and summation (26 MCQs)

📖 From Calculus • 6. Integration • 26 questions available

What is Properties of sums and summation?

Definition:
Summation properties allow splitting sums and factoring constants: (ai+bi)=ai+bi\sum (a_i + b_i) = \sum a_i + \sum b_i and cai=cai\sum c \cdot a_i = c \sum a_i. These linear properties simplify complex sums by breaking them into simpler, known components.

Example:
Evaluate i=15(2i+3)\sum_{i=1}^{5} (2i + 3). Split: 2i=15i+i=1532\sum_{i=1}^5 i + \sum_{i=1}^5 3. Calculate: 2(15)+3(5)=30+15=452(15) + 3(5) = 30 + 15 = 45.

Reason:
These properties reduce computational effort in Riemann sums, allowing students to apply standard formulas for i\sum i, i2\sum i^2, etc., rather than calculating each term manually.

7
Easy
13
Medium
6
Hard

📝 All Properties of sums and summation MCQs

Q1. A student claims that k=1n(ak+bk)2=k=1nak2+k=1nbk2\sum_{k=1}^{n} (a_k + b_k)^2 = \sum_{k=1}^{n} a_k^2 + \sum_{k=1}^{n} b_k^2. Which property of summation does this statement violate, and why?

A.It violates the constant multiple rule because it ignores the cross terms.
B.It violates the distributive property because the square of a sum is not the sum of squares. ✅
C.It is correct because summation is a linear operator.
D.It violates the commutative property because the order of terms matters.
💡 Difficulty: hard | ✅ Correct: B

📖 Explanation: This is a common error. The student incorrectly applies linearity to a non-linear operation. While summation is linear over addition ((ak+bk)=ak+bk\sum (a_k+b_k) = \sum a_k + \sum b_k), it does not distribute over multiplication or powers. The correct expansion includes the cross term 2akbk2a_kb_k. Recognizing the domain of linearity is crucial in higher mathematics.

Q2. Given the sum k=15k2=55\sum_{k=1}^{5} k^2 = 55, what is the value of k=15(k210)\sum_{k=1}^{5} (k^2 - 10) without recalculating each term?

A.45
B.-5
C.5 ✅
D.55
💡 Difficulty: medium | ✅ Correct: C

📖 Explanation: This question tests the Easy of the subtraction property of sums: (akbk)=akbk\sum (a_k - b_k) = \sum a_k - \sum b_k. Here, k=15k2=55\sum_{k=1}^{5} k^2 = 55 and k=1510=10×5=50\sum_{k=1}^{5} 10 = 10 \times 5 = 50. Therefore, the result is 5550=555 - 50 = 5. This demonstrates how to manipulate sums to simplify calculations.

Q3. Evaluate the sum: k=1n3kn\sum_{k=1}^{n} \frac{3k}{n}.

A.3nn(n+1)2\frac{3}{n} \cdot \frac{n(n+1)}{2}
B.3(n+1)2\frac{3(n+1)}{2}
C.Both A and B are equivalent. ✅
D.3n+12\frac{3n+1}{2}
💡 Difficulty: easy | ✅ Correct: C

📖 Explanation: This problem tests Medium of the constant multiple rule. The constant 3n\frac{3}{n} is factored out: 3nk=1nk\frac{3}{n} \sum_{k=1}^{n} k. Since k=n(n+1)2\sum k = \frac{n(n+1)}{2}, the result is 3nn(n+1)2=3(n+1)2\frac{3}{n} \cdot \frac{n(n+1)}{2} = \frac{3(n+1)}{2}. Option C correctly identifies that A and B are the same expression, highlighting that simplification can take different but equivalent forms.

Q4. A sequence is defined by a1=2a_1 = 2 and ak=ak1+3a_k = a_{k-1} + 3 for k2k \ge 2. Find k=110ak\sum_{k=1}^{10} a_k.

A.155 ✅
B.165
C.175
D.185
💡 Difficulty: medium | ✅ Correct: A

📖 Explanation: This is an Easy problem requiring Easy. The sequence is arithmetic with first term 2 and common difference 3. The sum of an arithmetic series is n2(2a1+(n1)d)=102(4+27)=5×31=155\frac{n}{2}(2a_1 + (n-1)d) = \frac{10}{2}(4 + 27) = 5 \times 31 = 155. It requires recognizing the sequence type, identifying the correct formula, and applying it accurately.

Q5. If k=1nak=A\sum_{k=1}^{n} a_k = A and k=1nbk=B\sum_{k=1}^{n} b_k = B, which of the following must be true?

A.k=1n(2akbk)=2AB\sum_{k=1}^{n} (2a_k - b_k) = 2A - B
B.k=1n(akbk)=AB\sum_{k=1}^{n} (a_k b_k) = AB
C.k=1nakbk=AB\sum_{k=1}^{n} \frac{a_k}{b_k} = \frac{A}{B}
D.k=1nak2=A2\sum_{k=1}^{n} a_k^2 = A^2
💡 Difficulty: medium | ✅ Correct: A

📖 Explanation: This question isolates the property of linearity of sums. Options B, C, and D are common misconceptions where students incorrectly assume that summation distributes over multiplication, division, or powers. Linearity only applies to addition and subtraction of terms multiplied by constants. Only Option A correctly applies the constant multiple and difference rules.

Q6. In the context of Riemann sums, why is it important that the summation operator is linear (i.e., cf(xi)Δx=cf(xi)Δx\sum c f(x_i) \Delta x = c \sum f(x_i) \Delta x)?

A.It allows us to interpret the sum as an area.
B.It allows us to evaluate sums without limits.
C.It allows us to break complex functions into simpler parts for integration. ✅
D.It proves that all functions are integrable.
💡 Difficulty: hard | ✅ Correct: C

📖 Explanation: This is a conceptual question linking algebra to calculus. The linearity of the sum is fundamental to the definition of the definite integral. Because we can factor constants and split sums, the integral of a sum is the sum of integrals, and constants factor out. This allows us to compute areas under complex curves by integrating simpler component functions.

Q7. A student evaluates k=1nc\sum_{k=1}^{n} c as cc. What is the error?

A.The student forgot to multiply by the number of terms, nn.
B.The student incorrectly applied the constant multiple rule.
C.The student thinks the sum of a constant is the constant itself.
D.All of the above. ✅
💡 Difficulty: medium | ✅ Correct: D

📖 Explanation: This is an Medium question. k=1nc=c+c+...+c\sum_{k=1}^{n} c = c + c + ... + c (n times) = ncnc. The student's error could stem from several misconceptions: forgetting that the constant is repeated for each term, misapplying the constant multiple rule in reverse, or simply misunderstanding what the sum represents. Option D correctly identifies that all listed are potential underlying errors.

Q8. If k=110ak=20\sum_{k=1}^{10} a_k = 20 and a3=5a_3 = 5, find k=1,k310ak\sum_{k=1, k \neq 3}^{10} a_k.

A.5
B.15 ✅
C.20
D.25
💡 Difficulty: medium | ✅ Correct: B

📖 Explanation: This problem applies the concept of decomposition of sums. We know k=110ak=a3+k=1,k310ak\sum_{k=1}^{10} a_k = a_3 + \sum_{k=1, k \neq 3}^{10} a_k. Therefore, 20=5+k=1,k310ak20 = 5 + \sum_{k=1, k \neq 3}^{10} a_k, which gives k=1,k310ak=15\sum_{k=1, k \neq 3}^{10} a_k = 15. This illustrates how to manipulate the limits of summation by isolating specific terms.

Q9. Which of the following is a valid Easy of the summation property (akbk)=akbk\sum (a_k - b_k) = \sum a_k - \sum b_k?

A.k=1n(k21)=k=1nk2n\sum_{k=1}^{n} (k^2 - 1) = \sum_{k=1}^{n} k^2 - n
B.k=1n(k21)=(k=1nk)2n\sum_{k=1}^{n} (k^2 - 1) = (\sum_{k=1}^{n} k)^2 - n
C.k=1n(k21)=k=1nk21\sum_{k=1}^{n} (k^2 - 1) = \sum_{k=1}^{n} k^2 - 1
D.Both A and C are correct.
💡 Difficulty: hard | ✅ Correct: A

📖 Explanation: Option A is correct because k=1n1=n\sum_{k=1}^{n} 1 = n, so k=1n(k21)=k2n\sum_{k=1}^{n} (k^2 - 1) = \sum k^2 - n. Option B incorrectly assumes the sum of squares is the square of the sum. Option C is incorrect because it subtracts 1 only once instead of for every term. This question forces students to carefully apply the property and recognize common mistakes.

Q10. Given k=1nak=S\sum_{k=1}^{n} a_k = S, what is k=1n(akak1)\sum_{k=1}^{n} (a_k - a_{k-1}) in terms of a0,ana_0, a_n?

A.SS
B.ana0a_n - a_0
C.an+a0a_n + a_0
D.Sa0anS - a_0 - a_n
💡 Difficulty: hard | ✅ Correct: B

📖 Explanation: This is a classic telescoping sum problem. Expanding the sum: (a1a0)+(a2a1)+...+(anan1)(a_1-a_0)+(a_2-a_1)+...+(a_n-a_{n-1}). All intermediate terms cancel, leaving ana0a_n - a_0. This is a powerful technique for evaluating sums. It tests the student's ability to recognize patterns and simplify sums using the properties of summation, moving beyond simple computational skills.

Q11. If k=16(xk2)2=30\sum_{k=1}^{6} (x_k - 2)^2 = 30 and k=16xk2=60\sum_{k=1}^{6} x_k^2 = 60, find k=16xk\sum_{k=1}^{6} x_k.

A.1515
B.1010
C.55
D.Cannot be determined.
💡 Difficulty: easy | ✅ Correct: A

📖 Explanation: This is an Olympiad-style problem combining algebra and summation properties. Expand (xk2)2=(xk24xk+4)=xk24xk+4=604xk+24=30\sum (x_k - 2)^2 = \sum (x_k^2 - 4x_k + 4) = \sum x_k^2 - 4\sum x_k + \sum 4 = 60 - 4\sum x_k + 24 = 30. Thus, 844xk=3084 - 4\sum x_k = 30, so 4xk=544\sum x_k = 54, and xk=13.5\sum x_k = 13.5. This requires careful expansion, applying the distributive property of sums, and solving a linear equation.

Q12. Which of the following is NOT a property of sums?

A.k=1n(ak+bk)=k=1nak+k=1nbk\sum_{k=1}^{n} (a_k + b_k) = \sum_{k=1}^{n} a_k + \sum_{k=1}^{n} b_k
B.k=1nc=cn\sum_{k=1}^{n} c = c n
C.k=1nakbk=(k=1nak)(k=1nbk)\sum_{k=1}^{n} a_k b_k = (\sum_{k=1}^{n} a_k)(\sum_{k=1}^{n} b_k)
D.k=1ncak=ck=1nak\sum_{k=1}^{n} c a_k = c \sum_{k=1}^{n} a_k
💡 Difficulty: easy | ✅ Correct: C

📖 Explanation: This is a Easy question. Options A, B, and D are standard, valid properties of summation. Option C is a common and critical misconception. The sum of a product is NOT the product of the sums. This property only holds in very specific, trivial cases. Recognizing this is essential to avoid errors in more complex problems involving series and sequences.

Q13. A programmer writes a loop to calculate S=k=1100(k2+5)S = \sum_{k=1}^{100} (k^2 + 5). Their code calculates k2\sum k^2 and then adds 5. What is wrong with this logic?

A.Nothing; the logic is correct.
B.It should add 5 for each k, so it must add 100×5=500100 \times 5 = 500. ✅
C.It should multiply the sum of k by 5.
D.It should calculate (k)2+5(\sum k)^2 + 5.
💡 Difficulty: medium | ✅ Correct: B

📖 Explanation: This is a scenario-based Easy question. The programmer made the common error of treating the '+5' as a constant added once, rather than a constant added in each of the 100 iterations. Since k=1100(k2+5)=k2+5=k2+500\sum_{k=1}^{100} (k^2 + 5) = \sum k^2 + \sum 5 = \sum k^2 + 500, the code is incorrect. This highlights the practical importance of the constant multiple rule.

Q14. Given that f(x)f(x) is a linear function, which graph best represents the average value of ff on an interval?

A.A horizontal line at the average height. ✅
B.The graph of the function itself.
C.A vertical line at the midpoint of the interval.
D.A parabola.
💡 Difficulty: medium | ✅ Correct: A

📖 Explanation: This is a Easy question that connects summation (as the basis for integration) to the concept of average value. For a linear function, the average value is the height of a rectangle with area equal to the area under the curve. This is represented by a horizontal line. Options B, C, and D represent a misunderstanding of what the average value geometrically represents. A correct answer requires Medium of integration.

Q15. If k=1nak=0\sum_{k=1}^{n} a_k = 0, can we conclude k=1nak2=0\sum_{k=1}^{n} a_k^2 = 0?

A.Yes, because if a sum is zero, every term must be zero.
B.No, because if a sum is zero, the terms could be positive and negative. ✅
C.Yes, because ak2=aka_k^2 = a_k.
D.No, because the sum of squares is always positive.
💡 Difficulty: hard | ✅ Correct: B

📖 Explanation: This is a Hard question combining algebra and logic. A sum equal to zero does not imply each term is zero. For example, k=12(1,1)=0\sum_{k=1}^{2} (1, -1) = 0, but k=12(12+(1)2)=2\sum_{k=1}^{2} (1^2 + (-1)^2) = 2. The student must understand the difference between the sum of terms and the sum of their squares. Option B correctly identifies that cancellations can occur.

Q16. Find the sum: k=1n3\sum_{k=1}^{n} 3.

A.3
B.3n ✅
C.n3n^3
D.3n3^n
💡 Difficulty: easy | ✅ Correct: B

📖 Explanation: This is a direct Easy of the formula for the sum of a constant. k=1nc=cn\sum_{k=1}^{n} c = cn. Here, c=3, so the sum is 3n3n. The other options reflect common mistakes: confusing it with exponentiation, a power function, or a geometric series.

Q17. Use summation properties to find k=110(3k22k+1)\sum_{k=1}^{10} (3k^2 - 2k + 1).

A.1165 ✅
B.1090
C.1025
D.1180
💡 Difficulty: medium | ✅ Correct: A

📖 Explanation: This is a multi-step Easy problem. 3k22k+1=310(11)(21)6210(11)2+10=3(385)110+10=1155110+10=1055+10=11653\sum k^2 - 2\sum k + \sum 1 = 3\frac{10(11)(21)}{6} - 2\frac{10(11)}{2} + 10 = 3(385) - 110 + 10 = 1155 - 110 + 10 = 1055 + 10 = 1165. This requires correct recall of the summation formulas for k, k^2, and a constant, and careful arithmetic.

Q18. A student's work shows k=1n(ak+bk)=k=1nak+k=1nbk\sum_{k=1}^{n} (a_k + b_k) = \sum_{k=1}^{n} a_k + \sum_{k=1}^{n} b_k. This is an example of what property?

A.Commutative Property
B.Distributive Property
C.Associative Property
D.Linearity Property ✅
💡 Difficulty: medium | ✅ Correct: D

📖 Explanation: This is a classification question. While the sum notation resembles distribution, this is a specific property of the summation operator. Options A, B, and C are algebraic properties applied to terms within the sum, but this specific property of breaking a sum over addition is best described as linearity. Recognizing the correct mathematical terminology is important for precise communication.

Q19. If k=110ak=100\sum_{k=1}^{10} a_k = 100, what is k=110(ak5)\sum_{k=1}^{10} (a_k - 5)?

A.50 ✅
B.95
C.90
D.105
💡 Difficulty: medium | ✅ Correct: A

📖 Explanation: This problem tests Easy of the subtraction property. (ak5)=ak5=10010(5)=10050=50\sum (a_k - 5) = \sum a_k - \sum 5 = 100 - 10(5) = 100 - 50 = 50. A common error is to subtract 5 only once, leading to 95. This highlights the importance of understanding that the constant is subtracted for each term in the sum.

Q20. Which representation correctly identifies the sum of the first nn odd integers?

A.k=1nk\sum_{k=1}^{n} k
B.k=1n(2k1)\sum_{k=1}^{n} (2k-1)
C.k=1n(2k)\sum_{k=1}^{n} (2k)
D.k=1n(2k+1)\sum_{k=1}^{n} (2k+1)
💡 Difficulty: easy | ✅ Correct: B

📖 Explanation: This tests the ability to translate between a verbal description and summation notation. The first odd number is 1, which matches 2(1)12(1)-1. The nth term is 2n12n-1. Option C gives even numbers, A gives natural numbers, and D gives odd numbers starting from 3. Correctly translating between forms is a foundational skill.

Q21. If mm and nn are positive integers with m<nm < n, what is the value of k=mn1\sum_{k=m}^{n} 1?

A.nmn-m
B.nm+1n-m+1
C.n+mn+m
D.n+m1n+m-1
💡 Difficulty: medium | ✅ Correct: B

📖 Explanation: This is a common point of confusion. The number of terms from mm to nn inclusive is nm+1n-m+1. For example, from k=2k=2 to k=5k=5, there are 4 terms: 2, 3, 4, 5. The formula 52+1=45-2+1 = 4. Students often forget to add 1. This demonstrates the importance of carefully considering the limits of summation.

Q22. Simplify the sum: k=1n(xkxk1)\sum_{k=1}^{n} (x_k - x_{k-1}).

A.xn+x0x_n + x_0
B.xnx0x_n - x_0
C.xn1x0x_{n-1} - x_0
D.xnxn1x_n - x_{n-1}
💡 Difficulty: medium | ✅ Correct: B

📖 Explanation: This is a classic telescoping sum problem. Expanding the sum: (x1x0)+(x2x1)+...+(xnxn1)(x_1-x_0)+(x_2-x_1)+...+(x_n-x_{n-1}). All intermediate terms cancel, leaving xnx0x_n - x_0. This is a powerful technique for evaluating sums. It tests the student's ability to recognize patterns and simplify sums using the properties of summation.

Q23. Given k=15ak=15\sum_{k=1}^{5} a_k = 15 and k=15ak2=55\sum_{k=1}^{5} a_k^2 = 55, find k=15(ak3)2\sum_{k=1}^{5} (a_k - 3)^2.

A.10 ✅
B.25
C.40
D.55
💡 Difficulty: easy | ✅ Correct: A

📖 Explanation: This is an Olympiad-style problem requiring expansion and Easy of the distributive and constant multiple rules. (ak3)2=(ak26ak+9)=ak26ak+9=556(15)+45=5590+45=10\sum (a_k-3)^2 = \sum (a_k^2 - 6a_k + 9) = \sum a_k^2 - 6\sum a_k + \sum 9 = 55 - 6(15) + 45 = 55 - 90 + 45 = 10. It requires careful expansion and the ability to combine multiple properties in a single problem.

Q24. What is the value of k=14(1)kk2\sum_{k=1}^{4} (-1)^k k^2?

A.10
B.-10 ✅
C.-30
D.30
💡 Difficulty: medium | ✅ Correct: B

📖 Explanation: This problem tests the Easy of the sum with an alternating sign. (1)1(1)2+(1)2(2)2+(1)3(3)2+(1)4(4)2=1+49+16=10(-1)^1(1)^2 + (-1)^2(2)^2 + (-1)^3(3)^2 + (-1)^4(4)^2 = -1 + 4 - 9 + 16 = 10. The negative sign of the first term is crucial. It tests the student's ability to substitute values correctly and compute accurately, including the effect of the exponent on the sign.

Q25. Which of the following is the correct expansion of k=1ncak\sum_{k=1}^{n} c a_k?

A.ca1+ca2+...+canc a_1 + c a_2 + ... + c a_n
B.c(a1+a2+...+an)c(a_1 + a_2 + ... + a_n)
C.ck=1nakc \sum_{k=1}^{n} a_k
D.All of the above. ✅
💡 Difficulty: easy | ✅ Correct: D

📖 Explanation: This is a conceptual question about the constant multiple rule. All three options A, B, and C are equivalent expressions. Option A is the expanded form, Option B factors the constant, and Option C uses sigma notation. This reinforces the idea that these are different ways of representing the same sum.

Q26. If k=1nak=0\sum_{k=1}^{n} a_k = 0, which of the following must be true?

A.All ak=0a_k = 0 for all k.
B.The sum of the positive aka_k equals the absolute sum of the negative aka_k. ✅
C.k=1nak=0\sum_{k=1}^{n} |a_k| = 0
D.k=1nak2=0\sum_{k=1}^{n} a_k^2 = 0
💡 Difficulty: hard | ✅ Correct: B

📖 Explanation: This is a conceptual question testing the meaning of a sum. A zero sum means the total positive contribution equals the total negative contribution. It does not mean all terms are zero (A), or that their absolute values sum to zero (C), which is only true if all terms are zero. Similarly, the sum of squares is not necessarily zero (D). Option B correctly identifies the condition for cancellation.

🔗 Related Topics (MCQs)