Sum of Even Numbers Formula — Proof & Examples

#Math Formula
TL;DR
The sum of even numbers formula says the first $n$ positive even integers — $2 + 4 + 6 + \ldots + 2n$ — total $n(n+1)$. This article gives the formula, two proofs (one algebraic, one visual), three worked examples spanning Quick to Stretch difficulty, the contrast with the sum of odd integers, and the most common slip-ups.
BT
Bhanzu TeamLast updated on May 31, 20267 min read

A Formula a Nine-Year-Old Discovered by Mistake

Carl Friedrich Gauss was nine when he added $1$ through $100$ in his head. The even-number version is just as quick — once you see the trick.

The sum of even numbers formula says:

$$2 + 4 + 6 + \ldots + 2n = n(n+1).$$

One sum. One product. No long addition. The article below shows where it comes from, why it works, and where you'll see it again in higher math.

The Formula

For the first $n$ positive even integers:

$$\boxed{;S_n = 2 + 4 + 6 + \ldots + 2n = n(n+1);}$$

Equivalently, since $1 + 2 + 3 + \ldots + n = \frac{n(n+1)}{2}$ (the Gauss identity), doubling both sides gives $2 + 4 + 6 + \ldots + 2n = n(n+1)$. The two formulas are the same fact wearing different clothes.

Quick facts.

  • Pattern: $2, 4, 6, 8, \ldots$ — arithmetic progression with first term $a = 2$, common difference $d = 2$.

  • Closed form: $S_n = n(n+1)$.

  • Grade introduced: CCSS-M HSA-SSE.B.4 — geometric and arithmetic series; NCERT Class 10 Chapter 5 — Arithmetic Progressions.

  • Companion identity: Sum of first $n$ odd numbers is $n^2$.

  • AP formula it specialises: $S_n = \frac{n}{2}[2a + (n-1)d]$.

How the Formula Is Derived — Two Proofs

Proof 1 — Factor out the 2.

Each even number is twice a positive integer:

$$2 + 4 + 6 + \ldots + 2n = 2(1 + 2 + 3 + \ldots + n).$$

The inside is the Gauss sum: $1 + 2 + \ldots + n = \frac{n(n+1)}{2}$. Substitute:

$$2 \cdot \frac{n(n+1)}{2} = n(n+1).$$

Proof 2 — The pairing trick.

Write the sum forwards and backwards:

$$S_n = 2 + 4 + 6 + \ldots + (2n-2) + 2n$$ $$S_n = 2n + (2n-2) + \ldots + 6 + 4 + 2$$

Add term-by-term. Every column sums to $2n + 2$. There are $n$ columns, so:

$$2 S_n = n(2n + 2) = 2n(n+1).$$

Divide by 2: $S_n = n(n+1)$.

Two routes, same destination. The pairing proof is the one Gauss used as a child — and the one the visual rectangle in the hook image illustrates.

Three Worked Examples, From Quick to Stretch

Quick. Find $2 + 4 + 6 + 8 + 10$.

Here $n = 5$ (five terms). Apply $S_n = n(n+1)$:

$$S_5 = 5 \cdot 6 = 30.$$

Verify by direct addition: $2 + 4 + 6 + 8 + 10 = 30$. ✓

Final answer: $30$.

Standard (Wrong-Path-First). Find the sum of even numbers from $2$ to $100$.

Wrong path. A common first attempt in our McKinney TX Grade 9 cohort: "There are $100$ terms, so $S = 100 \cdot 101 = 10100$." Look at that. The largest even number is $100$, not $200$ — so $100$ cannot be both the largest term and the count of terms.

The count is half the largest value: $n = 100 / 2 = 50$. There are $50$ even numbers between $2$ and $100$, not $100$.

Correct. $n = 50$, so $S_{50} = 50 \cdot 51 = 2550$.

Final answer: $2 + 4 + 6 + \ldots + 100 = 2550$.

Sanity-check: pair $2$ with $100$ → $102$; pair $4$ with $98$ → $102$. $25$ such pairs at $102$ each gives $25 \cdot 102 = 2550$. ✓

Stretch. A theatre seats audience in rows of even count — Row 1 has 2 seats, Row 2 has 4, Row 3 has 6, increasing by 2 each row. The theatre has $30$ rows. What's the total seating capacity?

Total seats $= 2 + 4 + 6 + \ldots + 60$, with $n = 30$.

$$S_{30} = 30 \cdot 31 = 930.$$

Final answer: $930$ seats.

Where $n(n+1)$ Shows Up Beyond the Sum

The identity isn't only a school formula — it appears across discrete math.

  • Binomial coefficients. $n(n+1) = 2 \binom{n+1}{2}$ — twice the number of ways to pick 2 items from $n+1$. So the sum of the first $n$ evens equals twice the count of handshakes in a room of $n+1$ people.

  • Algorithm analysis. Sorting algorithms like bubble sort and insertion sort do roughly $n(n+1)/2$ comparisons in the worst case — directly related to the Gauss sum, and therefore one factor away from the sum of evens.

  • Triangular numbers. The $n$th triangular number is $T_n = \frac{n(n+1)}{2}$. The sum of the first $n$ even integers is exactly $2 T_n$ — twice the $n$th triangular number. The visual: a triangular pile of dots, then doubled.

  • Physics — uniformly accelerated motion. When acceleration is constant, distances covered in successive equal time intervals are in arithmetic progression $1, 3, 5, 7, \ldots$ (odd) or $2, 4, 6, 8, \ldots$ (even, when the AP is scaled). The cumulative distance is a sum-of-AP — a direct application.

  • Combinatorics. The number of ordered pairs $(i, j)$ with $1 \le i < j \le n+1$ is $\binom{n+1}{2} = \frac{n(n+1)}{2}$ — again, the half-companion of the even-sum identity.

The formula is the same mathematical object showing up in five different costumes.

Where Students Trip Up on the Even-Sum Formula

1. Counting terms wrong — using the largest value instead of the count.

Where it slips in: Problems phrased "sum of even numbers from 2 to 50" or "from 2 to 100."

Don't do this: Plug the largest value $50$ (or $100$) into $n(n+1)$ directly. That gives $50 \cdot 51 = 2550$ for the sum from $2$ to $50$ — wrong by a factor of two.

The correct way: The count of even numbers from $2$ to $2k$ is $k$, not $2k$. Divide the largest value by $2$ to get $n$. From $2$ to $50$: $n = 25$, so $S = 25 \cdot 26 = 650$.

2. Mixing up "first $n$ even" with "first $n$ odd."

Where it slips in: Problems that switch between even and odd partway, or homework alternating "sum of first $n$ even" with "sum of first $n$ odd."

Don't do this: Apply $n(n+1)$ to a sum of odd numbers.

The correct way: First $n$ evens: $n(n+1)$. First $n$ odds: $n^2$. Memorise the pair. Cross-check: the sum of the first $n$ odds is always a perfect square ($1, 4, 9, 16, \ldots$) — if your answer isn't a perfect square, you used the wrong formula.

3. Forgetting to subtract when the AP doesn't start at $2$.

Where it slips in: Problems like "sum of even numbers between $10$ and $50$."

Don't do this: Apply $n(n+1)$ directly with $n = 20$ (the count of evens between $10$ and $50$).

The correct way: Use the full AP formula $S = \frac{n}{2}[2a + (n-1)d]$ with $a = 10$, $d = 2$, $n = 21$ (count of even numbers from $10$ to $50$ inclusive). Or compute (sum from $2$ to $50$) − (sum from $2$ to $8$) = $650 - 20 = 630$. Roughly four out of every ten Grade 10 students in our Bhanzu cohorts try to use $n(n+1)$ on these problems and get a number that's $20$–$30%$ off.

4. Sign errors when extending to negative even integers — the Patriot missile lesson.

Where it slips in: Applications that sum signed values (cumulative drift, signed distances).

Don't do this: Treat a sum of signed quantities as if it were unsigned.

The correct way: The 1991 Patriot missile failure at Dhahran — 28 American soldiers killed — was caused by a cumulative rounding error in a sum, where each term was tiny but the cumulative drift over 100 hours of operation grew to 0.34 seconds, enough to miss an incoming Scud by 600 metres. Sums of numbers behave according to clean closed-form identities only when every term is recorded exactly. The formula is right; the implementation must be too.

Conclusion

  • The sum of even numbers formula for the first $n$ positive even integers is $S_n = n(n+1)$.

  • It follows from the Gauss identity $1 + 2 + \ldots + n = \frac{n(n+1)}{2}$ — multiply both sides by $2$.

  • The visual proof: an even-staircase fits exactly inside an $n \times (n+1)$ rectangle.

  • The companion identity — sum of first $n$ odd numbers — is $n^2$. Memorise both at once.

  • The most common slip is using the largest value as $n$ instead of half the largest value — always divide by 2 first.

Try It Yourself — Three Problems

Try these before moving on. If you trip on counting terms, come back to Mistake 1.

  1. Find the sum of the first $20$ positive even integers.

  2. Find $4 + 8 + 12 + \ldots + 100$ — a sum of multiples of $4$, not of $2$. (Hint: factor out the $4$.)

  3. The first $n$ even numbers sum to $420$. What is $n$?

Want a live Bhanzu trainer to walk through more sum of even numbers formula problems with your child? Book a free demo class — online globally.

Book a Free Demo

Was this article helpful?

Your feedback helps us write better content

Frequently Asked Questions

What is the sum of the first 10 even numbers?
$10 \cdot 11 = 110$. Check: $2 + 4 + 6 + 8 + 10 + 12 + 14 + 16 + 18 + 20 = 110$.
What is the formula for the sum of even numbers from 1 to 100?
The even numbers from $2$ to $100$ are $50$ in count. $S = 50 \cdot 51 = 2550$.
Is the sum of even numbers always even?
Yes. Every term is even, so the total is even. Equivalently, $n(n+1)$ is always even because one of $n, n+1$ is always even.
What is the difference between $n(n+1)$ and $\frac{n(n+1)}{2}$?
$n(n+1)$ is the sum of the first $n$ even positive integers. $\frac{n(n+1)}{2}$ is the sum of the first $n$ positive integers (the Gauss sum). One is twice the other.
How do you find the sum of even numbers between two values?
Subtract the smaller cumulative sum from the larger. Sum from $2$ to $30$ minus sum from $2$ to $10$ gives sum from $12$ to $30$.
Does the formula work for negative even integers?
The closed form $n(n+1)$ is for the first $n$ positive evens. For arbitrary even integers (positive, negative, or mixed), fall back on the general AP formula $S = \frac{n}{2}[2a + (n-1)d]$.
✍️ Written By
BT
Bhanzu Team
Content Creator and Editor
Bhanzu’s editorial team, known as Team Bhanzu, is made up of experienced educators, curriculum experts, content strategists, and fact-checkers dedicated to making math simple and engaging for learners worldwide. Every article and resource is carefully researched, thoughtfully structured, and rigorously reviewed to ensure accuracy, clarity, and real-world relevance. We understand that building strong math foundations can raise questions for students and parents alike. That’s why Team Bhanzu focuses on delivering practical insights, concept-driven explanations, and trustworthy guidance-empowering learners to develop confidence, speed, and a lifelong love for mathematics.
Related Articles
Book a FREE Demo ClassBook Now →