Householder's method for systems of nonlinear equations? #5
Replies: 3 comments 10 replies
-
I took a look at the paper and it doesn't appear to be the Generalized Householder Method that you were expecting. Rather this appears to be based on "two-step methods" that use one method to make a prediction and correct that prediction using another method, all as part of one iteration to increase the order. I would have expected something like Householder-3 that when generalized would require taking 3rd-order partial derivatives which the paper does not do. YouTube sometimes considers posts with links as spam and automatically removes them. I never even see them in the held-for-review section of the comments. |
Beta Was this translation helpful? Give feedback.
-
Here's the Ultra Fractal code used for the images. Again, I used Cramer's rule, because it's simpler, especially on a computer.
|
Beta Was this translation helpful? Give feedback.
-
Okay, so I finally figured it out. Householder's method, for a system of nonlinear equations, is obtained from an [1/d]-Padé approximant for the function g(y), where y = f(x) and g(y) = 1/f(x). That is, the reciprocal of f(x). In Cuyt's original paper, this expansion is expressed as a j-linear operator of the form E_j*a_i, where a_n = -F'(x_i) F(x_i), i.e. the Newton correction step. The third order Householder method is obtained from the [1/2]-Padé approximant of the Taylor series 1/f(x). The j-linear operator E_j is obtained, using Lagrange's inversion theorem via reciprocal bijection as: x_{i + 1} = (E_2 a_i^2)/(E_3 a_i^3). Halley's method, on the other hand, is as follows: It turns out that obtaining the abstract Padé approximant and the abstract rational approximant is done so in the same exact way as each other: the same process of solving for the coefficients of the numerator polynomial and the coefficients of the denominator polynomial. The expression would be very long, and here, Fréchet derivatives are used. |
Beta Was this translation helpful? Give feedback.
-
I found an interesting link here: https://www.researchgate.net/publication/264833135_Modified_of_Householder_Iterative_Method_for_Solving_Nonlinear_Systems
It could be one generalization of Householder's method for systems of nonlinear equations. I tried to put it in as a reply in YouTube, but the comment kept deleting itself... what's going on?
Beta Was this translation helpful? Give feedback.
All reactions