Quick Fix Summary: Use the formula S = n(n + 1)/2 to find the sum of the first n natural numbers. For example, the sum of numbers from 1 to 100 is 5,050.
What's Happening
You're trying to add up the first n natural numbers (1 + 2 + 3 + … + n).
This shows up everywhere—math problems, coding tests, even data analysis. (Seriously, it's one of those formulas that saves you from endless tedium.) Instead of adding each number individually, there's a neat trick:
S = n(n + 1)/2. It works by taking the average of the sequence and multiplying by the number of terms. Quick, accurate, and perfect when you need results fast.
Math is Fun has a great explanation of arithmetic series that explains why this formula works.
Step-by-Step Solution
Follow these four steps to calculate the sum of the first n natural numbers.
Here's how to do it right:
- Identify your n: Figure out the last number in your sequence. Working with 1 to 50? Then n = 50.
- Plug into the formula: Drop your n into S = n(n + 1)/2. For n = 50:
- First, add 1 to n: 50 + 1 = 51
- Then multiply by n: 50 × 51 = 2,550
- Finally, divide by 2: 2,550 ÷ 2 = 1,275
- Verify your result: Use a calculator or write a quick script. In Python,
sum(range(1, 51)) should give you 1,275.
- Understand what you've got: That number represents the total of every integer from 1 to n.
Example: Sum of the first 100 natural numbers
| n |
Calculation |
Result |
| 100 |
100 × 101 ÷ 2 |
5,050 |
If This Didn’t Work
Try these alternative methods if the formula doesn't fit your needs.
Sometimes the standard approach just isn't right for the job. Here are some solid alternatives:
Prevention Tips
Follow these best practices to avoid mistakes and work smarter.
Little habits make a huge difference:
- Memorize the formula: S = n(n + 1)/2 is your go-to here. It's been reliable since the 1700s and still works perfectly today.Wikipedia covers the history of arithmetic progressions if you're curious.
- Pair numbers for balance: Combine the first and last numbers, then the second and second-last, and keep going. Each pair adds up to n + 1. Multiply the number of pairs (n/2) by n + 1 to get your total.
- Test with small numbers: Try n = 1, 2, or 3. You should get 1, 3, and 6 respectively. This catches formula mix-ups early.
- Double-check with code: Even after using the formula, run a quick verification in a script or spreadsheet. Especially important for large n values.
- Learn the underlying math: Understanding where this formula comes from—the arithmetic series sum Math is Fun explains it well—helps you adapt it for other problems.
What’s Happening
You're looking to add up the first n natural numbers (1, 2, 3, ..., n).
You'll encounter this often in math homework, programming tasks, or data analysis. (Honestly, it's one of those formulas that feels like a cheat code.) The fastest method? The trusty shortcut: sum equals
n × (n + 1) ÷ 2. How does it work? Take the average of the first and last number, then multiply by the count of numbers. No more endless addition.
Edited and fact-checked by the TechFactsHub editorial team.