Welcome back to Advanced Math Notation! This is lesson four of six, so we are well into the home stretch. In the previous three lessons, you learned to place accents on math symbols, auto-size delimiters with \left and \right, and combine multiple notation elements into layered expressions. Each of those skills will serve you well today.
This lesson focuses on big operators — the large summation, product, and integral signs that show up whenever mathematics describes accumulation or repetition. You will find them everywhere: a data scientist sums squared errors, a physicist integrates force over distance, and a combinatorialist multiplies a sequence of factors. We will learn how to typeset each operator with upper and lower limits, see how LaTeX automatically adjusts their appearance in inline versus display mode, and practice nesting other notation inside them.
Why Big Operators Are Different
Summation with `\sum`
Products with `\prod`
Inline vs. Display: How Limits Move
Integrals with `\int`
Nesting Notation Inside Big Operators
Conclusion and Next Steps
In this lesson, you learned how to typeset the three most common big operators — \sum, \prod, and \int — with upper and lower limits using the familiar underscore and caret syntax. We explored how LaTeX automatically repositions limits between inline and display modes, practiced nesting fractions and functions inside operator bodies, and picked up the \, thin-space convention for writing clean differentials.
Now it is time to put these operators to work in hands-on practice. You will write summations and integrals from scratch, compare inline and display output side by side, and build publication-ready expressions that combine big operators with everything else in your LaTeX toolkit — go show those sigmas and integrals who is in charge!
Be a part of our community of 1M+ users who develop and demonstrate their skills on CodeSignal
Most math symbols, like + or =, stay the same size regardless of where they appear. Big operators behave differently: LaTeX renders them larger than surrounding text in display mode and gives their limits special positioning. This treatment exists because big operators act as organizing signs for an entire sub-expression, much like a heading organizes a paragraph.
The three big operators we will focus on are the most widely used:
Summation (∑) — adds up a sequence of terms, such as totaling monthly revenues.
Product (∏) — multiplies a sequence of terms, as in computing factorials or joint probabilities.
Integral (∫) — accumulates a quantity over a continuous range, like finding the area under a curve.
Each one follows the same basic pattern: the operator symbol, a lower limit attached with an underscore, and an upper limit attached with a caret. If that underscore/caret pattern sounds familiar, it should — it is the same syntax you used for subscripts and superscripts in the previous course.
The \sum command produces the summation sign. We attach a lower limit with _{ } and an upper limit with ^{ }, then write the expression being summed immediately after. Here is a typical example in display math:
latex
\[\sum_{i=1}^{n} a_i\]
i=1∑nai
Let's break down each piece:
\sum — draws the large sigma symbol.
_{i=1} — places i=1 as the lower limit (where the index starts).
^{n} — places n as the upper limit (where the index ends).
a_i — the expression being summed.
Notice that in display mode the limits sit directly above and below the sigma. This is the standard look for summations in textbooks and papers. The braces around i=1 are essential because the lower limit contains more than one character. Writing \sum_i=1^n would attach only i as the subscript, leaving =1 stranded on the baseline.
The product operator works exactly like summation, just with a different symbol. The command \prod gives us the capital pi used for products:
latex
\[\prod_{k=1}^{n} k = n!\]
k=1∏nk=n!
The syntax is identical: \prod_{lower}^{upper} followed by the body of the product. Because \prod is also a big operator, LaTeX applies the same limit-placement rules as \sum. Once you know one, you essentially know both — and that consistency extends to other big operators you may encounter later.
One of the most important things to understand about big operators is that limit placement changes automatically depending on the math environment. In display mode, limits appear above and below the operator. In inline mode, they shift to the side, behaving like regular subscripts and superscripts.
Consider the same summation written both ways:
Mode
Code
Rendered style
Inline
$\sum_{i=1}^{n} a_i$
Limits beside the sigma: ∑i=1nai
Display
\[\sum_{i=1}^{n} a_i\]
Limits above and below the sigma
LaTeX makes this switch to preserve line spacing in running text. A tall sigma with stacked limits would push apart the lines of a paragraph, so inline mode tucks the limits to the side instead. In display mode, where the expression has its own dedicated line, there is plenty of room for the stacked arrangement.
This behavior applies to \sum, \prod, and other big operators alike. You do not need any extra commands — LaTeX handles the switch automatically based on which math environment you choose.
The integral sign is produced by \int. Its limits represent the bounds of integration and attach with the same underscore/caret pattern:
latex
\[\int_0^1 x^2 \, dx\]
∫01x2dx
There are two details worth noting here. First, integral limits in standard LaTeX appear to the side of the integral sign even in display mode, unlike \sum and \prod. This is a typographic convention inherited from traditional mathematical publishing.
Second, notice the \, before dx. This inserts a thin space that visually separates the integrand (x2) from the differential (dx). Without it, the output would look like ∫01x2dx, where x2 and dx run together. The thin space is a small touch, but it is standard practice in professional mathematical writing and well worth making a habit.
Big operators become even more expressive when you place richer notation inside them. The body of a sum, product, or integral can contain fractions, roots, Greek letters, or any other construct — exactly the kind of layering you practiced in the previous lesson.
Here is a summation with a fraction in its body:
latex
\[\sum_{k=1}^{n} \frac{1}{k^2}\]
k=1∑nk21
And here is an integral that combines a trig function with a Greek-letter upper limit and a properly spaced differential:
latex
\[\int_0^{\pi} \sin(x) \, dx\]
∫0πsin(x)dx
Notice the upper limit {\pi} and the function command \sin, both of which we covered in the previous course. The big operator simply provides a new frame for notation you already know how to write.
When building these expressions, the inside-out strategy still applies. Start with the body of the operator — the fraction, the function, or whatever goes inside — and verify it looks correct. Then wrap the big operator and its limits around it. This keeps each step small, making any typos or missing braces easy to spot.