B {Fuzzy.p.value}R Documentation

Class of linear fuzzy sets to construct concept "approximately bigger"

Description

The are several famous fuzzy sets which have meaningful means and are user friendly for introducing. Several linear functions are constructed in this package for easily inspiration to the fuzzy concepts approximatelysmaller\ll approximately smaller \gg , approximatelybigger\ll approximately bigger \gg and approximatelyequal\ll approximately equal \gg. For example, function BB is one of them which users can use it to construct the fuzzy concept approximatelybigger\ll approximately bigger \gg in fuzzy hypotheses. As presented bellow, the membership function of fuzzy set B has two parameters aa and bb:

B(a,b)(x)={1  if  bxxaba  if  ax<b0  if  x<a B(a,b)(x)=\left\{ \begin{array}{lcc} 1 &\ \ if & \ \ b \leq x \\ \frac{x-a}{b-a} &\ \ if & \ \ a \leq x <b \\ 0 &\ \ if & \ \ x <a \end{array} \right.

Usage

B(a, b)

Arguments

a

The first parameter of fuzzy set B(a,b)B(a,b). For better understanding, try to draw the above membership function.

b

The second parameter of fuzzy set B(a,b)B(a,b). For better understanding, try to draw the above membership function.

Value

This function convert a fuzzy hypothesis to its boundary which is a triangular fuzzy number. Therefore, although the input of this function is not triangular fuzzy number, but its output is triangular.

References

Parchami, A., Taheri, S. M., and Mashinchi, M. (2010). Fuzzy p-value in testing fuzzy hypotheses with crisp data. Statistical Papers 51: 209-226.

Parchami, A., Taheri, S. M., and Mashinchi, M. (2012). Testing fuzzy hypotheses based on vague observations: a p-value approach. Statistical Papers 53: 469-484.

Examples

# Introducing the fuzzy null hypothesis H0
H0 = B(1275,1325)


## The function is currently defined as
function (a, b) 
(TriangularFuzzyNumber(a, b, b))

[Package Fuzzy.p.value version 1.1 Index]