Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9117427
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T04:53:38+00:00 2026-06-17T04:53:38+00:00

Suppose that I want to simulate in Python a classical problem: there is a

  • 0

Suppose that I want to simulate in Python a classical problem: there is a bag with 55 % red balls, and 45 % green balls.

I want to extract 10 balls, and detect what is the probabilyty of all these balls to be green.

I use a Monte Carlo simulation, using the function random.sample(balls, 10) like this:

from random import choice, shuffle, sample, randint

Red = False
Green = True

bags = [Red for _ in range(55)]
bags.extend([Green for _ in range(45)])
# shuffle(bags)

def testonce():
    return all(sample(bags, 10))

def test(N):
    K = 0
    for _ in xrange(N): K += testonce()
    return float(K)/N

print '/', test (10000000)
print ':', .45**10

This code prints the probability detected by simulation , and the real probability (the correct answer). It prints so:

/ 0.0001848
: 0.00034050628916

This difference shows me that

  • either the random module is wrong

  • either I miss something, and do something wrong in the code.

What do I miss ? How to write correctly the simulation , such that when N grows, the returned number to converge to the real probability ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T04:53:40+00:00Added an answer on June 17, 2026 at 4:53 am

    radom.sample chose without replacement, you are computing the probability with replacement.

    random.sample(population, k)
        Return a k length list of unique elements chosen from the population sequence. Used for random sampling without replacement.
    

    (doc)

    The correct probabilty (for you MC) is:

    In [30]: np.prod(np.arange(36,46)/np.arange(91.0,101))
    Out[30]: 0.00018429406441449519
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Suppose I have a Python class that I want to add an extra property
Suppose that I want to install a binary module for Python on Windows. Suppose
Ok another question in VHDL. Below is my code. Suppose that I want my
Actually i want that, suppose i have a colorcode #FF3366. How can i examine
Suppose I want to put objects that identify a server into a stl set
Suppose I want to find the longest subsequence such that first half of subsequence
Suppose I want to write an app for Android OS that is not going
Suppose you have a module that you know is safe. You want to mark
Example: Suppose in the following example I want to match strings that do not
Suppose, I want to have a link or a button that when user click

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.