Can I use Nest iteration variable as the variable of Limit?











up vote
2
down vote

favorite
1












Can anybody tell me what is wrong with this:



Limit[Nest[1/(1 + #) &, x0, n], n -> ∞]









share|improve this question




















  • 2




    The 3rd argument of Nest must be numeric
    – Coolwater
    Nov 18 at 14:02






  • 2




    This FixedPoint[1/(1 + #) &, #] & /@ Range[0., 4, 1] might help.
    – Αλέξανδρος Ζεγγ
    Nov 18 at 14:17






  • 1




    Or for an exact value x /. Solve[{1/(1 + x) == x, x > 0}, x][[1]]
    – Bob Hanlon
    Nov 18 at 14:35















up vote
2
down vote

favorite
1












Can anybody tell me what is wrong with this:



Limit[Nest[1/(1 + #) &, x0, n], n -> ∞]









share|improve this question




















  • 2




    The 3rd argument of Nest must be numeric
    – Coolwater
    Nov 18 at 14:02






  • 2




    This FixedPoint[1/(1 + #) &, #] & /@ Range[0., 4, 1] might help.
    – Αλέξανδρος Ζεγγ
    Nov 18 at 14:17






  • 1




    Or for an exact value x /. Solve[{1/(1 + x) == x, x > 0}, x][[1]]
    – Bob Hanlon
    Nov 18 at 14:35













up vote
2
down vote

favorite
1









up vote
2
down vote

favorite
1






1





Can anybody tell me what is wrong with this:



Limit[Nest[1/(1 + #) &, x0, n], n -> ∞]









share|improve this question















Can anybody tell me what is wrong with this:



Limit[Nest[1/(1 + #) &, x0, n], n -> ∞]






nest






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 18 at 14:20









Αλέξανδρος Ζεγγ

3,5381927




3,5381927










asked Nov 18 at 13:53









pablo

162




162








  • 2




    The 3rd argument of Nest must be numeric
    – Coolwater
    Nov 18 at 14:02






  • 2




    This FixedPoint[1/(1 + #) &, #] & /@ Range[0., 4, 1] might help.
    – Αλέξανδρος Ζεγγ
    Nov 18 at 14:17






  • 1




    Or for an exact value x /. Solve[{1/(1 + x) == x, x > 0}, x][[1]]
    – Bob Hanlon
    Nov 18 at 14:35














  • 2




    The 3rd argument of Nest must be numeric
    – Coolwater
    Nov 18 at 14:02






  • 2




    This FixedPoint[1/(1 + #) &, #] & /@ Range[0., 4, 1] might help.
    – Αλέξανδρος Ζεγγ
    Nov 18 at 14:17






  • 1




    Or for an exact value x /. Solve[{1/(1 + x) == x, x > 0}, x][[1]]
    – Bob Hanlon
    Nov 18 at 14:35








2




2




The 3rd argument of Nest must be numeric
– Coolwater
Nov 18 at 14:02




The 3rd argument of Nest must be numeric
– Coolwater
Nov 18 at 14:02




2




2




This FixedPoint[1/(1 + #) &, #] & /@ Range[0., 4, 1] might help.
– Αλέξανδρος Ζεγγ
Nov 18 at 14:17




This FixedPoint[1/(1 + #) &, #] & /@ Range[0., 4, 1] might help.
– Αλέξανδρος Ζεγγ
Nov 18 at 14:17




1




1




Or for an exact value x /. Solve[{1/(1 + x) == x, x > 0}, x][[1]]
– Bob Hanlon
Nov 18 at 14:35




Or for an exact value x /. Solve[{1/(1 + x) == x, x > 0}, x][[1]]
– Bob Hanlon
Nov 18 at 14:35










1 Answer
1






active

oldest

votes

















up vote
6
down vote



accepted










Nest is a functional programming construct whereas Limit works primarily with mathematical expressions. It simply has no way to work with Nest[...].



This can instead be handled by converting the nested expression into a solved recurrence.



recval = 
RSolveValue[{f[n] == 1/(1 + f[n - 1]), f[0] == x0}, f[n], n]

(* Out[591]= ((2/(1 + Sqrt[5]))^
n (-2^(1 - n) (1 - Sqrt[5])^n +
2^(1 - n) (1 + Sqrt[5])^n + (1/2 (1 - Sqrt[5]))^n x0 +
Sqrt[5] (1/2 (1 - Sqrt[5]))^n x0 - (1/2 (1 + Sqrt[5]))^n x0 +
Sqrt[5] (1/2 (1 + Sqrt[5]))^n x0))/(1 + Sqrt[
5] - ((1 - Sqrt[5])/(1 + Sqrt[5]))^n +
Sqrt[5] ((1 - Sqrt[5])/(1 + Sqrt[5]))^n + 2 x0 -
2 ((1 - Sqrt[5])/(1 + Sqrt[5]))^n x0) *)


Since we are only really interested in integer n I will use DiscreteLimit on this.



dlim = DiscreteLimit[recval, n -> Infinity]

(* Out[592]= (2 + (-1 + Sqrt[5]) x0)/(1 + Sqrt[5] + 2 x0) *)


This is actually independent of initial value:



FullSimplify[dlim]

(* Out[610]= 1/2 (-1 + Sqrt[5]) *)


Another well known way to deduce candidate values for the limit is to solve the fixed point equation.



Solve[x == 1/(1 + x), x]

(* Out[594]= {{x -> 1/2 (-1 - Sqrt[5])}, {x -> 1/2 (-1 + Sqrt[5])}} *)





share|improve this answer





















  • +1 You get the same result with Limit[recval, n -> Infinity] // FullSimplify. Also, it is useful to include FullSimplify in definition of recval
    – Bob Hanlon
    Nov 18 at 16:16











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: "387"
};
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',
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f186238%2fcan-i-use-nest-iteration-variable-as-the-variable-of-limit%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
6
down vote



accepted










Nest is a functional programming construct whereas Limit works primarily with mathematical expressions. It simply has no way to work with Nest[...].



This can instead be handled by converting the nested expression into a solved recurrence.



recval = 
RSolveValue[{f[n] == 1/(1 + f[n - 1]), f[0] == x0}, f[n], n]

(* Out[591]= ((2/(1 + Sqrt[5]))^
n (-2^(1 - n) (1 - Sqrt[5])^n +
2^(1 - n) (1 + Sqrt[5])^n + (1/2 (1 - Sqrt[5]))^n x0 +
Sqrt[5] (1/2 (1 - Sqrt[5]))^n x0 - (1/2 (1 + Sqrt[5]))^n x0 +
Sqrt[5] (1/2 (1 + Sqrt[5]))^n x0))/(1 + Sqrt[
5] - ((1 - Sqrt[5])/(1 + Sqrt[5]))^n +
Sqrt[5] ((1 - Sqrt[5])/(1 + Sqrt[5]))^n + 2 x0 -
2 ((1 - Sqrt[5])/(1 + Sqrt[5]))^n x0) *)


Since we are only really interested in integer n I will use DiscreteLimit on this.



dlim = DiscreteLimit[recval, n -> Infinity]

(* Out[592]= (2 + (-1 + Sqrt[5]) x0)/(1 + Sqrt[5] + 2 x0) *)


This is actually independent of initial value:



FullSimplify[dlim]

(* Out[610]= 1/2 (-1 + Sqrt[5]) *)


Another well known way to deduce candidate values for the limit is to solve the fixed point equation.



Solve[x == 1/(1 + x), x]

(* Out[594]= {{x -> 1/2 (-1 - Sqrt[5])}, {x -> 1/2 (-1 + Sqrt[5])}} *)





share|improve this answer





















  • +1 You get the same result with Limit[recval, n -> Infinity] // FullSimplify. Also, it is useful to include FullSimplify in definition of recval
    – Bob Hanlon
    Nov 18 at 16:16















up vote
6
down vote



accepted










Nest is a functional programming construct whereas Limit works primarily with mathematical expressions. It simply has no way to work with Nest[...].



This can instead be handled by converting the nested expression into a solved recurrence.



recval = 
RSolveValue[{f[n] == 1/(1 + f[n - 1]), f[0] == x0}, f[n], n]

(* Out[591]= ((2/(1 + Sqrt[5]))^
n (-2^(1 - n) (1 - Sqrt[5])^n +
2^(1 - n) (1 + Sqrt[5])^n + (1/2 (1 - Sqrt[5]))^n x0 +
Sqrt[5] (1/2 (1 - Sqrt[5]))^n x0 - (1/2 (1 + Sqrt[5]))^n x0 +
Sqrt[5] (1/2 (1 + Sqrt[5]))^n x0))/(1 + Sqrt[
5] - ((1 - Sqrt[5])/(1 + Sqrt[5]))^n +
Sqrt[5] ((1 - Sqrt[5])/(1 + Sqrt[5]))^n + 2 x0 -
2 ((1 - Sqrt[5])/(1 + Sqrt[5]))^n x0) *)


Since we are only really interested in integer n I will use DiscreteLimit on this.



dlim = DiscreteLimit[recval, n -> Infinity]

(* Out[592]= (2 + (-1 + Sqrt[5]) x0)/(1 + Sqrt[5] + 2 x0) *)


This is actually independent of initial value:



FullSimplify[dlim]

(* Out[610]= 1/2 (-1 + Sqrt[5]) *)


Another well known way to deduce candidate values for the limit is to solve the fixed point equation.



Solve[x == 1/(1 + x), x]

(* Out[594]= {{x -> 1/2 (-1 - Sqrt[5])}, {x -> 1/2 (-1 + Sqrt[5])}} *)





share|improve this answer





















  • +1 You get the same result with Limit[recval, n -> Infinity] // FullSimplify. Also, it is useful to include FullSimplify in definition of recval
    – Bob Hanlon
    Nov 18 at 16:16













up vote
6
down vote



accepted







up vote
6
down vote



accepted






Nest is a functional programming construct whereas Limit works primarily with mathematical expressions. It simply has no way to work with Nest[...].



This can instead be handled by converting the nested expression into a solved recurrence.



recval = 
RSolveValue[{f[n] == 1/(1 + f[n - 1]), f[0] == x0}, f[n], n]

(* Out[591]= ((2/(1 + Sqrt[5]))^
n (-2^(1 - n) (1 - Sqrt[5])^n +
2^(1 - n) (1 + Sqrt[5])^n + (1/2 (1 - Sqrt[5]))^n x0 +
Sqrt[5] (1/2 (1 - Sqrt[5]))^n x0 - (1/2 (1 + Sqrt[5]))^n x0 +
Sqrt[5] (1/2 (1 + Sqrt[5]))^n x0))/(1 + Sqrt[
5] - ((1 - Sqrt[5])/(1 + Sqrt[5]))^n +
Sqrt[5] ((1 - Sqrt[5])/(1 + Sqrt[5]))^n + 2 x0 -
2 ((1 - Sqrt[5])/(1 + Sqrt[5]))^n x0) *)


Since we are only really interested in integer n I will use DiscreteLimit on this.



dlim = DiscreteLimit[recval, n -> Infinity]

(* Out[592]= (2 + (-1 + Sqrt[5]) x0)/(1 + Sqrt[5] + 2 x0) *)


This is actually independent of initial value:



FullSimplify[dlim]

(* Out[610]= 1/2 (-1 + Sqrt[5]) *)


Another well known way to deduce candidate values for the limit is to solve the fixed point equation.



Solve[x == 1/(1 + x), x]

(* Out[594]= {{x -> 1/2 (-1 - Sqrt[5])}, {x -> 1/2 (-1 + Sqrt[5])}} *)





share|improve this answer












Nest is a functional programming construct whereas Limit works primarily with mathematical expressions. It simply has no way to work with Nest[...].



This can instead be handled by converting the nested expression into a solved recurrence.



recval = 
RSolveValue[{f[n] == 1/(1 + f[n - 1]), f[0] == x0}, f[n], n]

(* Out[591]= ((2/(1 + Sqrt[5]))^
n (-2^(1 - n) (1 - Sqrt[5])^n +
2^(1 - n) (1 + Sqrt[5])^n + (1/2 (1 - Sqrt[5]))^n x0 +
Sqrt[5] (1/2 (1 - Sqrt[5]))^n x0 - (1/2 (1 + Sqrt[5]))^n x0 +
Sqrt[5] (1/2 (1 + Sqrt[5]))^n x0))/(1 + Sqrt[
5] - ((1 - Sqrt[5])/(1 + Sqrt[5]))^n +
Sqrt[5] ((1 - Sqrt[5])/(1 + Sqrt[5]))^n + 2 x0 -
2 ((1 - Sqrt[5])/(1 + Sqrt[5]))^n x0) *)


Since we are only really interested in integer n I will use DiscreteLimit on this.



dlim = DiscreteLimit[recval, n -> Infinity]

(* Out[592]= (2 + (-1 + Sqrt[5]) x0)/(1 + Sqrt[5] + 2 x0) *)


This is actually independent of initial value:



FullSimplify[dlim]

(* Out[610]= 1/2 (-1 + Sqrt[5]) *)


Another well known way to deduce candidate values for the limit is to solve the fixed point equation.



Solve[x == 1/(1 + x), x]

(* Out[594]= {{x -> 1/2 (-1 - Sqrt[5])}, {x -> 1/2 (-1 + Sqrt[5])}} *)






share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 18 at 14:44









Daniel Lichtblau

46.3k275161




46.3k275161












  • +1 You get the same result with Limit[recval, n -> Infinity] // FullSimplify. Also, it is useful to include FullSimplify in definition of recval
    – Bob Hanlon
    Nov 18 at 16:16


















  • +1 You get the same result with Limit[recval, n -> Infinity] // FullSimplify. Also, it is useful to include FullSimplify in definition of recval
    – Bob Hanlon
    Nov 18 at 16:16
















+1 You get the same result with Limit[recval, n -> Infinity] // FullSimplify. Also, it is useful to include FullSimplify in definition of recval
– Bob Hanlon
Nov 18 at 16:16




+1 You get the same result with Limit[recval, n -> Infinity] // FullSimplify. Also, it is useful to include FullSimplify in definition of recval
– Bob Hanlon
Nov 18 at 16:16


















draft saved

draft discarded




















































Thanks for contributing an answer to Mathematica 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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f186238%2fcan-i-use-nest-iteration-variable-as-the-variable-of-limit%23new-answer', 'question_page');
}
);

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







Popular posts from this blog

Probability when a professor distributes a quiz and homework assignment to a class of n students.

Aardman Animations

Are they similar matrix