How to solve this problem in MATLAB?
이전 댓글 표시
Most graduate schools of business require applicants for admission to take the Graduate Management Admission Council’s GMAT examination. Scores on the GMAT are roughly normally distributed with a mean of 527 and a standard deviation of 112. What is the probability of an individual scoring above 500 on the GMAT?
답변 (1개)
Alan Stevens
2020년 7월 27일
The following calculates the normal cumulative distribution function for mean 0 and stadard deviation 1:
CDF = (1/2)*(1+erf(x/sqrt(2)));
Calculate your value of x as a number of standard deviations from the mean :
x = (500 - 527)/112;
then use this to find the corresponding value of CDF.
Since the question asks for the probability of being above this value, subtract the result from 1.
카테고리
도움말 센터 및 File Exchange에서 Geology에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!