Let X and Y be two independent, exponentially distributed random variables with parameters ,lambda and mu, respectively.

1.Find P(X<=Y)
2. Let Z=1/(1+X) for 0<z<1 find f_z(z)

For 1 i have :
lambda/(mu+lambda)

for 2 I have:

f_z(z) = lambda*(e^(-lambda*((1-z)/z)))*1/z^2

Could you please guys double check? thanks in advance

To find the probability P(X <= Y):

1. Start by finding the joint probability density function (PDF) of X and Y.

Since X and Y are independent exponential random variables, the joint PDF can be calculated as the product of their individual PDFs:

f(x, y) = f(x) * f(y) = lambda * e^(-lambda*x) * mu * e^(-mu*y)

2. Set up the integral to calculate the probability:

P(X <= Y) = ∫∫R f(x, y) dx dy

Where R is the region in the x-y plane where X <= Y.

3. Determine the region R:

Since X <= Y, the region R is the area above the line y = x in the x-y plane.

4. Set up the integral limits:

The limits of x should range from 0 to infinity, and for each value of x, the limits of y should range from x to infinity.

5. Evaluate the integral:

∫∫R f(x, y) dx dy = ∫[0, ∞] ∫[x, ∞] (lambda * e^(-lambda*x) * mu * e^(-mu*y)) dy dx

Evaluating this double integral will give you the desired probability P(X <= Y).

For the second part, to find the PDF of Z:

1. Determine the cumulative distribution function (CDF) of Z:

Fz(z) = P(Z ≤ z) = P(1/(1+X) ≤ z) = P(X ≥ 1/z - 1) = 1 - P(X < 1/z - 1)
= 1 - (1 - e^(-lambda*(1/z-1)))

2. Differentiate the CDF to find the PDF:

fz(z) = d/dz Fz(z) = lambda * (e^(-lambda*(1/z-1))) * 1/z^2

Therefore, the PDF of Z, fz(z), is given by your expression:

fz(z) = lambda * (e^(-lambda*(1/z-1))) * 1/z^2

Remember to ensure that 0 < z < 1 when evaluating this PDF.

Let's go through each question step-by-step:

1. Find P(X <= Y):
To find P(X <= Y), we can use the fact that X and Y are independent exponential random variables. The cumulative distribution function (CDF) for an exponential distribution with parameter λ is given by F(x) = 1 - e^(-λx).

So, P(X <= Y) can be calculated by integrating the joint probability density function (PDF) for X and Y over the appropriate region.

The joint PDF for independent random variables X and Y is given by f(x, y) = fX(x)*fY(y), where fX(x) and fY(y) are the PDFs of X and Y, respectively.

For an exponential distribution, the PDF is given by f(t) = λ*e^(-λt). So, fX(x) = λ*e^(-λx) and fY(y) = μ*e^(-μy).

To find P(X <= Y), we need to integrate the joint PDF over the region where X is less than or equal to Y:

P(X <= Y) = ∫∫[X<=Y] f(x, y) dx dy
= ∫∫[X<=Y] fX(x)*fY(y) dx dy
= ∫(0 to ∞) ∫(0 to y) λ*e^(-λx) * μ*e^(-μy) dx dy

Simplifying this integral will give you the desired probability.

2. Let Z = 1/(1+X). Find the PDF of Z, fZ(z):
To find the PDF of Z, fZ(z), we need to apply the change of variables technique.

First, let's find the cumulative distribution function (CDF) of Z, FZ(z):

FZ(z) = P(Z <= z)
= P(1/(1+X) <= z)
= P(X >= 1/z - 1)
= 1 - P(X < 1/z - 1)
= 1 - F(1/z - 1)

Here, F(x) is the CDF of the exponential distribution with parameter λ.

Next, to find the PDF of Z, we differentiate the CDF with respect to z:

fZ(z) = dFZ(z)/dz
= d/dz (1 - F(1/z - 1))
= -dF(1/z - 1)/dz

To evaluate this derivative, we'll use the chain rule:

fZ(z) = -dF(1/z - 1)/dz
= -dF(1/x)/dx * dx/dz
= -f(1/z - 1) * d(1/z - 1)/dz
= -f(1/z - 1) * (-1/z^2)

Substituting the PDF of the exponential distribution, we get:

fZ(z) = -λ*e^(-λ(1/z - 1)) * (-1/z^2)
= λ*e^(-λ(1/z - 1))/z^2

Therefore, the PDF of Z, fZ(z), is indeed λ*e^(-λ(1/z - 1))/z^2.