Newton's Method/Trapezoidal Rule

  • Thread starter Thread starter johnhuntsman
  • Start date Start date
Click For Summary
To solve for the sales level (x) when the selling price is $16 using Newton's Method, the function f(x) is defined as f(x) = (800000e^(-x/5000))/(x + 20000) - 16. An initial guess of x = 0 yields f(0) = 34, which indicates that further iterations are needed to approach the root. The derivative of the function is provided, and the Newton's Method formula is applied iteratively to refine the estimate of x. Additionally, scaling the problem by substituting y = x/5000 simplifies the equation, making it easier to solve for y using Newton's Method. This approach ultimately aids in estimating the consumer surplus at the determined sales level.
johnhuntsman
Messages
76
Reaction score
0
My professor had asked that I solve the follwing problem using Newton's Method and the Trapezoidal Rule:

"A company modeled the demand curve for its product (in dollars) by the equation

p = (800000e^(- x / 5000)) / (x + 20000).

Use Newton's Method to estimate the sales level (x I'm pretty sure) when the selling price is $16. Then find the approximate consumer surplus for this level."

I'm currently stuck on how Newton's Method is meant to find x when p = 16.

The derivative of p is:

- (160e^(- x / 5000) * (x + 25000)) / (x + 20000) ^ 2
 
Last edited:
Physics news on Phys.org
johnhuntsman said:
My professor had asked that I solve the follwing problem using Newton's Method and the Trapezoidal Rule:

"A company modeled the demand curve for its product (in dollars) by the equation

p = (800000e^(- x / 5000)) / (x + 20000).

Use Newton's Method to estimate the sales level (x I'm pretty sure) when the selling price is $16. Then find the approximate consumer surplus for this level."

I'm currently stuck on how Newton's Method is meant to find x when p = 16.

The derivative of p is:

- (160e^(- x / 5000) * (x + 25000)) / (x + 20000) ^ 2


To get Newton's Method started, you need an initial guess for x.
What is the value of p when x is zero? If this is close to 16, this value of x might be a good initial guess for Newton's method. What is the initial error in p for this value of x? What is the Newton Method formula?
 
Chestermiller said:
To get Newton's Method started, you need an initial guess for x.
What is the value of p when x is zero? If this is close to 16, this value of x might be a good initial guess for Newton's method. What is the initial error in p for this value of x? What is the Newton Method formula?

x is never equal to zero. That's the thing. Unless I'm mistaken.

http://www.wolframalpha.com/input/?i=y+=+(800000e^(-x/5000))/(x+20000)
 
p = 40 when x = 0
 
johnhuntsman said:
p = 40 when x = 0

Good. Now, the problem you are trying to solve is:

f(x) = (800000e^(- x / 5000)) / (x + 20000) -16 =0

Your initial guess is x =0, and at x = 0, f(x) = 40 -16 = 34

Your Newton method equation is:

xn+1 = xn-f(xn)/f '(xn)

with x1 =0 and f(x1)= 34

Now find f ' (x1) , and then x2

If that's not close enough to satisfy f(x) = 0, do another iteration.
 
I see now what to do now. Thanks bunches : D
 
johnhuntsman said:
My professor had asked that I solve the follwing problem using Newton's Method and the Trapezoidal Rule:

"A company modeled the demand curve for its product (in dollars) by the equation

p = (800000e^(- x / 5000)) / (x + 20000).

Use Newton's Method to estimate the sales level (x I'm pretty sure) when the selling price is $16. Then find the approximate consumer surplus for this level."

I'm currently stuck on how Newton's Method is meant to find x when p = 16.

The derivative of p is:

- (160e^(- x / 5000) * (x + 25000)) / (x + 20000) ^ 2

In problems of this type it is always a good idea to "scale" the problem properly (even if you use a computer!). Instead of x it would be better to use, say y = x/5000, so your equation becomes p = 800,000 exp(-y)/(5000 y + 20,000) = 160*exp(-y)/(y+4).

Now, for p = 16 you need to solve 10*exp(-y) = y+4, or 10*exp(y)-y-4 = 0. Using f(y) = 10*exp(-y) - y - 4 instead of 160*exp(-y)/(y+4)-16 is a lot easier in Newton's method, since the derivative is a lot easier.

RGV
 

Similar threads

  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 5 ·
Replies
5
Views
3K
  • · Replies 1 ·
Replies
1
Views
7K
  • · Replies 7 ·
Replies
7
Views
3K
  • · Replies 15 ·
Replies
15
Views
6K
Replies
5
Views
2K
Replies
2
Views
3K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 8 ·
Replies
8
Views
2K