- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Find the sum of first and even natural numbers.
To Do: Find the sum of first n even natural numbers
Solution:
The n even no. will be in the form; $2+4+6+...+2n$
We have to solve using Sum of n terms of an Arithmetic Progression formula.
We know Sum of n terms of an Arithmetic Progression = $\frac{n(2a+(n-1)d)}{2}$
Here, $a = 2, n = n, d = 2$
So, $2+4+6+...+2n = \frac{n(2\times2 +(n-1)2}{2}$
= $\frac{n}{2(2n+2)}$
=$\frac{n}{2}[4n+2n-2]$
=$\frac{n}{2}[2n+2]$
= $n(n+1)$
So, sum of first n even natural numbers $n(n+1)$
Advertisements