You are viewing a single comment's thread. Return to all comments →
double maxLimit = 9800; int n = 49; double mean = 205; double stdDev = 15; double meanX = n * mean; double stdDevX = Math.sqrt(n) * stdDev; double p = probability(meanX, stdDevX, maxLimit);
Explanation
If you need to calculate whether the sum of random values fit the limit then you need:
Seems like cookies are disabled on this browser, please enable them to open this website
Day 6: The Central Limit Theorem I
You are viewing a single comment's thread. Return to all comments →
Explanation
If you need to calculate whether the sum of random values fit the limit then you need: