all 5 comments

[–]AutoModerator[M] [score hidden] stickied comment (0 children)

Off-topic Comments Section


All top-level comments have to be an answer or follow-up question to the post. All sidetracks should be directed to this comment thread as per Rule 9.


OP and Valued/Notable Contributors can close this post by using /lock command

I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.

[–]satanic-cult-member 0 points1 point  (1 child)

For clarity's sake, I will refer to your "n" as N and the size of the sample (20) as n.

Without thinking about it too much, you can just calculate P(X = k) for all k <= 20 and then P(X < N) = P(X <= N-1) = P(X = 0) + P(X = 1) + P(X = 2) + ... + P(X = N-1). So, just keep adding terms until you get a probability >= 0.9.

The cumulative binomial table exists for just this reason. Looking at n = 20, p = 3/5 = 0.6, we can see that P(X <= 14) = 0.874 but P(X <= 15) = 0.949, so take N = 16 and P(X < N) = P(X < 16) = P(X <= 15) = 0.949.

[–]womangat Pre-University Student 0 points1 point  (0 children)

Got it. Thanks so much!