I'm currently researching monte carlo simulations and the different methods. What I'm finding is that methods such as accept-reject typically sample from a uniform distribution and then compare that to someone criteria that meets a target distribution.
My question is, does this go the other way? Say you were sampling from a binomial distribution and you wanted uniform discrete.
I believe you'd need to do something like f(x)/pdf(x) to balance out the samples of the proposal or else you'd just end up with the same target.
Is this possible? Are there any examples?