You are viewing a single comment's thread. Return to all comments →
int n = 100; double meanN = 500; double stdDevN = 80; double z = 1.96; double stdDev = stdDevN / Math.sqrt(n); double delta = z * stdDev; print(meanN - delta); print(meanN + delta);
Seems like cookies are disabled on this browser, please enable them to open this website
Day 6: The Central Limit Theorem III
You are viewing a single comment's thread. Return to all comments →