major: Majorization

Description Usage Arguments Details Value References See Also Examples

Description

tests whether a vector x majorizes another vector y

Usage

1
major(x,y)

Arguments

x,y

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

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.

Value

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

References

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

See Also

Lc

Examples

1
2
3
4
5
6
# 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)

Example output

[1] TRUE

ineq documentation built on May 2, 2019, 7:29 a.m.

Related to major in ineq...