🎓 BookMCQ
← Back to 6. Integration

📝 Sigma notation summation explained (24 MCQs)

📖 From Calculus • 6. Integration • 24 questions available

What is Sigma notation summation explained?

Definition:
Sigma notation i=1nai\sum_{i=1}^{n} a_i compactly represents the sum of a sequence of terms. Here, ii is the index, 1 is the lower limit, nn is the upper limit, and aia_i is the formula for the ith term, streamlining lengthy addition expressions.

Example:
Expand k=14k2\sum_{k=1}^{4} k^2. Terms are 12,22,32,421^2, 2^2, 3^2, 4^2. Sum =1+4+9+16=30= 1 + 4 + 9 + 16 = 30. This notation avoids writing out every term individually.

Reason:
Mastering sigma notation is essential for writing Riemann sums clearly and concisely, facilitating the transition from finite sums to infinite limits in integral calculus definitions.

7
Easy
9
Medium
8
Hard

📝 All Sigma notation summation explained MCQs

Q1. Consider the sum 22+42+62++(2n)22^2 + 4^2 + 6^2 + \cdots + (2n)^2. Which of the following correctly expresses this in sigma notation with nn terms?

A.k=1n(2k)2\sum_{k=1}^n (2k)^2
B.k=12nk2\sum_{k=1}^{2n} k^2
C.2k=1nk22 \sum_{k=1}^n k^2
D.k=1n4k\sum_{k=1}^n 4k
💡 Difficulty: medium | ✅ Correct: A

📖 Explanation: The summand (2k)2(2k)^2 generates the terms 22,42,62,2^2, 4^2, 6^2, \dots as k=1,2,,nk = 1,2,\dots,n. Option B incorrectly sums k2k^2 from 1 to 2n2n, which would include odd squares. Option C incorrectly factors out the 2 from the square, and Option D omits the square entirely.

Q2. If k=1nak=45\sum_{k=1}^{n} a_k = 45 and k=1nbk=12\sum_{k=1}^{n} b_k = -12, what is k=1n(3ak2bk)\sum_{k=1}^{n} (3a_k - 2b_k) ?

A.13524=111135 - 24 = 111
B.3(45)2(12)=1593(45) - 2(-12) = 159
C.3(45)+2(12)=1593(45) + 2(12) = 159
D.3(45(12))=1713(45 - (-12)) = 171
💡 Difficulty: medium | ✅ Correct: B

📖 Explanation: Using the distributive property of sigma: (3ak2bk)=3ak2bk=3(45)2(12)=135+24=159\sum (3a_k - 2b_k) = 3 \sum a_k - 2 \sum b_k = 3(45) - 2(-12) = 135 + 24 = 159. Option A incorrectly treats 2bk-2b_k as subtraction of positive 24. Option C incorrectly adds 24 instead of subtracting negative 24. Option D incorrectly treats the sum of the sums as 45(12)45 - (-12).

Q3. A student computes k=15k2\sum_{k=1}^{5} k^2 and gets 50. What is the most likely error?

A.Incorrectly used formula n(n+1)/2n(n+1)/2
B.Added kk instead of k2k^2
C.Forgot to square the 5
D.Used formula for k3\sum k^3
💡 Difficulty: medium | ✅ Correct: A

📖 Explanation: The correct value is 12+22+32+42+52=551^2+2^2+3^2+4^2+5^2 = 55. The formula n(n+1)/2=15n(n+1)/2 = 15 gives the sum of the first 5 integers, not squares. A student getting 50 likely misapplied the formula for sum of squares or made an arithmetic error. Option B would give 15, Option C gives 45, Option D gives 225.

Q4. Evaluate k=25(k23)\sum_{k=2}^{5} (k^2 - 3)

A.(43)+(93)+(163)+(253)=42(4-3)+(9-3)+(16-3)+(25-3) = 42
B.(223)+(323)+(423)+(523)=42(2^2-3)+(3^2-3)+(4^2-3)+(5^2-3) = 42
C.(223)+(323)+(423)+(523)=30(2^2-3)+(3^2-3)+(4^2-3)+(5^2-3) = 30
D.(223)+(323)+(423)+(523)=54(2^2-3)+(3^2-3)+(4^2-3)+(5^2-3) = 54
💡 Difficulty: easy | ✅ Correct: B

📖 Explanation: The lower limit is 2 and the upper limit is 5, so the summand is evaluated at k=2,3,4,5k=2,3,4,5. The correct sum is (43)+(93)+(163)+(253)=1+6+13+22=42(4-3)+(9-3)+(16-3)+(25-3) = 1+6+13+22 = 42. Option A starts from k=2k=2 but incorrectly lists 4 as the first square. Option C uses 223=12^2-3=1 and 323=63^2-3=6, but then sums incorrectly. Option D is an overestimation.

Q5. What is the closed form of k=1n(2k1)\sum_{k=1}^{n} (2k - 1) ?

A.n2n^2
B.n(n+1)/2n(n+1)/2
C.n21n^2 - 1
D.2n22n^2
💡 Difficulty: easy | ✅ Correct: A

📖 Explanation: The sum k=1n(2k1)\sum_{k=1}^{n} (2k-1) represents the sum of the first nn odd positive integers, which equals n2n^2. This can be verified for small nn: for n=3n=3, 1+3+5=9=321+3+5 = 9 = 3^2. Option B is the sum of the first nn integers. Option C is n21n^2-1, which would be the sum of odd numbers except the first? No, it's incorrect. Option D doubles the square.

Q6. Which of the following is true about the index of summation in k=1nak\sum_{k=1}^{n} a_k ?

A.It must always start at 1.
B.It can be changed to any other letter without changing the sum. ✅
C.It must be the same as the variable in the summand.
D.It determines the number of terms, which is always n+1n+1.
💡 Difficulty: medium | ✅ Correct: B

📖 Explanation: The index of summation is a dummy variable. Changing kk to jj or any other letter not used elsewhere does not change the sum. The number of terms from k=mk=m to nn is nm+1n-m+1, not necessarily n+1n+1.

Q7. If i=110i=55\sum_{i=1}^{10} i = 55, what is i=110(i+1)\sum_{i=1}^{10} (i + 1) ?

A.55+10=6555 + 10 = 65
B.55+1=5655 + 1 = 56
C.55+10=6555 + 10 = 65
D.55+11=6655 + 11 = 66
💡 Difficulty: medium | ✅ Correct: A

📖 Explanation: Using the sum rule: i=110(i+1)=i=110i+i=1101=55+10=65\sum_{i=1}^{10} (i+1) = \sum_{i=1}^{10} i + \sum_{i=1}^{10} 1 = 55 + 10 = 65. Option B is a common mistake of adding 1 to the sum instead of adding 1 for each term. Option C is correct. Option D adds 11 because they might think the number of terms is 11.

Q8. A student claims that k=1nk2=n2(n+1)24\sum_{k=1}^{n} k^2 = \frac{n^2(n+1)^2}{4}. Is this true?

A.Yes, it's the correct formula.
B.No, that's the formula for k3\sum k^3. ✅
C.No, it's the formula for k\sum k.
D.No, it's the formula for k3\sum k^3 but divided by 2.
💡 Difficulty: medium | ✅ Correct: B

📖 Explanation: The formula n2(n+1)24\frac{n^2(n+1)^2}{4} is the closed form for the sum of cubes, k=1nk3\sum_{k=1}^{n} k^3. The correct formula for k2\sum k^2 is n(n+1)(2n+1)6\frac{n(n+1)(2n+1)}{6}. The student has confused the two.

Q9. Given k=15(2k1)=25\sum_{k=1}^{5} (2k - 1) = 25, what is k=15(2k+1)\sum_{k=1}^{5} (2k + 1) ?

A.It cannot be determined without more information.
B.25+2=2725 + 2 = 27
C.25+5=3025 + 5 = 30
D.25+10=3525 + 10 = 35
💡 Difficulty: hard | ✅ Correct: D

📖 Explanation: k=15(2k+1)=k=15(2k1+2)=k=15(2k1)+k=152=25+10=35\sum_{k=1}^{5} (2k+1) = \sum_{k=1}^{5} (2k-1+2) = \sum_{k=1}^{5} (2k-1) + \sum_{k=1}^{5} 2 = 25 + 10 = 35. Option C is a common error where students add 5 (for the number of terms) instead of 2 per term. Option B adds only 2, ignoring the fact that the constant is added to each of the 5 terms.

Q10. Which of the following is a valid expression for k=1nak\sum_{k=1}^{n} a_k with a changed index?

A.j=0n1aj\sum_{j=0}^{n-1} a_j
B.j=0n1aj+1\sum_{j=0}^{n-1} a_{j+1}
C.j=0naj+1\sum_{j=0}^{n} a_{j+1}
D.j=0naj+2\sum_{j=0}^{n} a_{j+2}
💡 Difficulty: medium | ✅ Correct: B

📖 Explanation: If j=k1j = k-1, then when k=1k=1, j=0j=0; when k=nk=n, j=n1j=n-1. The summand becomes aj+1a_{j+1}. So k=1nak=j=0n1aj+1\sum_{k=1}^{n} a_k = \sum_{j=0}^{n-1} a_{j+1}. Option A omits the ' +1 ' in the subscript, incorrectly changing the terms.

Q11. What is the number of terms in the sum k=310k2\sum_{k=3}^{10} k^2 ?

A.7
B.8 ✅
C.10
D.3
💡 Difficulty: easy | ✅ Correct: B

📖 Explanation: The number of terms is 103+1=810 - 3 + 1 = 8. Students often subtract 3 from 10 to get 7 (Option A), forgetting to add 1. Option C and D are incorrect.

Q12. If ak=2ka_k = 2^k, evaluate k=04ak\sum_{k=0}^{4} a_k.

A.1+2+4+8+16=311+2+4+8+16 = 31
B.2+4+8+16+32=622+4+8+16+32 = 62
C.1+2+4+8+16+32=631+2+4+8+16+32 = 63
D.0+2+4+8+16=300+2+4+8+16 = 30
💡 Difficulty: medium | ✅ Correct: A

📖 Explanation: The lower limit is 0, so the terms are a0=20=1a_0 = 2^0 = 1, a1=2a_1 = 2, a2=4a_2 = 4, a3=8a_3 = 8, and a4=16a_4 = 16. Sum is 31. Option B starts with k=1k=1. Option C has an extra term 252^5. Option D includes k=0k=0 but incorrectly uses 0 instead of 202^0.

Q13. A teacher asks for k=1nk(k+1)\sum_{k=1}^{n} k(k+1). A student gives n(n+1)(n+2)3\frac{n(n+1)(n+2)}{3}. Is this correct?

A.Yes ✅
B.No, it should be n(n+1)(2n+1)6\frac{n(n+1)(2n+1)}{6}
C.No, it should be n(n+1)(n+2)6\frac{n(n+1)(n+2)}{6}
D.No, it should be n(n+1)2\frac{n(n+1)}{2}
💡 Difficulty: hard | ✅ Correct: A

📖 Explanation: k(k+1)=k2+kk(k+1) = k^2 + k. Sum = k2+k=n(n+1)(2n+1)6+n(n+1)2=n(n+1)6[(2n+1)+3]=n(n+1)(2n+4)6=n(n+1)(n+2)3\sum k^2 + \sum k = \frac{n(n+1)(2n+1)}{6} + \frac{n(n+1)}{2} = \frac{n(n+1)}{6} [(2n+1)+3] = \frac{n(n+1)(2n+4)}{6} = \frac{n(n+1)(n+2)}{3}. The student's answer is correct. Option B is the formula for k2\sum k^2 only. Option C is the formula for k(k+1)(k+2)/3\sum k(k+1)(k+2)/3.

Q14. Consider the series S=1+3+6+10+S = 1 + 3 + 6 + 10 + \cdots. If the kk-th term is k(k+1)2\frac{k(k+1)}{2}, what is the sum of the first 10 terms?

A.1011126=220\frac{10 \cdot 11 \cdot 12}{6} = 220
B.1011210112/2=1512.5\frac{10 \cdot 11}{2} \cdot \frac{10 \cdot 11}{2} / 2 = 1512.5
C.1011216=385\frac{10 \cdot 11 \cdot 21}{6} = 385
D.55×2=11055 \times 2 = 110
💡 Difficulty: hard | ✅ Correct: A

📖 Explanation: k=110k(k+1)2=12(k2+k)=12[1011216+10112]=12[385+55]=220\sum_{k=1}^{10} \frac{k(k+1)}{2} = \frac{1}{2} \sum (k^2 + k) = \frac{1}{2} [ \frac{10\cdot 11 \cdot 21}{6} + \frac{10\cdot 11}{2} ] = \frac{1}{2} [385 + 55] = 220. Option B is incorrect algebra. Option C is the sum of squares, not the correct formula. Option D uses the sum of first 10 integers incorrectly.

Q15. If k=1n(3k2)=350\sum_{k=1}^{n} (3k - 2) = 350, what is nn ?

A.10
B.20
C.15 ✅
D.25
💡 Difficulty: hard | ✅ Correct: C

Q16. Which of the following is the correct expansion of k=1412k\sum_{k=1}^{4} \frac{1}{2^k} ?

A.12+14+16+18\frac{1}{2} + \frac{1}{4} + \frac{1}{6} + \frac{1}{8}
B.12+14+18+116\frac{1}{2} + \frac{1}{4} + \frac{1}{8} + \frac{1}{16}
C.11+12+13+14\frac{1}{1} + \frac{1}{2} + \frac{1}{3} + \frac{1}{4}
D.12+13+14+15\frac{1}{2} + \frac{1}{3} + \frac{1}{4} + \frac{1}{5}
💡 Difficulty: easy | ✅ Correct: B

📖 Explanation: k=1k=1 gives 1/21=1/21/2^1 = 1/2, k=2k=2 gives 1/41/4, k=3k=3 gives 1/81/8, k=4k=4 gives 1/161/16. Option A incorrectly has denominators 2,4,6,8. Option C is sum of reciprocals of integers. Option D starts at 2.

Q17. A student evaluates k=1nk3\sum_{k=1}^{n} k^3 as n2(n+1)24\frac{n^2(n+1)^2}{4}. For n=5n=5, they get 225. What is the correct value?

A.225 ✅
B.100
C.200
D.225
💡 Difficulty: medium | ✅ Correct: A

📖 Explanation: The formula is correct for sum of cubes. For n=5n=5, 52624=25364=225\frac{5^2 \cdot 6^2}{4} = \frac{25 \cdot 36}{4} = 225. Option B is 13+23+33+43=1001^3+2^3+3^3+4^3 = 100. Option C is 13+23+33+43+53=2251^3+2^3+3^3+4^3+5^3 = 225.

Q18. If k=1nak=15\sum_{k=1}^{n} a_k = 15 and k=1nbk=7\sum_{k=1}^{n} b_k = 7, what is k=1n(ak+bk)2\sum_{k=1}^{n} (a_k + b_k)^2 ?

A.Cannot be determined. ✅
B.152+72=27415^2 + 7^2 = 274
C.15+7=2215+7=22
D.152+2(15)(7)+72=48415^2 + 2(15)(7) + 7^2 = 484
💡 Difficulty: hard | ✅ Correct: A

📖 Explanation: The sum (ak+bk)2=(ak2+2akbk+bk2)\sum (a_k + b_k)^2 = \sum (a_k^2 + 2a_k b_k + b_k^2). Without knowing ak2\sum a_k^2, bk2\sum b_k^2, and akbk\sum a_k b_k, we cannot determine the value from just the sums of aka_k and bkb_k. Option B incorrectly squares the sums. Option C adds the sums. Option D treats the sum of the squared sum as the square of the sum, which is false.

Q19. Given the sequence ak=2k+1a_k = 2k + 1, find k=1nak\sum_{k=1}^{n} a_k and express it in closed form.

A.n(n+2)n(n+2)
B.n2+1n^2 + 1
C.n2+nn^2 + n
D.n2+2nn^2 + 2n
💡 Difficulty: hard | ✅ Correct: A

📖 Explanation: k=1n(2k+1)=2k+1=2n(n+1)2+n=n(n+1)+n=n2+n+n=n2+2n=n(n+2)\sum_{k=1}^{n} (2k+1) = 2 \sum k + \sum 1 = 2 \cdot \frac{n(n+1)}{2} + n = n(n+1) + n = n^2 + n + n = n^2 + 2n = n(n+2). Option B is n2+1n^2 + 1, which is incorrect. Option C is n2+nn^2 + n. Option D is n2+2nn^2 + 2n.

Q20. Which of the following statements about the sum k=1n(k2k)\sum_{k=1}^{n} (k^2 - k) is true?

A.It equals n(n+1)(n1)3\frac{n(n+1)(n-1)}{3}. ✅
B.It equals n(n+1)(2n+1)6\frac{n(n+1)(2n+1)}{6}.
C.It equals n(n1)2\frac{n(n-1)}{2}.
D.It equals n(n+1)2\frac{n(n+1)}{2}.
💡 Difficulty: hard | ✅ Correct: A

📖 Explanation: k=1n(k2k)=k2k=n(n+1)(2n+1)6n(n+1)2=n(n+1)6[(2n+1)3]=n(n+1)6(2n2)=n(n+1)(n1)3\sum_{k=1}^{n} (k^2 - k) = \sum k^2 - \sum k = \frac{n(n+1)(2n+1)}{6} - \frac{n(n+1)}{2} = \frac{n(n+1)}{6} [(2n+1) - 3] = \frac{n(n+1)}{6} (2n-2) = \frac{n(n+1)(n-1)}{3}. Option B is sum of squares. Option C is sum of first n-1 integers? No, n(n1)/2n(n-1)/2 is sum of first n-1 integers.

Q21. Find the value of k=14sin(kπ/2)\sum_{k=1}^{4} \sin(k\pi/2).

A.0 ✅
B.1
C.-1
D.2
💡 Difficulty: easy | ✅ Correct: A

📖 Explanation: k=1:sin(π/2)=1k=1: \sin(\pi/2)=1, k=2:sin(π)=0k=2: \sin(\pi)=0, k=3:sin(3π/2)=1k=3: \sin(3\pi/2)=-1, k=4:sin(2π)=0k=4: \sin(2\pi)=0. Sum = 0. Option B is just the first term. Option D is sum of 1 and 1? No.

Q22. A student incorrectly writes k=1n1=n\sum_{k=1}^{n} 1 = n. Is this correct?

A.Yes ✅
B.No, it should be 1
C.No, it should be n+1n+1
D.No, it should be n1n-1
💡 Difficulty: easy | ✅ Correct: A

📖 Explanation: The sum k=1n1\sum_{k=1}^{n} 1 has nn terms, each equal to 1, so the sum is nn. Option B would be a single term. Option C is for sum from 0 to n.

Q23. What is k=15k2k\sum_{k=1}^{5} \frac{k}{2^k} ?

A.12+24+38+416+532\frac{1}{2} + \frac{2}{4} + \frac{3}{8} + \frac{4}{16} + \frac{5}{32}
B.12+22+32+42+52\frac{1}{2} + \frac{2}{2} + \frac{3}{2} + \frac{4}{2} + \frac{5}{2}
C.12+14+18+116+132\frac{1}{2} + \frac{1}{4} + \frac{1}{8} + \frac{1}{16} + \frac{1}{32}
D.12+44+98+1616+2532\frac{1}{2} + \frac{4}{4} + \frac{9}{8} + \frac{16}{16} + \frac{25}{32}
💡 Difficulty: easy | ✅ Correct: A

📖 Explanation: The summand is k/2kk / 2^k. For k=1, 1/2; k=2, 2/4; k=3, 3/8; k=4, 4/16; k=5, 5/32. Option B misses the exponent. Option C has numerator 1 for all terms. Option D squares the numerator, which is incorrect.

Q24. If k=1nk=55\sum_{k=1}^{n} k = 55, then k=1n(k+1)=\sum_{k=1}^{n} (k + 1) = ?

A.55+1=5655 + 1 = 56
B.55+n=6055 + n = 60
C.55+5=6055 + 5 = 60
D.Cannot be determined without nn
💡 Difficulty: hard | ✅ Correct: B

🔗 Related Topics (MCQs)