Probability question

rmccafferty

Board Regular
Joined
Jul 16, 2009
Messages
60
Does anyone know how to set up this problem to solve it?

Four relatives are going to give you money for your birthday. The amount each relative gives you is equally likely to be any number between $0 and $200. The chance that the total amount of money you receive is at most $300 is _____?
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
FYI I'm no statistician


You could test it using Rand()*200 or randbetween(0,200) over x samples (although the debate about how random rand is reallly)

in cells A1:A10000 or whatever you want put (i went to 100,000)


Sheet1

*ABCDEFG
SampleTest>= 300?****
*>300
*<300*
****
****
****

<tbody>
[TD="bgcolor: #cacaca, align: center"]1[/TD]

[TD="bgcolor: #cacaca, align: center"]2[/TD]
[TD="align: right"]1[/TD]
[TD="align: right"]387.289[/TD]
[TD="align: right"]1[/TD]

[TD="align: right"]79961[/TD]
[TD="align: right"]79.96%[/TD]

[TD="bgcolor: #cacaca, align: center"]3[/TD]
[TD="align: right"]2[/TD]
[TD="align: right"]265.551[/TD]
[TD="align: right"]0[/TD]

[TD="align: right"]100000[/TD]

[TD="bgcolor: #cacaca, align: center"]4[/TD]
[TD="align: right"]3[/TD]
[TD="align: right"]389.4927[/TD]
[TD="align: right"]1[/TD]

[TD="bgcolor: #cacaca, align: center"]5[/TD]
[TD="align: right"]4[/TD]
[TD="align: right"]427.6322[/TD]
[TD="align: right"]1[/TD]

[TD="bgcolor: #cacaca, align: center"]6[/TD]
[TD="align: right"]5[/TD]
[TD="align: right"]404.7658[/TD]
[TD="align: right"]1[/TD]

</tbody>

Spreadsheet Formulas
CellFormula
B2=RAND()*200+RAND()*200+RAND()*200+RAND()*200
C2=IF(B2<300, 0,1)
F2=SUM(C:C)
G2=F2/F3
B3=RAND()*200+RAND()*200+RAND()*200+RAND()*200

<tbody>
</tbody>

<tbody>
</tbody>



Excel tables to the web >> Excel Jeanie HTML 4
 
Upvote 0
Thanks for the link

Not being a statistician as i said earlier i got ~80%, seeing that thread it appears ~20% is popular, but that seems wrong from a basic maths point of view to me

20% = £40 per person, but if the ranges of values is £0 - £200 and no weighting given, the expectation per person is 50% @ £100 which indicates the answer should be > 50% over a large sample :confused:



 
Upvote 0
Not being a statistician as i said earlier i got ~80%, seeing that thread it appears ~20% is popular, but that seems wrong from a basic maths point of view to me

I think your approach is fine but the question asks for
The chance that the total amount of money you receive is at most $300
. Your ~80% is the chance that it's more than $300, i.e. the opposite
 
Upvote 0

Forum statistics

Threads
1,225,681
Messages
6,186,411
Members
453,352
Latest member
OrionF

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top