ScholarQuill logoScholarQuillUniversity Notes
  • Notes
  • Past Papers
  • Blogs
  • Todo
Login
ScholarQuill logoScholarQuillUniversity Notes
Login
NotesPast PapersBlogsTodo
More
SubjectsDiscussionCGPA CalculatorGPA CalculatorStudent PortalCourse Outline
About
About usPrivacy PolicyReportContact
Notes
Past Papers
Blogs
Todo
Analytics
    Current Subject
    🧩
    Math Deficiency – II
    MD-002
    Progress0 / 32 topics
    Topics
    1. Complex Numbers2. Arithmetic with Complex Numbers (Add, subtract, multiply and divide complex numbers)3. Trigonometric Polar Form of Complex Numbers4. De Moivre's Theorem and nth Roots5. Recursion6. Sequences and Series7. Sigma Notation8. Arithmetic Series9. Geometric Series (Sum infinite and finite geometric series and categorize geometric series)10. Counting with Permutations and Combinations11. Basic Probability12. Binomial Theorem13. Limit: Notation, Graphs to Find Limits, Tables to Find Limits14. Substitution to Find Limits, Rationalization to Find Limits15. One Sided Limits and Continuity16. Rate of Change: Instantaneous Rate of Change17. Tangent Lines and Rates of Change18. Derivatives: The Derivative Function19. Introduction to Techniques of Differentiation20. The Product and Quotient Rules21. Derivatives of Trigonometric Functions22. The Chain Rule23. Derivatives of Logarithmic Functions24. Derivatives of Exponential and Inverse Trigonometric Functions25. Increase, Decrease, and Concavity26. Relative Extrema, Absolute Maxima and Minima27. Integrals: An Overview of the Area Problem28. Area Under a Curve29. The Indefinite Integral30. Integration by Substitution31. The Definition of Area as a Limit; Sigma Notation32. The Definite Integral
    MD-002›Sigma Notation
    Math Deficiency – IITopic 7 of 32

    Sigma Notation

    9 minread
    1,588words
    Intermediatelevel

    Sigma notation (also called summation notation) is a compact way to express the sum of a sequence of terms. The Greek letter sigma (Σ\SigmaΣ) is used to represent summation. It allows you to express sums efficiently, especially when the pattern of terms is repetitive or follows a specific rule.

    General Form of Sigma Notation:

    The general form of sigma notation is:

    ∑i=mnf(i)\sum_{i=m}^{n} f(i)i=m∑n​f(i)

    Where:

    • Σ\SigmaΣ indicates summation.
    • iii is the index of summation (the variable that changes value in each term).
    • mmm is the lower limit of summation (the starting value for iii).
    • nnn is the upper limit of summation (the ending value for iii).
    • f(i)f(i)f(i) is the general term (the expression that defines the terms being summed, depending on iii).

    How it Works:

    • The summation starts at the value i=mi = mi=m and ends at i=ni = ni=n.
    • For each integer iii from mmm to nnn, you compute f(i)f(i)f(i) and then add the results together.

    Example 1: Simple Sum

    ∑i=14i\sum_{i=1}^{4} ii=1∑4​i

    This represents the sum of integers from 1 to 4. So,

    ∑i=14i=1+2+3+4=10\sum_{i=1}^{4} i = 1 + 2 + 3 + 4 = 10i=1∑4​i=1+2+3+4=10

    In this case, f(i)=if(i) = if(i)=i, and we add all values of iii from 1 to 4.

    Example 2: Sum of Squares

    ∑i=13i2\sum_{i=1}^{3} i^2i=1∑3​i2

    This represents the sum of the squares of integers from 1 to 3. So,

    ∑i=13i2=12+22+32=1+4+9=14\sum_{i=1}^{3} i^2 = 1^2 + 2^2 + 3^2 = 1 + 4 + 9 = 14i=1∑3​i2=12+22+32=1+4+9=14

    Here, f(i)=i2f(i) = i^2f(i)=i2, so for each iii from 1 to 3, we square iii and then sum the results.

    Example 3: Sum of a Linear Expression

    ∑i=15(2i+1)\sum_{i=1}^{5} (2i + 1)i=1∑5​(2i+1)

    This represents the sum of the expression 2i+12i + 12i+1 for iii from 1 to 5. So,

    ∑i=15(2i+1)=(2(1)+1)+(2(2)+1)+(2(3)+1)+(2(4)+1)+(2(5)+1)\sum_{i=1}^{5} (2i + 1) = (2(1) + 1) + (2(2) + 1) + (2(3) + 1) + (2(4) + 1) + (2(5) + 1)i=1∑5​(2i+1)=(2(1)+1)+(2(2)+1)+(2(3)+1)+(2(4)+1)+(2(5)+1)

    Simplifying:

    =(2+1)+(4+1)+(6+1)+(8+1)+(10+1)=3+5+7+9+11=35= (2 + 1) + (4 + 1) + (6 + 1) + (8 + 1) + (10 + 1) = 3 + 5 + 7 + 9 + 11 = 35=(2+1)+(4+1)+(6+1)+(8+1)+(10+1)=3+5+7+9+11=35

    Key Properties of Sigma Notation:

    Sigma notation has several useful properties that can simplify calculations, especially when dealing with large sums:

    1. Linearity of Summation:

      ∑i=mn[f(i)+g(i)]=∑i=mnf(i)+∑i=mng(i)\sum_{i=m}^{n} [f(i) + g(i)] = \sum_{i=m}^{n} f(i) + \sum_{i=m}^{n} g(i)i=m∑n​[f(i)+g(i)]=i=m∑n​f(i)+i=m∑n​g(i)

      This means that you can break up a sum into two separate sums and then add them.

    2. Constant Factor:

      ∑i=mnc⋅f(i)=c⋅∑i=mnf(i)\sum_{i=m}^{n} c \cdot f(i) = c \cdot \sum_{i=m}^{n} f(i)i=m∑n​c⋅f(i)=c⋅i=m∑n​f(i)

      If a constant ccc is multiplied by the function f(i)f(i)f(i), you can factor out the constant.

    3. Sum of Constants:

      ∑i=mnc=c⋅(n−m+1)\sum_{i=m}^{n} c = c \cdot (n - m + 1)i=m∑n​c=c⋅(n−m+1)

      If you are summing a constant, the sum is simply the constant multiplied by the number of terms (i.e., n−m+1n - m + 1n−m+1).

    Example 4: Using the Properties

    Let’s say you have the following sum:

    ∑i=14(3i+2)\sum_{i=1}^{4} (3i + 2)i=1∑4​(3i+2)

    You can split the sum into two parts:

    ∑i=14(3i+2)=∑i=143i+∑i=142\sum_{i=1}^{4} (3i + 2) = \sum_{i=1}^{4} 3i + \sum_{i=1}^{4} 2i=1∑4​(3i+2)=i=1∑4​3i+i=1∑4​2

    Now, calculate each sum separately:

    • For ∑i=143i\sum_{i=1}^{4} 3i∑i=14​3i, factor out the 3:

      3∑i=14i=3(1+2+3+4)=3×10=303 \sum_{i=1}^{4} i = 3(1 + 2 + 3 + 4) = 3 \times 10 = 303i=1∑4​i=3(1+2+3+4)=3×10=30
    • For ∑i=142\sum_{i=1}^{4} 2∑i=14​2, since 2 is a constant, use the formula for the sum of constants:

      ∑i=142=2×4=8\sum_{i=1}^{4} 2 = 2 \times 4 = 8i=1∑4​2=2×4=8

    So the total sum is:

    ∑i=14(3i+2)=30+8=38\sum_{i=1}^{4} (3i + 2) = 30 + 8 = 38i=1∑4​(3i+2)=30+8=38

    Summing a Series:

    Sometimes sigma notation is used to represent known mathematical series, such as the sum of the first nnn natural numbers, or the sum of squares, or other well-known patterns. For instance:

    • Sum of the first nnn natural numbers:

      ∑i=1ni=n(n+1)2\sum_{i=1}^{n} i = \frac{n(n+1)}{2}i=1∑n​i=2n(n+1)​
    • Sum of the first nnn squares:

      ∑i=1ni2=n(n+1)(2n+1)6\sum_{i=1}^{n} i^2 = \frac{n(n+1)(2n+1)}{6}i=1∑n​i2=6n(n+1)(2n+1)​

    Summary:

    Sigma notation provides a concise and efficient way to represent sums of sequences. It is especially useful for working with sums where the terms follow a pattern, and it can be simplified using properties like linearity, constant factors, and known sum formulas.

    Previous topic 6
    Sequences and Series
    Next topic 8
    Arithmetic Series

    Past Papers

    Open this section to load past papers

    Click on Show Past Papers to see past papers.
    On This Page
      Reading Stats
      Est. reading time9 min
      Word count1,588
      Code examples0
      DifficultyIntermediate