Question: p = an array of values between [0,1], p represents the probability when the coin lands heads and affects an individual's chances of getting the

p = an array of values between [0,1], p represents the probability when the coin lands heads and affects an individual's chances of getting the sequence TTTHTHHTTH over 10 tosses.

Function g = function of p, which represents how likely our sequence is depending on our array of probability values p.

Python code

p = np.random.rand(100)

g = ???

plt.plot(p, g, lw=2, color='red)

plt.plot([0, 1], [0, 0], lw=1, color='blue')

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!