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
|
15 Discussions
|
Please Login in order to post a comment
Why is this a hard question? You can get the answers straight out of Excel.
Incidentally, each student's score should be an integer and not a real number (as assumed in this question).
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??