Assume A follows Exponential distribution; B follows Gamma distribution How to plot the PDF of 0.5*(A+B)
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
This is fairly straight forward using the "distr" package:
Edit by JD Long Resulting plot looks like this:
|
||||
|
|
|
If you're just looking for fast graph I usually do the quick and dirty simulation approach. I do some draws, slam a Gaussian density on the draws and plot that bad boy:
output should look a little like this:
|
||||
|
|
|
Here is an attempt at doing the convolution (which @Jim Lewis refers to) in R. Note that there are probably much more efficient ways of doing this.
|
|||
|
|
I'm not an R programmer, but it might be helpful to know that for independent random variables with PDFs f1(x) and f2(x), the PDF of the sum of the two variables is given by the convolution f1 * f2 (x) of the two input PDFs. |
|||
|
|

