Results 1 to 6 of 6

Thread: Newton's Method

Hybrid View

  1. #1

    Thread Starter
    New Member
    Join Date
    Jul 2004
    Posts
    2

    Newton's Method

    Hi
    Does anyone know how to use Newton's Method to do , say, find the absolute minimum of 1/4*x^4+x^2+5x ?
    thanks

  2. #2
    Don't Panic! Ecniv's Avatar
    Join Date
    Nov 2000
    Location
    Amsterdam...
    Posts
    5,343
    Isn't that a quadratic equation?

    I thought that the A level method of solving it applies??

    Vince

    BOFH Now, BOFH Past, Information on duplicates

    Feeling like a fly on the inside of a closed window (Thunk!)
    If I post a lot, it is because I am bored at work! ;D Or stuck...
    * Anything I post can be only my opinion. Advice etc is up to you to persue...

  3. #3
    New Member
    Join Date
    Jul 2004
    Posts
    11
    Newton's method is not required.

    y = (x^4)/4 + x^2 + 5x

    dy/dx = x^3 + 2x + 5

    maximum/minimum when dy/dx = 0

    Therefore x^3 + 2x + 5 = 0

    Using graphics calculator :

    x = -1.328268856... (only real root, 2 other roots with imaginary parts)

    If an exact result is required, there is a formula for cubic equations in the same way that for the quadratic equation ax^2 + bx + c = 0,
    x = (-b +/- (b^2 - 4ac)^0.5)/2a

    d2y/dx2 = 3x^2 +2, which is always >0, so point is a minimum.

    PS Yes I know this because i did A Level Maths and Further Maths this year.
    Last edited by nicktheman; Jul 21st, 2004 at 09:21 AM.

  4. #4
    Fanatic Member alkatran's Avatar
    Join Date
    Apr 2002
    Location
    Canada
    Posts
    860
    Excuse me, but that's not the quadratic formula.

    There's no "^-1" in there, only "^1/2"
    Don't pay attention to this signature, it's contradictory.

  5. #5
    type Woss is new Grumpy; wossname's Avatar
    Join Date
    Aug 2002
    Location
    #!/bin/bash
    Posts
    5,682
    Originally posted by alkatran
    Excuse me, but that's not the quadratic formula.

    There's no "^-1" in there, only "^1/2"
    Indeed, x^0.5 is the equivalent of taking the square root of x.
    I don't live here any more.

  6. #6
    New Member
    Join Date
    Jul 2004
    Posts
    11
    Originally posted by alkatran
    Excuse me, but that's not the quadratic formula.

    There's no "^-1" in there, only "^1/2"
    Sorry, my mistake

    Used to just writing a square root sign but there isn't one on my keyboard.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width