Finding limit of a strangely defined recursive sequence
I have problems finding limits of recursive sequence like: $a_1 = 5$ $a_{n+1} = frac{(a_n)^2}{10n + 3} + 1$
I know that intuitively the limit will be $1$, since $frac{(a_n)^2}{10n + 3}$ tends to 0, but I have problems proving that.
Hints would be appreciated.
limits limits-without-lhopital
add a comment |
I have problems finding limits of recursive sequence like: $a_1 = 5$ $a_{n+1} = frac{(a_n)^2}{10n + 3} + 1$
I know that intuitively the limit will be $1$, since $frac{(a_n)^2}{10n + 3}$ tends to 0, but I have problems proving that.
Hints would be appreciated.
limits limits-without-lhopital
add a comment |
I have problems finding limits of recursive sequence like: $a_1 = 5$ $a_{n+1} = frac{(a_n)^2}{10n + 3} + 1$
I know that intuitively the limit will be $1$, since $frac{(a_n)^2}{10n + 3}$ tends to 0, but I have problems proving that.
Hints would be appreciated.
limits limits-without-lhopital
I have problems finding limits of recursive sequence like: $a_1 = 5$ $a_{n+1} = frac{(a_n)^2}{10n + 3} + 1$
I know that intuitively the limit will be $1$, since $frac{(a_n)^2}{10n + 3}$ tends to 0, but I have problems proving that.
Hints would be appreciated.
limits limits-without-lhopital
limits limits-without-lhopital
asked Nov 22 '18 at 10:29
JoséJosé
11
11
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
First to all we'll need to show that $a_n$ is monotone, in particular decreasing by induction.
It's simple verify that $a_2<a_1$ and $a_ngeq 1$ for every $n$ because the term $frac{a^2_n}{10n+3}$ is always $geq 0$, now suppose $a_n<a_{n-1}$ then $a_n^2<a_{n-1}^2$ and
$$
a_{n+1}=frac{a_n^2}{10(n+1)+3}+1<frac{a_{n-1}^2}{10(n+1)+3}+1<frac{a_{n-1}^2}{10n+3}+1=a_n
$$
Now $a_n$ is decreasing and lower bounded by $1$ so $a_n$ has got a limit: $lim_{nrightarrow +infty}a_n=linmathbb R$. Then
$$
l=lim_{nrightarrow +infty}a_{n+1}=lim_{nrightarrow +infty}frac{a_n^2}{10n+3}+1=frac l{+infty}+1=0+1=1
$$
then $l=1$.
Would it be enough to show that $a_n$ is non-increasing instead of showing it's decreasing?
– José
Nov 22 '18 at 11:14
Yes, for generic successions $a_n$ you need at least one of: 1. $a_n$ not decreasing ($a_ngeq a_{n-1}$) and upper bounded; 2. $a_n$ not increasing ($a_nleq a_{n-1}$) and lower bounded.
– P De Donato
Nov 22 '18 at 11:16
For example succession $a_n=(-1)^n$ is lower and upper bounded but hasn't limit (it isn't monotone).
– P De Donato
Nov 22 '18 at 11:19
add a comment |
It should be clear that $a_n >0$ for all n.
Now prove, by induction, that $(a_n)$ is decreasing.
Hence $(a_n)$ is monotonic and bounded and therefore convergent. If $a$ is the limit of $(a_n)$ then $ frac{(a_n)^2}{10n + 3} + 1 to 1$ as $n to infty$, hence $a_{n+1} to 1$ as $n to infty$.
add a comment |
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%2f3008963%2ffinding-limit-of-a-strangely-defined-recursive-sequence%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
First to all we'll need to show that $a_n$ is monotone, in particular decreasing by induction.
It's simple verify that $a_2<a_1$ and $a_ngeq 1$ for every $n$ because the term $frac{a^2_n}{10n+3}$ is always $geq 0$, now suppose $a_n<a_{n-1}$ then $a_n^2<a_{n-1}^2$ and
$$
a_{n+1}=frac{a_n^2}{10(n+1)+3}+1<frac{a_{n-1}^2}{10(n+1)+3}+1<frac{a_{n-1}^2}{10n+3}+1=a_n
$$
Now $a_n$ is decreasing and lower bounded by $1$ so $a_n$ has got a limit: $lim_{nrightarrow +infty}a_n=linmathbb R$. Then
$$
l=lim_{nrightarrow +infty}a_{n+1}=lim_{nrightarrow +infty}frac{a_n^2}{10n+3}+1=frac l{+infty}+1=0+1=1
$$
then $l=1$.
Would it be enough to show that $a_n$ is non-increasing instead of showing it's decreasing?
– José
Nov 22 '18 at 11:14
Yes, for generic successions $a_n$ you need at least one of: 1. $a_n$ not decreasing ($a_ngeq a_{n-1}$) and upper bounded; 2. $a_n$ not increasing ($a_nleq a_{n-1}$) and lower bounded.
– P De Donato
Nov 22 '18 at 11:16
For example succession $a_n=(-1)^n$ is lower and upper bounded but hasn't limit (it isn't monotone).
– P De Donato
Nov 22 '18 at 11:19
add a comment |
First to all we'll need to show that $a_n$ is monotone, in particular decreasing by induction.
It's simple verify that $a_2<a_1$ and $a_ngeq 1$ for every $n$ because the term $frac{a^2_n}{10n+3}$ is always $geq 0$, now suppose $a_n<a_{n-1}$ then $a_n^2<a_{n-1}^2$ and
$$
a_{n+1}=frac{a_n^2}{10(n+1)+3}+1<frac{a_{n-1}^2}{10(n+1)+3}+1<frac{a_{n-1}^2}{10n+3}+1=a_n
$$
Now $a_n$ is decreasing and lower bounded by $1$ so $a_n$ has got a limit: $lim_{nrightarrow +infty}a_n=linmathbb R$. Then
$$
l=lim_{nrightarrow +infty}a_{n+1}=lim_{nrightarrow +infty}frac{a_n^2}{10n+3}+1=frac l{+infty}+1=0+1=1
$$
then $l=1$.
Would it be enough to show that $a_n$ is non-increasing instead of showing it's decreasing?
– José
Nov 22 '18 at 11:14
Yes, for generic successions $a_n$ you need at least one of: 1. $a_n$ not decreasing ($a_ngeq a_{n-1}$) and upper bounded; 2. $a_n$ not increasing ($a_nleq a_{n-1}$) and lower bounded.
– P De Donato
Nov 22 '18 at 11:16
For example succession $a_n=(-1)^n$ is lower and upper bounded but hasn't limit (it isn't monotone).
– P De Donato
Nov 22 '18 at 11:19
add a comment |
First to all we'll need to show that $a_n$ is monotone, in particular decreasing by induction.
It's simple verify that $a_2<a_1$ and $a_ngeq 1$ for every $n$ because the term $frac{a^2_n}{10n+3}$ is always $geq 0$, now suppose $a_n<a_{n-1}$ then $a_n^2<a_{n-1}^2$ and
$$
a_{n+1}=frac{a_n^2}{10(n+1)+3}+1<frac{a_{n-1}^2}{10(n+1)+3}+1<frac{a_{n-1}^2}{10n+3}+1=a_n
$$
Now $a_n$ is decreasing and lower bounded by $1$ so $a_n$ has got a limit: $lim_{nrightarrow +infty}a_n=linmathbb R$. Then
$$
l=lim_{nrightarrow +infty}a_{n+1}=lim_{nrightarrow +infty}frac{a_n^2}{10n+3}+1=frac l{+infty}+1=0+1=1
$$
then $l=1$.
First to all we'll need to show that $a_n$ is monotone, in particular decreasing by induction.
It's simple verify that $a_2<a_1$ and $a_ngeq 1$ for every $n$ because the term $frac{a^2_n}{10n+3}$ is always $geq 0$, now suppose $a_n<a_{n-1}$ then $a_n^2<a_{n-1}^2$ and
$$
a_{n+1}=frac{a_n^2}{10(n+1)+3}+1<frac{a_{n-1}^2}{10(n+1)+3}+1<frac{a_{n-1}^2}{10n+3}+1=a_n
$$
Now $a_n$ is decreasing and lower bounded by $1$ so $a_n$ has got a limit: $lim_{nrightarrow +infty}a_n=linmathbb R$. Then
$$
l=lim_{nrightarrow +infty}a_{n+1}=lim_{nrightarrow +infty}frac{a_n^2}{10n+3}+1=frac l{+infty}+1=0+1=1
$$
then $l=1$.
answered Nov 22 '18 at 10:50
P De DonatoP De Donato
4147
4147
Would it be enough to show that $a_n$ is non-increasing instead of showing it's decreasing?
– José
Nov 22 '18 at 11:14
Yes, for generic successions $a_n$ you need at least one of: 1. $a_n$ not decreasing ($a_ngeq a_{n-1}$) and upper bounded; 2. $a_n$ not increasing ($a_nleq a_{n-1}$) and lower bounded.
– P De Donato
Nov 22 '18 at 11:16
For example succession $a_n=(-1)^n$ is lower and upper bounded but hasn't limit (it isn't monotone).
– P De Donato
Nov 22 '18 at 11:19
add a comment |
Would it be enough to show that $a_n$ is non-increasing instead of showing it's decreasing?
– José
Nov 22 '18 at 11:14
Yes, for generic successions $a_n$ you need at least one of: 1. $a_n$ not decreasing ($a_ngeq a_{n-1}$) and upper bounded; 2. $a_n$ not increasing ($a_nleq a_{n-1}$) and lower bounded.
– P De Donato
Nov 22 '18 at 11:16
For example succession $a_n=(-1)^n$ is lower and upper bounded but hasn't limit (it isn't monotone).
– P De Donato
Nov 22 '18 at 11:19
Would it be enough to show that $a_n$ is non-increasing instead of showing it's decreasing?
– José
Nov 22 '18 at 11:14
Would it be enough to show that $a_n$ is non-increasing instead of showing it's decreasing?
– José
Nov 22 '18 at 11:14
Yes, for generic successions $a_n$ you need at least one of: 1. $a_n$ not decreasing ($a_ngeq a_{n-1}$) and upper bounded; 2. $a_n$ not increasing ($a_nleq a_{n-1}$) and lower bounded.
– P De Donato
Nov 22 '18 at 11:16
Yes, for generic successions $a_n$ you need at least one of: 1. $a_n$ not decreasing ($a_ngeq a_{n-1}$) and upper bounded; 2. $a_n$ not increasing ($a_nleq a_{n-1}$) and lower bounded.
– P De Donato
Nov 22 '18 at 11:16
For example succession $a_n=(-1)^n$ is lower and upper bounded but hasn't limit (it isn't monotone).
– P De Donato
Nov 22 '18 at 11:19
For example succession $a_n=(-1)^n$ is lower and upper bounded but hasn't limit (it isn't monotone).
– P De Donato
Nov 22 '18 at 11:19
add a comment |
It should be clear that $a_n >0$ for all n.
Now prove, by induction, that $(a_n)$ is decreasing.
Hence $(a_n)$ is monotonic and bounded and therefore convergent. If $a$ is the limit of $(a_n)$ then $ frac{(a_n)^2}{10n + 3} + 1 to 1$ as $n to infty$, hence $a_{n+1} to 1$ as $n to infty$.
add a comment |
It should be clear that $a_n >0$ for all n.
Now prove, by induction, that $(a_n)$ is decreasing.
Hence $(a_n)$ is monotonic and bounded and therefore convergent. If $a$ is the limit of $(a_n)$ then $ frac{(a_n)^2}{10n + 3} + 1 to 1$ as $n to infty$, hence $a_{n+1} to 1$ as $n to infty$.
add a comment |
It should be clear that $a_n >0$ for all n.
Now prove, by induction, that $(a_n)$ is decreasing.
Hence $(a_n)$ is monotonic and bounded and therefore convergent. If $a$ is the limit of $(a_n)$ then $ frac{(a_n)^2}{10n + 3} + 1 to 1$ as $n to infty$, hence $a_{n+1} to 1$ as $n to infty$.
It should be clear that $a_n >0$ for all n.
Now prove, by induction, that $(a_n)$ is decreasing.
Hence $(a_n)$ is monotonic and bounded and therefore convergent. If $a$ is the limit of $(a_n)$ then $ frac{(a_n)^2}{10n + 3} + 1 to 1$ as $n to infty$, hence $a_{n+1} to 1$ as $n to infty$.
answered Nov 22 '18 at 10:48
FredFred
44.4k1845
44.4k1845
add a comment |
add a comment |
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%2f3008963%2ffinding-limit-of-a-strangely-defined-recursive-sequence%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
