random variable with normal distribution

Hello, here is the problem:
A random variable obeys a normal distribution. It has a mean value equal to 100 and a standard deviation equal to 3. Find the probability that:
x < 98
98 < x < 104
x > 98
I have a slight idea i know how to find mean using mean(x) and randn(x) for some random number but no idea how to tie them together.
thank you for your time

回答 (3 件)

Matt J
Matt J 2013 年 11 月 11 日

0 投票

See the erf() command.
Image Analyst
Image Analyst 2013 年 11 月 11 日

0 投票

If you want to do it empirically (like Monte Carlo), you can use this:
numberOfNumbers = 1000000; % Whatever number you want.
% From the help:
randomNumbers = 100 + 3 * randn(1, numberOfNumbers);
% Count number less than 98
count = sum(randomNumbers < 98)
fprintf('The number of numbers less than 98 = %g%%\n',...
count * 100 / numberOfNumbers);
Repeat for other ranges.
Roger Stafford
Roger Stafford 2013 年 11 月 11 日

0 投票

The Statistics Toolbox function 'normcdf' is just what you need.

カテゴリ

ヘルプ センター および File ExchangeRandom Number Generation についてさらに検索

質問済み:

2013 年 11 月 11 日

回答済み:

2013 年 11 月 11 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by