I'm trying to generate pairs of random values from two lognormal distributions - the catch is that one of them must be less than the other. For example:
a1 <- log(47.31)
b1 <- sqrt(2*log(50.84/47.31))
a2 <- log(47.31)
b2 <- sqrt(2*log(59.34/47.31))
x1 <- rlnorm(1,a1,b1)
x2 <- rlnorm(1,a2,b2)
I need some way of ensuring that x1 < x2. Is there any slick way to do this?