We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Normal Distribution #3
Normal Distribution #3
Sort by
recency
|
14 Discussions
|
Please Login in order to post a comment
Answer:
from math import exp, factorial, pi, erf
Cumulative Probability
Probility that in a normal distribution the value is less than x.
def CDF(x, mu, std): return 0.5*(1+erf((x-mu)/(std*((2**0.5)))))
Python code I used successfully:
is thr ny negative value for (b)part??
You have to laugh a little... especially after carefully reading the problem statement:
The Devil Is In The Details. Calculate to four decimal places (what is typically found in printed tables).. then MULTIPLY by 100 to get two digits to the left and two digits to the right of the decimal point. Namely, the PERCENTAGE value.