What is the Volume of a Region Bounded by Double Integrals with a Max Function?

  • Thread starter Thread starter _N3WTON_
  • Start date Start date
  • Tags Tags
    Integals Volume
_N3WTON_
Messages
350
Reaction score
3

Homework Statement


Evaluate:
\int_{0}^{a} \int_{0}^{b} e^{max(b^{2}x^{2}, a^{2}y^{2})} dy \hspace{1 mm} dx
Where a and b are positive.

Homework Equations

The Attempt at a Solution


I'm having some trouble getting started with this problem, mostly because I am not very familiar with the notation. I am assuming that the "max" portion of the question means "the set of points of the argument for which the function attains its max value"? That is from the wikipedia page for "Arg max". If that is correct then I am looking for the volume of the region where the given argument of e takes on a maximum value, no?
 
Physics news on Phys.org
Beats me! I would never write anything quite that way, so I have no clue what it means. Best to ask the original author what he had in mind.
 
Dr.D said:
Best to ask the original author what he had in mind.
Unfortunately that's not possible. Anyway, thanks for your time :)
 
Anyone have any ideas? I know it looks like I haven't really made an effort here, but that's honestly because I don't know where to start :/
 
Start with determining the regions where ##b^2x^2>a^2y^2## and ##a^2y^2>b^2x^2##, can you see on what region you are integrating?
 
Pranav-Arora said:
Start with determining the regions where ##b^2x^2>a^2y^2## and ##a^2y^2>b^2x^2##, can you see on what region you are integrating?
so I would need to separate double integrals, divided by a line right? I just don't see how to obtain that line. Does that make any sense?
 
_N3WTON_ said:

Homework Statement


Evaluate:
\int_{0}^{a} \int_{0}^{b} e^{max(b^{2}x^{2}, a^{2}y^{2})} dy \hspace{1 mm} dx
Where a and b are positive.

Homework Equations

The Attempt at a Solution


I'm having some trouble getting started with this problem, mostly because I am not very familiar with the notation. I am assuming that the "max" portion of the question means "the set of points of the argument for which the function attains its max value"? That is from the wikipedia page for "Arg max". If that is correct then I am looking for the volume of the region where the given argument of e takes on a maximum value, no?
I think it's probably simpler than this. Max{b2x2, a2y2} chooses the larger of the two numbers.

The region over which integration takes place is the rectangle whose corners are at (0, 0), (a, 0), (a, b), and (0, b). If b2x2 > a2y2, then bx > ay (since x and y are nonnegative and it's given that a and b are positive). In this case, what does the integrand simplify to? What part of the rectangle does bx > ay represent?

On the other hand, if b2x2 < a2y2, then bx < ay. Same questions as before.
 
I would start with a variable substitution, the integral is going to look much more symmetric after that... Then you can split it into two regions which will be equivalent and give the same contribution so you only need to compute one integral.
 
  • Like
Likes RUber
Mark44 said:
I think it's probably simpler than this. Max{b2x2, a2y2} chooses the larger of the two numbers.

The region over which integration takes place is the rectangle whose corners are at (0, 0), (a, 0), (a, b), and (0, b). If b2x2 > a2y2, then bx > ay (since x and y are nonnegative and it's given that a and b are positive).
So could I use bx = ay as a line segment that separates two non-intersecting regions and then set up two separate double integrals? One that looks like:
\int_{0}^{a} \int_{0}^{\frac{bx}{a}}
And another:
\int_{0}^{b} \int_{0}^{\frac{ay}{b}}
 
  • #10
_N3WTON_ said:
So could I use bx = ay as a line segment that separates two non-intersecting regions and then set up two separate double integrals? One that looks like:
\int_{0}^{a} \int_{0}^{\frac{bx}{a}}
And another:
\int_{0}^{b} \int_{0}^{\frac{ay}{b}}

Yes.
 
  • #11
_N3WTON_ said:
So could I use bx = ay as a line segment that separates two non-intersecting regions and then set up two separate double integrals? One that looks like:
\int_{0}^{a} \int_{0}^{\frac{bx}{a}}
And another:
\int_{0}^{b} \int_{0}^{\frac{ay}{b}}
I hadn't thought about it quite like this, but I think that something like this will work, provided you have the right limits of integration.

BTW, I've always found it easier to keep track of things in iterated integrals by writing in the variable in the limits of integration. Like this:
$$ \int_{x = 0}^{a} \int_{y = 0}^{b} \dots dy dx$$
 
  • #12
Mark44 said:
I hadn't thought about it quite like this, but I think that something like this will work, provided you have the right limits of integration.

BTW, I've always found it easier to keep track of things in iterated integrals by writing in the variable in the limits of integration. Like this:
$$ \int_{x = 0}^{a} \int_{y = 0}^{b} \dots dy dx$$
Oh, I thought that is what you were hinting at by writing bx>ay and ay>bx...Also, that is a good suggestion, I've found myself getting confused sometimes because I can't remember which limit belongs to which variable...
 
  • #13
Pranav-Arora said:
Yes.
Thank you!
 
  • #14
Orodruin said:
I would start with a variable substitution, the integral is going to look much more symmetric after that... Then you can split it into two regions which will be equivalent and give the same contribution so you only need to compute one integral.
I'm afraid I'm not entirely sure what you mean...
Edit: you just mean a simple u-sub?
 
  • #15
There is a trivial substitution which will make your integral area as well as the integrand symmetric in the integration variables. If you do it, both of the split integrals will be the same and you can multiply by two instead of doing two (admittedly very similar) integrals.
 
  • #16
Orodruin said:
There is a trivial substitution which will make your integral area as well as the integrand symmetric in the integration variables. If you do it, both of the split integrals will be the same and you can multiply by two instead of doing two (admittedly very similar) integrals.
Awesome, thanks for the help..
 
  • #17
Ok, I ended up solving using the integrals I posted earlier (unfortunately, I couldn't figure out the sub Orodruin referred to, perhaps he'd be so kind as to tell me). Here is my solution:
\int_{0}^{a} \int_{0}^{\frac{bx}{a}} e^{b^{2}x^{2}} dy \hspace{1 mm} dx + \int_{0}^{b} \int_{0}^{\frac{ay}{b}} e^{a^{2}y^{2}} dx \hspace{1 mm} dy
= \int_{0}^{a} \frac{bx}{a} e^{b^{2}x^{2}} \,dx + \int_{0}^{b} \frac{ay}{b} e^{a^{2}y^{2}}\,dy
= \frac{b}{a} \int_{0}^{a} xe^{b^{2}x^{2}}\,dx + \frac{a}{b} \int_{0}^{b} ye^{a^{2}y^{2}}\,dy
Here, I performed a u-sub on each integral, for the first integral I did:
u = b^{2}x^{2} \hspace{2 mm} du = 2b^{2}x dx
For the second integral:
u = a^{2}y^{2} \hspace{2 mm} du = 2a^{2}y dy
So then the integrals become:
= \frac{b}{2b^{2}a}\int_{0}^{a} 2b^{2}xe^{b^{2}x^{2}}\,dx + \frac{a}{2a^{2}b}\int_{0}^{a} 2a^{2}ye^{a^{2}y^{2}}\,dy
= \frac{b}{2b^{2}a}[e^{b^{2}a^{2}}-1] + \frac{a}{2a^{2}b}[e^{b^{2}a^{2}}-1]
And finally, I arrived at my final answer:
= \frac{(e^{b^{2}a^{2}})-1}{2ab}
 
Last edited:
  • #18
_N3WTON_ said:
I couldn't figure out the sub Orodruin referred to, perhaps he'd be so kind as to tell me

Try ##x = at## and ##y = bs##. The integral in the end is the same, but you only need to do it once and have less constants to worry about.
 
  • #19
Orodruin said:
Try ##x = at## and ##y = bs##. The integral in the end is the same, but you only need to do it once and have less constants to worry about.
thanks a lot, I'll try it out
 
  • #20
Also I just realized I made a mistake, the final answer should be:
\frac{(e^{a^{2}b^{2}}-1)}{ab}
 
  • #21
_N3WTON_ said:
Also I just realized I made a mistake, the final answer should be:
\frac{(e^{a^{2}b^{2}}-1)}{ab}

Yes, this is what I get too. I did not mention it since you were essentially there (as you probably realized, the error was in adding 1/2 + 1/2 and ending up with 1/2).
 
Back
Top