- 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 Arithmetic mean of first 10 natural numbers
Given: The numbers are from 1-10
To find: We have to find the arithmetic mean of the first 10 numbers.
Solution:
First 10 natural numbers are:
1, 2, 3, 4, 5, 6, 7, 8, 9 and 10.
Sum of first 10 natural numbers = 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10
= 55
Therefore, arthimetic mean = $\frac{Sum\ of\ the\ numbers}{total\ number\ of\ numbers}$
=> AM = $\ \frac{55}{10} \ =\ 5.5$
Advertisements