Let ( A x , A y ) be a point on the curve y = e x such that the area of the region bounded by the y -axis, the line y = A y , and the curve y = e x is 1 0 6 .
Find A x to 2 decimal places.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Thank You William for sharing the solution. The first time I wrote this problem I stated as a hint to use any method at one's disposal. Thus, if that method is a lucky guess, so be it. However, my solution relied on programming since I am quite a CS enthusiast. Therefore, I made short program of mine to approximate the solution, where the error of calculation would be less than 1 0 − 6
Log in to reply
I used python for the last stage of the calculation (just ran 100 iterations of the formula which gave a very small error).
It's a really cool problem, I was just wondering if there was a way to solve the equation exactly.
Log in to reply
The exact answer can use the Lanbert-W function.
( x − 1 ) e x = k ( x − 1 ) e x − 1 = e k x − 1 = W ( e k ) x = 1 + W ( e 1 0 6 )
Finding its value on the other hand is another problem. I used an online calculator for that.
Problem Loading...
Note Loading...
Set Loading...
I got a partial solution and then used numerical analysis to approximate a root (so if anyone can find another way I'd love to hear it).
Seeing as we want to minimise the total area and any area under the curve doesn't count towards critical area A y = e A x (i.e. the point lies on the curve)
This leads to the conclusion that A x A y = A x e A x = t o t a l a r e a = 1 0 6 + ∫ 0 A x ( e x ) d x = critical area + area under curve.
This rearranges to ( A x − 1 ) e A x = 1 0 6 and taking logs: A x = 6 l o g ( 1 0 ) − l o g ( A x − 1 ) .
I used this as an iteration formula with A x 1 = 1 0 (lucky guess) but if anyone has an easier way to solve this it would be great to hear it.