InterviewSolution
Saved Bookmarks
| 1. |
Find the mean of the first eight natural numbers. |
|
Answer» We know that First eight natural numbers = 1, 2, 3, 4, 5, 6, 7 and 8 So we get Mean = sum of numbers/ total numbers By substituting the values Mean = (1 + 2 + 3 + 4 + 5 + 6 + 7 + 8)/8 On further calculation Mean = 36/8 By division Mean = 4.5 Therefore, the mean of the first eight natural numbers is 4.5. |
|