Expressing a divergent function in algebraic terms
We're asked to find the $lim_{xtoinfty}(sqrt{x^2+x}-sqrt{x^2-x
})cos(x)$. I've tried to break down the expression a little bit but couldn't get far. The graph clearly shows that the function oscillates and thus the limit doesn't exist but how would one get to the conclusion algebraically? Perhaps we could do so with the Squeeze theorem by stating that $cos(x)leq1$
My attempt:
$$=lim_{xtoinfty}(sqrt{x^2+x}-sqrt{x^2-x
})cos(x)$$
$$=lim_{xtoinfty}xsqrt{Big(1+frac{1}{x}Big)}-xsqrt{Big(1-frac{1}{x}Big)}cos(x)$$
calculus limits convergence
add a comment |
We're asked to find the $lim_{xtoinfty}(sqrt{x^2+x}-sqrt{x^2-x
})cos(x)$. I've tried to break down the expression a little bit but couldn't get far. The graph clearly shows that the function oscillates and thus the limit doesn't exist but how would one get to the conclusion algebraically? Perhaps we could do so with the Squeeze theorem by stating that $cos(x)leq1$
My attempt:
$$=lim_{xtoinfty}(sqrt{x^2+x}-sqrt{x^2-x
})cos(x)$$
$$=lim_{xtoinfty}xsqrt{Big(1+frac{1}{x}Big)}-xsqrt{Big(1-frac{1}{x}Big)}cos(x)$$
calculus limits convergence
add a comment |
We're asked to find the $lim_{xtoinfty}(sqrt{x^2+x}-sqrt{x^2-x
})cos(x)$. I've tried to break down the expression a little bit but couldn't get far. The graph clearly shows that the function oscillates and thus the limit doesn't exist but how would one get to the conclusion algebraically? Perhaps we could do so with the Squeeze theorem by stating that $cos(x)leq1$
My attempt:
$$=lim_{xtoinfty}(sqrt{x^2+x}-sqrt{x^2-x
})cos(x)$$
$$=lim_{xtoinfty}xsqrt{Big(1+frac{1}{x}Big)}-xsqrt{Big(1-frac{1}{x}Big)}cos(x)$$
calculus limits convergence
We're asked to find the $lim_{xtoinfty}(sqrt{x^2+x}-sqrt{x^2-x
})cos(x)$. I've tried to break down the expression a little bit but couldn't get far. The graph clearly shows that the function oscillates and thus the limit doesn't exist but how would one get to the conclusion algebraically? Perhaps we could do so with the Squeeze theorem by stating that $cos(x)leq1$
My attempt:
$$=lim_{xtoinfty}(sqrt{x^2+x}-sqrt{x^2-x
})cos(x)$$
$$=lim_{xtoinfty}xsqrt{Big(1+frac{1}{x}Big)}-xsqrt{Big(1-frac{1}{x}Big)}cos(x)$$
calculus limits convergence
calculus limits convergence
asked Nov 24 at 22:20
kareem bokai
344
344
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Use the fact thatbegin{align}sqrt{x^2+x}-sqrt{x^2-x}&=frac{left(sqrt{x^2+x}-sqrt{x^2-x}right)left(sqrt{x^2+x}+sqrt{x^2-x}right)}{sqrt{x^2+x}+sqrt{x^2-x}}\&=frac{x^2+x-(x^2-x)}{sqrt{x^2+x}+sqrt{x^2-x}}\&=frac{2x}{sqrt{x^2+x}+sqrt{x^2-x}}end{align}
add a comment |
By binomial first order expansion we have that
- $sqrt{x^2+x}=x(1+1/x)^frac12=x+frac12+o(1)$
- $sqrt{x^2-x}=x(1-1/x)^frac12=x-frac12+o(1)$
and then
$$sqrt{x^2+x}-sqrt{x^2-x
}=x+frac12-x+frac12+o(1)=1+o(1) to 1$$
then consider
- $x_n = 2pi n to infty$
$$(sqrt{x_n^2+x_n}-sqrt{x_n^2-x_n})cos(x_n) to 1cdot 1=1$$
but for
- $x_n = frac{pi}2+2pi n to infty$
$$(sqrt{x_n^2+x_n}-sqrt{x_n^2-x_n})cos(x_n) to 1cdot 0=0$$
therefore, since there exist two subsequnces with different limit, the given limit doesn't exist.
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%2f3012171%2fexpressing-a-divergent-function-in-algebraic-terms%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
Use the fact thatbegin{align}sqrt{x^2+x}-sqrt{x^2-x}&=frac{left(sqrt{x^2+x}-sqrt{x^2-x}right)left(sqrt{x^2+x}+sqrt{x^2-x}right)}{sqrt{x^2+x}+sqrt{x^2-x}}\&=frac{x^2+x-(x^2-x)}{sqrt{x^2+x}+sqrt{x^2-x}}\&=frac{2x}{sqrt{x^2+x}+sqrt{x^2-x}}end{align}
add a comment |
Use the fact thatbegin{align}sqrt{x^2+x}-sqrt{x^2-x}&=frac{left(sqrt{x^2+x}-sqrt{x^2-x}right)left(sqrt{x^2+x}+sqrt{x^2-x}right)}{sqrt{x^2+x}+sqrt{x^2-x}}\&=frac{x^2+x-(x^2-x)}{sqrt{x^2+x}+sqrt{x^2-x}}\&=frac{2x}{sqrt{x^2+x}+sqrt{x^2-x}}end{align}
add a comment |
Use the fact thatbegin{align}sqrt{x^2+x}-sqrt{x^2-x}&=frac{left(sqrt{x^2+x}-sqrt{x^2-x}right)left(sqrt{x^2+x}+sqrt{x^2-x}right)}{sqrt{x^2+x}+sqrt{x^2-x}}\&=frac{x^2+x-(x^2-x)}{sqrt{x^2+x}+sqrt{x^2-x}}\&=frac{2x}{sqrt{x^2+x}+sqrt{x^2-x}}end{align}
Use the fact thatbegin{align}sqrt{x^2+x}-sqrt{x^2-x}&=frac{left(sqrt{x^2+x}-sqrt{x^2-x}right)left(sqrt{x^2+x}+sqrt{x^2-x}right)}{sqrt{x^2+x}+sqrt{x^2-x}}\&=frac{x^2+x-(x^2-x)}{sqrt{x^2+x}+sqrt{x^2-x}}\&=frac{2x}{sqrt{x^2+x}+sqrt{x^2-x}}end{align}
answered Nov 24 at 22:24
José Carlos Santos
148k22117218
148k22117218
add a comment |
add a comment |
By binomial first order expansion we have that
- $sqrt{x^2+x}=x(1+1/x)^frac12=x+frac12+o(1)$
- $sqrt{x^2-x}=x(1-1/x)^frac12=x-frac12+o(1)$
and then
$$sqrt{x^2+x}-sqrt{x^2-x
}=x+frac12-x+frac12+o(1)=1+o(1) to 1$$
then consider
- $x_n = 2pi n to infty$
$$(sqrt{x_n^2+x_n}-sqrt{x_n^2-x_n})cos(x_n) to 1cdot 1=1$$
but for
- $x_n = frac{pi}2+2pi n to infty$
$$(sqrt{x_n^2+x_n}-sqrt{x_n^2-x_n})cos(x_n) to 1cdot 0=0$$
therefore, since there exist two subsequnces with different limit, the given limit doesn't exist.
add a comment |
By binomial first order expansion we have that
- $sqrt{x^2+x}=x(1+1/x)^frac12=x+frac12+o(1)$
- $sqrt{x^2-x}=x(1-1/x)^frac12=x-frac12+o(1)$
and then
$$sqrt{x^2+x}-sqrt{x^2-x
}=x+frac12-x+frac12+o(1)=1+o(1) to 1$$
then consider
- $x_n = 2pi n to infty$
$$(sqrt{x_n^2+x_n}-sqrt{x_n^2-x_n})cos(x_n) to 1cdot 1=1$$
but for
- $x_n = frac{pi}2+2pi n to infty$
$$(sqrt{x_n^2+x_n}-sqrt{x_n^2-x_n})cos(x_n) to 1cdot 0=0$$
therefore, since there exist two subsequnces with different limit, the given limit doesn't exist.
add a comment |
By binomial first order expansion we have that
- $sqrt{x^2+x}=x(1+1/x)^frac12=x+frac12+o(1)$
- $sqrt{x^2-x}=x(1-1/x)^frac12=x-frac12+o(1)$
and then
$$sqrt{x^2+x}-sqrt{x^2-x
}=x+frac12-x+frac12+o(1)=1+o(1) to 1$$
then consider
- $x_n = 2pi n to infty$
$$(sqrt{x_n^2+x_n}-sqrt{x_n^2-x_n})cos(x_n) to 1cdot 1=1$$
but for
- $x_n = frac{pi}2+2pi n to infty$
$$(sqrt{x_n^2+x_n}-sqrt{x_n^2-x_n})cos(x_n) to 1cdot 0=0$$
therefore, since there exist two subsequnces with different limit, the given limit doesn't exist.
By binomial first order expansion we have that
- $sqrt{x^2+x}=x(1+1/x)^frac12=x+frac12+o(1)$
- $sqrt{x^2-x}=x(1-1/x)^frac12=x-frac12+o(1)$
and then
$$sqrt{x^2+x}-sqrt{x^2-x
}=x+frac12-x+frac12+o(1)=1+o(1) to 1$$
then consider
- $x_n = 2pi n to infty$
$$(sqrt{x_n^2+x_n}-sqrt{x_n^2-x_n})cos(x_n) to 1cdot 1=1$$
but for
- $x_n = frac{pi}2+2pi n to infty$
$$(sqrt{x_n^2+x_n}-sqrt{x_n^2-x_n})cos(x_n) to 1cdot 0=0$$
therefore, since there exist two subsequnces with different limit, the given limit doesn't exist.
answered Nov 24 at 23:32
gimusi
1
1
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%2f3012171%2fexpressing-a-divergent-function-in-algebraic-terms%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