

InterviewSolution
Saved Bookmarks
1. |
Find the mean of the following distribution:x: 10 30 50 70 89f: 7 8 10 15 10 |
Answer» `Mean =(sum(xi*fi))/(sum(fi))` `Mean= (10*7+ 30*8+ 50*10+ 70*15+89*10)/(7+8+10+15+10)``Mean= 2750/50=55` |
|