Hi there I tried solving the problem at the bottom, but I'm not quite sure how to do it. I attempted to draw it first and then came up with the following bounds of integration.
$$\int_{2x}^{x/4}\int_{1/x}^{4/x} e^{-xy/2} dydx$$
However, I couldn't compute this to a numerical value. Normally, I would use strictly numbers rather than variables for the bounds of the outermost integral, but if you sketch the curve, I'm pretty sure you wouldn't get the correct region if the outermost integral had numerical bounds. Is there any way to calculate this problem that I'm not seeing?
Let R be the region bounded by $y = 2x$, $y = \frac{x}{4}$, $y = \frac{4}{x}$, $y = \frac{1}{x}$.
Evaluate $\iint_R e^{-xy/2} dA$
Edit: I overlooked the fact that there are 2 regions bounded by these curves of equal area. I am only looking to integrate the bounded region in the first quadrant.
Here is a graph showing one of the two identical regions bounded by these graphs:
Where the red curve is $y=2x$, the blue is $y=\frac{x}{4}$, green is $y=\frac{4}{x}$, and yellow is $y=\frac{1}{x}$. To calculate the area, we can find the sum of the areas $A_1, A_2,$ and $A_3$, where $A_1$ is the area between the red and yellow curves from the intersection of the yellow and red curves to the intersection of the red and green curves, $A_2$ is the area between the green and yellow curves from the intersection between the red and green curves to the intersection between the yellow and blue curves, and $A_3$ is the area between the green and blue curves from the intersection between the blue and yellow curves to the intersection between the green and blue curves. Let us calculate these one at a time.
First we calculate $A_1$. To do this, we need the x-coordinates of the intersection points of the yellow and red curves and the red and green curves. These x-coordinates are $\frac{1}{\sqrt 2}$ and $\sqrt 2$ (you can verify this for yourself). Then $$A_1=\int_{\frac{1}{\sqrt 2}}^{\sqrt 2} (2x-\frac{1}{x})dx$$ When we evaluate the indefinite integral, we get $$\int (2x-\frac{1}{x})dx=x^2-\ln x+C$$ So $$A_1=(2-\ln (\sqrt 2))-(\frac{1}{2}-\ln (\frac{1}{\sqrt 2}))$$ $$A_1=2-\frac{1}{2}\ln (2)-\frac{1}{2}-\frac{1}{2}\ln (2)$$ $$A_1=\frac{3}{2}-\ln 2$$ Now we want to find $A_2$. The bounds for this area are $\sqrt 2$ and $2$, so $$A_2=\int_{\sqrt 2}^{2} (\frac{4}{x}-\frac{1}{x})dx$$ $$A_2=\int_{\sqrt 2}^{2} (\frac{3}{x})dx$$ This is a standard integral, and we can immediately say that $$A_2=3\ln(2)-3\ln(\sqrt 2)$$ $$A_2=\frac{3}{2}\ln2$$ Now we have one more area to find. The bounds for $A_3$ are $2$ and $4$, so $$A_3=\int_{2}^{4} (\frac{4}{x}-\frac{x}{4})dx$$ And the indefinite integral is equal to $$\int (\frac{4}{x}-\frac{x}{4})dx=4\ln x -\frac{x^2}{8}+C$$ So $$A_3=(4\ln 4 -\frac{4^2}{8})-(4\ln 2 -\frac{2^2}{8})$$ $$A_3=8\ln 2 -\frac{16}{8}-4\ln 2 +\frac{4}{8}$$ $$A_3=4\ln 2 -\frac{3}{2}$$ Now we have all three areas, and we need only find their sum. The entire area $A$ is $$A=A_1+A_2+A_3$$ $$A=\frac{3}{2}-\ln 2+\frac{3}{2}\ln2+4\ln 2 -\frac{3}{2}$$ $$A=\frac{3}{2}\ln2+3\ln 2$$ $$A=\frac{9}{2}\ln2$$ Which should be the final answer. Is this correct?