ineq (version 0.2-13)

major: Majorization

Description

tests whether a vector x majorizes another vector y

Usage

major(x,y)

Arguments

x,y
vectors containing non-negative elements (with same length and same mean)

Value

logical. TRUE if x majorizes y (x >=(M) y), FALSE if not.

Details

even if x and y are comparable (i.e. have same length and same mean) it is possible that neither x majorizes y nor y majorizes x.

References

Marshall / Olkin: Inequalities: Theory of Majorization and Its Applications, New York 1979 (Academic Press)

See Also

Lc

Examples

Run this code
# generate vectors (of incomes)
x <- c(541, 1463, 2445, 3438, 4437, 5401, 6392, 8304, 11904, 22261)
y <- c(841, 2063, 2445, 3438, 4437, 5401, 6392, 8304, 11304, 21961)
# test whether x majorizes y (TRUE, because y is result of
# Pigou-Dalton-transfers)
major(x,y)

Run the code above in your browser using DataLab