WebCab Probability and Statistics Web Services for .NET v3.3 Demo

StudentHypothesis.PercentageTest Method 

Performs hypothesis testing for proportions.

public bool PercentageTest(
   double claimedProportion,
   double proportion,
   int size,
   double significanceLevel
);

Parameters

claimedProportion
The claimed proportion.
proportion
The sample proportion.
size
The sample size.
significanceLevel
The significance level.

Return Value

boolean true if the null hypothesis (H0) cannot be rejected, false if it can be rejected

Remarks

Further Explanation

Given a sample where the sample percentage `p' and the sample size `n' are known. We can conduct the following statistical test:

            		H0: p = h
            		Ha: p != h at `s%' significance level.
where h is the claimed percentage.

See Also

StudentHypothesis Class | Hypothesis Namespace