I have a Gamma(shape=50, scale=0.1) with support [4,6]. I was able to find its distribution by dividing the full gamma distribution by F(6) - F(4).
p1 = seq(1,10,length=100)
d1 = dgamma(p1, shape=50, scale=0.1)
p2 = seq(4,6,length=100)
d2.full = dgamma(p2, shape=50, scale=0.1)
d2 = d2.full / (pgamma(6, shape=50, scale=0.1) - pgamma(4, shape=50, scale=0.1))
How would I find the central 95 credible interval of this truncated distribution (ie, d2)?
EDIT: Please note that my truncated gamma does not have the same pdf as the standard gamma. The reason is because the truncated gamma must be renormalized so that it integrates to 1 over the support [4,6]. That's why d2 = d2.full / (F(6) - F(4))