In: Math
|
ai) Find the mean number of claims made by the sample of smokers and nonsmokers in the group separately.(i.e mean of smokers, mean of nonsmokers)
ii) What is the standard deviation of family size for this population of workers? (standard deviation of popuation) Standardize by converting your “X” values into “Z” values to see whether their historical values match up well with the new company. Use a Z table Hint: use the (ai) and (aii) values along with the means and standard deviations you calculated.
b) First find the Z-value for smokers.
c) And now the Z for nonsmokers.
d) Using your Z-table, find the probability that a nonsmoker will make fewer than 6 claims.
e) Next, find the probability that a smoker will make more than 11 claims.
f) Final Recommendation: This firm will be more risky than the current customer risk pool. True or False
I am assuming that you are using excel for this question. If you want help with any other software or manual calculations, let me know in the comment section.
--------------------------------------
My data is stored in sheet range of A1:G21 as shown -
------------------------------------------------------
a) i)
Now, you can use 'AVERAGEIFS' function to get the conditional average using following function.
=AVERAGEIFS(G2:G21,E2:E21,"=0")
This would give you the mean of 'Total Claims' if 'Cigarettes/Day' = 0. Which is the mean for non-smokers.
And, thus use the function =AVERAGEIFS(G2:G21,E2:E21,">0") for the non smokers.
You get the mean value of 3.5 and 12 for non-smokers and smokers respectively.
-----------------------------------------
ii)
We need population standard deviation for the variable 'Family Size'. So we use the following formula -
=STDEV.P(D2:D21)
And this would give you the value = 1.946792.
----------------------------------------------------------
The standardized value of 'X' would be -
Where is value calculated in a(i) while is the standard deviation calculated in (ii).
--------------------------------
b)
For smokers -
------------------------------------
c)
For non-smokers, the Z value is -
-------------------------------------------------
d)
For non smokers, mean = 3.5
From Z-table you get this value to be 0.8997.
--------------------------------------
e)
For smokers, mean = 12.
And so, we get -
P(X > 11) = 1 - 0.3050 = 0.695.
--------------------------------------------
f)
True.
As the probabiility of making more claims is significant, so it will be more risky than the current customer risk pool.