Don't stand next to me

What is the probability that the height discrepancy between two random guys exceeds 12 inches? Give your answer to 3 decimal places.

Details and Assumptions

  • Above is a remarkable picture of Spud Webb 5 7 5'7 standing next to Manute Bol 7 7 7'7 .

  • Adult male heights are distributed normally with an average of 68 inches and a standard deviation of 4.5 inches.

  • Monte-Carlo is your friend, although other approaches are also definitely encouraged.


The answer is 0.059.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

1 solution

Bill Bell
Aug 13, 2015
1
2
3
4
5
6
7
from random import gauss

N=100000
count=0
for n in range(N):
    count+=abs(gauss(68,4.5)-gauss(68,4.5))>12
print 1.*count/N

What happens inside the box?

Rushikesh Jogdand - 4 years, 11 months ago

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...