WebCab Probability and Statistics for COM v3.3 Demo

StudentHypothesis.MeanTest Method 

Performs hypothesis testing about means.

public bool MeanTest(
   double claimedMean,
   double mean,
   double standardDeviation,
   int size,
   double significanceLevel
);

Parameters

claimedMean
The claimed mean.
mean
The sample mean.
standardDeviation
The standard deviation.
size
The sample size.
significanceLevel
The significance level.

Return Value

boolean true if we cannot reject the null hypothesis (H0) or false if we can reject it

Remarks

Further Explanation

Having one sample with mean `u', standard deviation `d' and size `n', we can conduct the following hypothesis test:

            		H0: u = h
            		Ha: u != h at 's%' significance level.
where 'h' is the claimed mean.

See Also

StudentHypothesis Class | WebCab.COM.Statistics.Hypothesis Namespace