need your help in Newton method

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ilovecolours
    New Member
    • Oct 2008
    • 1

    need your help in Newton method

    hi everyone can u please help me to explain newtons method to minimize logarithmic ( y=a- b (ln x) and parabolic equation? and pleass post its program also..

    thank you in advance...
  • r035198x
    MVP
    • Sep 2006
    • 13225

    #2
    What have you done so far?
    Please read the posting guidelines .

    Comment

    • JosAH
      Recognized Expert MVP
      • Mar 2007
      • 11453

      #3
      Originally posted by ilovecolours
      hi everyone can u please help me to explain newtons method to minimize logarithmic ( y=a- b (ln x) and parabolic equation? and pleass post its program also..

      thank you in advance...
      It's just a bit of math: x(n+1) == x(n) - y(x)/y'(x). The first derivative of y(x) w.r.t.
      x can easily be found; even if you can't find it you can approximate it by:
      y'(x) ~ (y(x+h)-y(x-h))/2h + O(h^2)

      kind regards,

      Jos

      Comment

      Working...