79156174

Date: 2024-11-04 16:05:47
Score: 1
Natty:
Report link

What is going wrong? You convolved the PDF of one variable with the CDF of the other.

np.convolve(a=pdf, v=cdf)

Problem: Convolving a PDF with a CDF does not yield a valid PDF or CDF. The convolution operation for summing random variables specifically requires convolving the PDFs of the variables.

Incorrect Formula:

𝐹𝑋+𝑌(𝑎)=(𝐹𝑋∗𝑔)(a)

How to Correct It:

Convolve the PDFs of X and Y to get the PDF of Z= X +Y and then Integrate the resulting PDF to obtain the CDF of Z.

Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What is
  • Low reputation (0.5):
Posted by: EuanG