Constructing Newton iteration converging to non-root
up vote
2
down vote
favorite
Is it possible to construct a Newton sequence $x_{n+1} := x_{n} - f(x_n)/f'(x_{n})$ such that ${x_{n}}$ is a Cauchy sequence converging to $x^*$, but $x^{*}$ is not a root of $f$? (Perhaps because $f$ has no roots?)
newton-raphson
add a comment |
up vote
2
down vote
favorite
Is it possible to construct a Newton sequence $x_{n+1} := x_{n} - f(x_n)/f'(x_{n})$ such that ${x_{n}}$ is a Cauchy sequence converging to $x^*$, but $x^{*}$ is not a root of $f$? (Perhaps because $f$ has no roots?)
newton-raphson
add a comment |
up vote
2
down vote
favorite
up vote
2
down vote
favorite
Is it possible to construct a Newton sequence $x_{n+1} := x_{n} - f(x_n)/f'(x_{n})$ such that ${x_{n}}$ is a Cauchy sequence converging to $x^*$, but $x^{*}$ is not a root of $f$? (Perhaps because $f$ has no roots?)
newton-raphson
Is it possible to construct a Newton sequence $x_{n+1} := x_{n} - f(x_n)/f'(x_{n})$ such that ${x_{n}}$ is a Cauchy sequence converging to $x^*$, but $x^{*}$ is not a root of $f$? (Perhaps because $f$ has no roots?)
newton-raphson
newton-raphson
asked Nov 28 at 21:46
user14717
3,8281020
3,8281020
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
2
down vote
accepted
It is not possible if we assume that $x^star$ lies in the domain of definition of $f$ and that $f$ and $f'$ are continuous at that point. For a counterexample where $f'$ is not continuous at $x^star$ see the nice answer by Oscar Lanzi.
In my setting we use
$$ f(x_n) = f'(x_n) (x_n - x_{n+1}) $$
and take the limit (I assume $f'$ to be continuous at $x^*$).
If we take the limit in the equation above we get (using the continuity of $f'$ and $f$ at $x^star$)
$$ f(x^star) = f(lim_{nrightarrow infty} x_n) = lim_{nrightarrow infty} f(x_n) = lim_{nrightarrow infty} f'(x_n) (x_n - x_{n+1})
= lim_{nrightarrow infty} f'(x_n) cdot lim_{nrightarrow infty} (x_n - x_{n+1}) = f'(x^star) cdot (x^star - x^star) = 0.$$
It looks like this can be weakened from "continuous derivative" to "derivative exists and is bounded in a neighborhood of $x^{*}$".
– user14717
Nov 28 at 22:39
Indeed, we could do that. But I like to have some a priori regularity (I love my $C^1$-functions) :)
– Severin Schraven
Nov 28 at 22:44
add a comment |
up vote
1
down vote
Try this function:
$f(x)=max(1-sqrt{|x|},|x|)$
For most initial guesses, and for all initial guesses more than one-half in absolute value, you converge to zero. But the function has no real zeroes.
That sounds interesting. Is it easy to see that it converges indeed to zero?
– Severin Schraven
Nov 28 at 22:10
1
Truly fabulous example. Both of the answers given are required for full understanding, so I'm accepting @SeverinSchraven's answer as accepted (because it looks like Oscar is well beyond the range of caring about the point system).
– user14717
Nov 28 at 22:20
I'm now wondering if a more classical derivative discontinuity can cause the problem; say $f'$ has a pole at $x^{*}$ but $f$ still the restriction to the real line of a meromorphic function.
– user14717
Nov 28 at 22:25
In fact, I am not sure you can say this converges to zero. If you start in the range of the absolute value you are in one step at zero, but there the scheme fails to work, as you have no derivative there.
– Severin Schraven
Nov 28 at 22:37
@SeverinSchraven: The question was intentionally ambiguous regarding the function spaces--defining the function space is half the fun.
– user14717
Nov 28 at 22:41
|
show 3 more comments
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "69"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3017766%2fconstructing-newton-iteration-converging-to-non-root%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
It is not possible if we assume that $x^star$ lies in the domain of definition of $f$ and that $f$ and $f'$ are continuous at that point. For a counterexample where $f'$ is not continuous at $x^star$ see the nice answer by Oscar Lanzi.
In my setting we use
$$ f(x_n) = f'(x_n) (x_n - x_{n+1}) $$
and take the limit (I assume $f'$ to be continuous at $x^*$).
If we take the limit in the equation above we get (using the continuity of $f'$ and $f$ at $x^star$)
$$ f(x^star) = f(lim_{nrightarrow infty} x_n) = lim_{nrightarrow infty} f(x_n) = lim_{nrightarrow infty} f'(x_n) (x_n - x_{n+1})
= lim_{nrightarrow infty} f'(x_n) cdot lim_{nrightarrow infty} (x_n - x_{n+1}) = f'(x^star) cdot (x^star - x^star) = 0.$$
It looks like this can be weakened from "continuous derivative" to "derivative exists and is bounded in a neighborhood of $x^{*}$".
– user14717
Nov 28 at 22:39
Indeed, we could do that. But I like to have some a priori regularity (I love my $C^1$-functions) :)
– Severin Schraven
Nov 28 at 22:44
add a comment |
up vote
2
down vote
accepted
It is not possible if we assume that $x^star$ lies in the domain of definition of $f$ and that $f$ and $f'$ are continuous at that point. For a counterexample where $f'$ is not continuous at $x^star$ see the nice answer by Oscar Lanzi.
In my setting we use
$$ f(x_n) = f'(x_n) (x_n - x_{n+1}) $$
and take the limit (I assume $f'$ to be continuous at $x^*$).
If we take the limit in the equation above we get (using the continuity of $f'$ and $f$ at $x^star$)
$$ f(x^star) = f(lim_{nrightarrow infty} x_n) = lim_{nrightarrow infty} f(x_n) = lim_{nrightarrow infty} f'(x_n) (x_n - x_{n+1})
= lim_{nrightarrow infty} f'(x_n) cdot lim_{nrightarrow infty} (x_n - x_{n+1}) = f'(x^star) cdot (x^star - x^star) = 0.$$
It looks like this can be weakened from "continuous derivative" to "derivative exists and is bounded in a neighborhood of $x^{*}$".
– user14717
Nov 28 at 22:39
Indeed, we could do that. But I like to have some a priori regularity (I love my $C^1$-functions) :)
– Severin Schraven
Nov 28 at 22:44
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
It is not possible if we assume that $x^star$ lies in the domain of definition of $f$ and that $f$ and $f'$ are continuous at that point. For a counterexample where $f'$ is not continuous at $x^star$ see the nice answer by Oscar Lanzi.
In my setting we use
$$ f(x_n) = f'(x_n) (x_n - x_{n+1}) $$
and take the limit (I assume $f'$ to be continuous at $x^*$).
If we take the limit in the equation above we get (using the continuity of $f'$ and $f$ at $x^star$)
$$ f(x^star) = f(lim_{nrightarrow infty} x_n) = lim_{nrightarrow infty} f(x_n) = lim_{nrightarrow infty} f'(x_n) (x_n - x_{n+1})
= lim_{nrightarrow infty} f'(x_n) cdot lim_{nrightarrow infty} (x_n - x_{n+1}) = f'(x^star) cdot (x^star - x^star) = 0.$$
It is not possible if we assume that $x^star$ lies in the domain of definition of $f$ and that $f$ and $f'$ are continuous at that point. For a counterexample where $f'$ is not continuous at $x^star$ see the nice answer by Oscar Lanzi.
In my setting we use
$$ f(x_n) = f'(x_n) (x_n - x_{n+1}) $$
and take the limit (I assume $f'$ to be continuous at $x^*$).
If we take the limit in the equation above we get (using the continuity of $f'$ and $f$ at $x^star$)
$$ f(x^star) = f(lim_{nrightarrow infty} x_n) = lim_{nrightarrow infty} f(x_n) = lim_{nrightarrow infty} f'(x_n) (x_n - x_{n+1})
= lim_{nrightarrow infty} f'(x_n) cdot lim_{nrightarrow infty} (x_n - x_{n+1}) = f'(x^star) cdot (x^star - x^star) = 0.$$
edited Nov 28 at 22:34
answered Nov 28 at 21:59
Severin Schraven
5,6131832
5,6131832
It looks like this can be weakened from "continuous derivative" to "derivative exists and is bounded in a neighborhood of $x^{*}$".
– user14717
Nov 28 at 22:39
Indeed, we could do that. But I like to have some a priori regularity (I love my $C^1$-functions) :)
– Severin Schraven
Nov 28 at 22:44
add a comment |
It looks like this can be weakened from "continuous derivative" to "derivative exists and is bounded in a neighborhood of $x^{*}$".
– user14717
Nov 28 at 22:39
Indeed, we could do that. But I like to have some a priori regularity (I love my $C^1$-functions) :)
– Severin Schraven
Nov 28 at 22:44
It looks like this can be weakened from "continuous derivative" to "derivative exists and is bounded in a neighborhood of $x^{*}$".
– user14717
Nov 28 at 22:39
It looks like this can be weakened from "continuous derivative" to "derivative exists and is bounded in a neighborhood of $x^{*}$".
– user14717
Nov 28 at 22:39
Indeed, we could do that. But I like to have some a priori regularity (I love my $C^1$-functions) :)
– Severin Schraven
Nov 28 at 22:44
Indeed, we could do that. But I like to have some a priori regularity (I love my $C^1$-functions) :)
– Severin Schraven
Nov 28 at 22:44
add a comment |
up vote
1
down vote
Try this function:
$f(x)=max(1-sqrt{|x|},|x|)$
For most initial guesses, and for all initial guesses more than one-half in absolute value, you converge to zero. But the function has no real zeroes.
That sounds interesting. Is it easy to see that it converges indeed to zero?
– Severin Schraven
Nov 28 at 22:10
1
Truly fabulous example. Both of the answers given are required for full understanding, so I'm accepting @SeverinSchraven's answer as accepted (because it looks like Oscar is well beyond the range of caring about the point system).
– user14717
Nov 28 at 22:20
I'm now wondering if a more classical derivative discontinuity can cause the problem; say $f'$ has a pole at $x^{*}$ but $f$ still the restriction to the real line of a meromorphic function.
– user14717
Nov 28 at 22:25
In fact, I am not sure you can say this converges to zero. If you start in the range of the absolute value you are in one step at zero, but there the scheme fails to work, as you have no derivative there.
– Severin Schraven
Nov 28 at 22:37
@SeverinSchraven: The question was intentionally ambiguous regarding the function spaces--defining the function space is half the fun.
– user14717
Nov 28 at 22:41
|
show 3 more comments
up vote
1
down vote
Try this function:
$f(x)=max(1-sqrt{|x|},|x|)$
For most initial guesses, and for all initial guesses more than one-half in absolute value, you converge to zero. But the function has no real zeroes.
That sounds interesting. Is it easy to see that it converges indeed to zero?
– Severin Schraven
Nov 28 at 22:10
1
Truly fabulous example. Both of the answers given are required for full understanding, so I'm accepting @SeverinSchraven's answer as accepted (because it looks like Oscar is well beyond the range of caring about the point system).
– user14717
Nov 28 at 22:20
I'm now wondering if a more classical derivative discontinuity can cause the problem; say $f'$ has a pole at $x^{*}$ but $f$ still the restriction to the real line of a meromorphic function.
– user14717
Nov 28 at 22:25
In fact, I am not sure you can say this converges to zero. If you start in the range of the absolute value you are in one step at zero, but there the scheme fails to work, as you have no derivative there.
– Severin Schraven
Nov 28 at 22:37
@SeverinSchraven: The question was intentionally ambiguous regarding the function spaces--defining the function space is half the fun.
– user14717
Nov 28 at 22:41
|
show 3 more comments
up vote
1
down vote
up vote
1
down vote
Try this function:
$f(x)=max(1-sqrt{|x|},|x|)$
For most initial guesses, and for all initial guesses more than one-half in absolute value, you converge to zero. But the function has no real zeroes.
Try this function:
$f(x)=max(1-sqrt{|x|},|x|)$
For most initial guesses, and for all initial guesses more than one-half in absolute value, you converge to zero. But the function has no real zeroes.
edited Nov 29 at 0:22
answered Nov 28 at 22:00
Oscar Lanzi
12k12036
12k12036
That sounds interesting. Is it easy to see that it converges indeed to zero?
– Severin Schraven
Nov 28 at 22:10
1
Truly fabulous example. Both of the answers given are required for full understanding, so I'm accepting @SeverinSchraven's answer as accepted (because it looks like Oscar is well beyond the range of caring about the point system).
– user14717
Nov 28 at 22:20
I'm now wondering if a more classical derivative discontinuity can cause the problem; say $f'$ has a pole at $x^{*}$ but $f$ still the restriction to the real line of a meromorphic function.
– user14717
Nov 28 at 22:25
In fact, I am not sure you can say this converges to zero. If you start in the range of the absolute value you are in one step at zero, but there the scheme fails to work, as you have no derivative there.
– Severin Schraven
Nov 28 at 22:37
@SeverinSchraven: The question was intentionally ambiguous regarding the function spaces--defining the function space is half the fun.
– user14717
Nov 28 at 22:41
|
show 3 more comments
That sounds interesting. Is it easy to see that it converges indeed to zero?
– Severin Schraven
Nov 28 at 22:10
1
Truly fabulous example. Both of the answers given are required for full understanding, so I'm accepting @SeverinSchraven's answer as accepted (because it looks like Oscar is well beyond the range of caring about the point system).
– user14717
Nov 28 at 22:20
I'm now wondering if a more classical derivative discontinuity can cause the problem; say $f'$ has a pole at $x^{*}$ but $f$ still the restriction to the real line of a meromorphic function.
– user14717
Nov 28 at 22:25
In fact, I am not sure you can say this converges to zero. If you start in the range of the absolute value you are in one step at zero, but there the scheme fails to work, as you have no derivative there.
– Severin Schraven
Nov 28 at 22:37
@SeverinSchraven: The question was intentionally ambiguous regarding the function spaces--defining the function space is half the fun.
– user14717
Nov 28 at 22:41
That sounds interesting. Is it easy to see that it converges indeed to zero?
– Severin Schraven
Nov 28 at 22:10
That sounds interesting. Is it easy to see that it converges indeed to zero?
– Severin Schraven
Nov 28 at 22:10
1
1
Truly fabulous example. Both of the answers given are required for full understanding, so I'm accepting @SeverinSchraven's answer as accepted (because it looks like Oscar is well beyond the range of caring about the point system).
– user14717
Nov 28 at 22:20
Truly fabulous example. Both of the answers given are required for full understanding, so I'm accepting @SeverinSchraven's answer as accepted (because it looks like Oscar is well beyond the range of caring about the point system).
– user14717
Nov 28 at 22:20
I'm now wondering if a more classical derivative discontinuity can cause the problem; say $f'$ has a pole at $x^{*}$ but $f$ still the restriction to the real line of a meromorphic function.
– user14717
Nov 28 at 22:25
I'm now wondering if a more classical derivative discontinuity can cause the problem; say $f'$ has a pole at $x^{*}$ but $f$ still the restriction to the real line of a meromorphic function.
– user14717
Nov 28 at 22:25
In fact, I am not sure you can say this converges to zero. If you start in the range of the absolute value you are in one step at zero, but there the scheme fails to work, as you have no derivative there.
– Severin Schraven
Nov 28 at 22:37
In fact, I am not sure you can say this converges to zero. If you start in the range of the absolute value you are in one step at zero, but there the scheme fails to work, as you have no derivative there.
– Severin Schraven
Nov 28 at 22:37
@SeverinSchraven: The question was intentionally ambiguous regarding the function spaces--defining the function space is half the fun.
– user14717
Nov 28 at 22:41
@SeverinSchraven: The question was intentionally ambiguous regarding the function spaces--defining the function space is half the fun.
– user14717
Nov 28 at 22:41
|
show 3 more comments
Thanks for contributing an answer to Mathematics Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3017766%2fconstructing-newton-iteration-converging-to-non-root%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown