Muller's Method

แชร์
ฝัง
  • เผยแพร่เมื่อ 19 ก.ย. 2024

ความคิดเห็น • 19

  • @pipertripp
    @pipertripp 3 ปีที่แล้ว +7

    nice historical touch to open the vid.

  • @AchtungBaby77
    @AchtungBaby77 ปีที่แล้ว +2

    It's worth noting that Muller's method requires a fair bit of computation at each iteration, which can contribute to round-off error. If you look at the formulas for secant and Newton's method, the number of function evaluations is significantly lower.

  • @AJ-et3vf
    @AJ-et3vf 2 ปีที่แล้ว +4

    Awesome video man. Love this!

  • @didierliango6402
    @didierliango6402 5 ปีที่แล้ว +5

    I've found L2(x) = -1/2 x^2 - 3/2, having as root x = +/-sqr(3).

  • @TJBEATSAMV
    @TJBEATSAMV 3 หลายเดือนก่อน +2

    Very well explained , thanks !!

  • @АлександрХалюта-э5у
    @АлександрХалюта-э5у 3 หลายเดือนก่อน

    Please explain, I have a negative discriminant. At the same time, the equation well clearly has a root On which it depends and how to fix it?

  • @ytmish
    @ytmish 6 ปีที่แล้ว +2

    since i saw the wolfram formula, i suspected it can be a problem if b is negative.
    so i tested (in python)
    and indeed, max function is not the way to go.
    max( abs(b-sqrt(b*b-4*a*c)), abs(b+sqrt(b*b+4*a*c)) )
    because you need the "biggest" value to divide with.
    in which context, -10 is better than -2.
    but max(-10, -2) = -2 => which will generate a wrong result

    • @OscarVeliz
      @OscarVeliz  6 ปีที่แล้ว +2

      In the example Python code I provided I did not use max. I instead computed both possible new x's and tested them both.

    • @johnphilmore7269
      @johnphilmore7269 2 ปีที่แล้ว

      Actually, don’t use that one. Instead, use argmax(|d| : d=b+sqrt(b^2-4ac), b-sqrt(b^2-4ac)). Otherwise the denominator will never be negative which I’m guessing isn’t what the method requires.

  • @setrepdergroe195
    @setrepdergroe195 ปีที่แล้ว

    Very well explained, but in actual applications with my programme I always get results like NaN because results are calculated to zero.
    Is this discussed anywhere in more detail on how to intercept such cases?

  • @rabbitazteca23
    @rabbitazteca23 3 ปีที่แล้ว +2

    wait if going through the process using those three initial points will give you ONE of the roots...then how do you find th other roots? I noticed that he foun them by replacing those three initial points with new ones, but how does one determine which initial points to choose?

    • @OscarVeliz
      @OscarVeliz  3 ปีที่แล้ว

      Try graphing, pick points near the root you want to find.

    • @rabbitazteca23
      @rabbitazteca23 3 ปีที่แล้ว +1

      @@OscarVeliz ah I figured as well. Thank you for the response

  • @prashastshukla7672
    @prashastshukla7672 3 ปีที่แล้ว +2

    nice video dear

  • @ConceptualKnowledgeBySirAjmal
    @ConceptualKnowledgeBySirAjmal 4 ปีที่แล้ว +2

    How you put the value in iteration no 4 1.78078 in example 1

    • @OscarVeliz
      @OscarVeliz  4 ปีที่แล้ว +1

      See the "Finding x4" slides starting at 2:09

  • @mahsnroses8778
    @mahsnroses8778 3 ปีที่แล้ว +1

    pleas i want this pdf or doc

    • @OscarVeliz
      @OscarVeliz  3 ปีที่แล้ว +1

      you are welcome to take screenshots

  • @siddhantshrivastava8648
    @siddhantshrivastava8648 ปีที่แล้ว

    Try to be little bit softer. You sound bit harsh and a style of a proffeser.