On approximations using taylor series












0












$begingroup$


Suppose $f$ is diffrentiable many times and we want to expand $f(x)$ around say $x=0$ using taylor. Usually it is written



$$ f(x) = f(0) + f'(0) x + f''(0)/2 x^2 + O(x^3) $$
or



$$ f(x) = f(0) + f'(0) x + f''(0)/2 x^2 + f'''(0)/6 x^3 + O(x^4) $$



What is the difference between these two expansions? Does this $O(x^3)$ means that all terms higher than $x^3$ are zero? How can we decide whether to write the expansion in the first or the second way?










share|cite|improve this question









$endgroup$












  • $begingroup$
    Hi & welcome to MSE. The "O" being used is often called "big O" (to differentiate it from "little O" which is something different), with the Wikipedia article Big O notation doing a quite good job explaining it. Basically, it's a type of order of magnitude regarding the unknown value. In particular, though, it doesn't means the terms higher than $x^3$, or any other power of $x$, are all zero.
    $endgroup$
    – John Omielan
    Jan 14 at 3:16












  • $begingroup$
    I think I got it now. So, what it really means is that $f(x) - TAYLOR(f,degree2) = O(x^3)$ but $f(x) - TAYLOR(f,degree3) = O(x^4)$ so the second one is close to zero because $x^4$ approaches to $0$ faster than $x^3$ ?
    $endgroup$
    – Jimmy Sabater
    Jan 14 at 3:24










  • $begingroup$
    Note that $x^4$ approaches $0$ faster than $x^3$ only for $lvert x rvert lt 1$, but you can't always assume $x$ is within this bound as the valid region for a Taylor series expansion may include regions outside of this. As the Wikipedia article says, the big O notation "characterizes functions according to their growth rates". However, the upper bound constant for $Oleft(x^3right)$ and for $Oleft(x^4right)$ may be different, so you can't directly compare them to each other.
    $endgroup$
    – John Omielan
    Jan 14 at 3:29












  • $begingroup$
    As for your 2nd question, i.e., writing the expansion in the 1st or 2nd way you mention, or implicitly how many terms to include, this depends on several factors. For example, what is the purpose of the expansion (e.g., if it's to prove or check on a limit, you may only need a certain number), how much accuracy you want (note each Taylor series function expansion has its own rate of convergence, so this is something to check on), etc.? However, from my limited experience & knowledge, in real life situations, you will likely not need or want to go past the fourth or fifth term very often.
    $endgroup$
    – John Omielan
    Jan 14 at 3:34


















0












$begingroup$


Suppose $f$ is diffrentiable many times and we want to expand $f(x)$ around say $x=0$ using taylor. Usually it is written



$$ f(x) = f(0) + f'(0) x + f''(0)/2 x^2 + O(x^3) $$
or



$$ f(x) = f(0) + f'(0) x + f''(0)/2 x^2 + f'''(0)/6 x^3 + O(x^4) $$



What is the difference between these two expansions? Does this $O(x^3)$ means that all terms higher than $x^3$ are zero? How can we decide whether to write the expansion in the first or the second way?










share|cite|improve this question









$endgroup$












  • $begingroup$
    Hi & welcome to MSE. The "O" being used is often called "big O" (to differentiate it from "little O" which is something different), with the Wikipedia article Big O notation doing a quite good job explaining it. Basically, it's a type of order of magnitude regarding the unknown value. In particular, though, it doesn't means the terms higher than $x^3$, or any other power of $x$, are all zero.
    $endgroup$
    – John Omielan
    Jan 14 at 3:16












  • $begingroup$
    I think I got it now. So, what it really means is that $f(x) - TAYLOR(f,degree2) = O(x^3)$ but $f(x) - TAYLOR(f,degree3) = O(x^4)$ so the second one is close to zero because $x^4$ approaches to $0$ faster than $x^3$ ?
    $endgroup$
    – Jimmy Sabater
    Jan 14 at 3:24










  • $begingroup$
    Note that $x^4$ approaches $0$ faster than $x^3$ only for $lvert x rvert lt 1$, but you can't always assume $x$ is within this bound as the valid region for a Taylor series expansion may include regions outside of this. As the Wikipedia article says, the big O notation "characterizes functions according to their growth rates". However, the upper bound constant for $Oleft(x^3right)$ and for $Oleft(x^4right)$ may be different, so you can't directly compare them to each other.
    $endgroup$
    – John Omielan
    Jan 14 at 3:29












  • $begingroup$
    As for your 2nd question, i.e., writing the expansion in the 1st or 2nd way you mention, or implicitly how many terms to include, this depends on several factors. For example, what is the purpose of the expansion (e.g., if it's to prove or check on a limit, you may only need a certain number), how much accuracy you want (note each Taylor series function expansion has its own rate of convergence, so this is something to check on), etc.? However, from my limited experience & knowledge, in real life situations, you will likely not need or want to go past the fourth or fifth term very often.
    $endgroup$
    – John Omielan
    Jan 14 at 3:34
















0












0








0





$begingroup$


Suppose $f$ is diffrentiable many times and we want to expand $f(x)$ around say $x=0$ using taylor. Usually it is written



$$ f(x) = f(0) + f'(0) x + f''(0)/2 x^2 + O(x^3) $$
or



$$ f(x) = f(0) + f'(0) x + f''(0)/2 x^2 + f'''(0)/6 x^3 + O(x^4) $$



What is the difference between these two expansions? Does this $O(x^3)$ means that all terms higher than $x^3$ are zero? How can we decide whether to write the expansion in the first or the second way?










share|cite|improve this question









$endgroup$




Suppose $f$ is diffrentiable many times and we want to expand $f(x)$ around say $x=0$ using taylor. Usually it is written



$$ f(x) = f(0) + f'(0) x + f''(0)/2 x^2 + O(x^3) $$
or



$$ f(x) = f(0) + f'(0) x + f''(0)/2 x^2 + f'''(0)/6 x^3 + O(x^4) $$



What is the difference between these two expansions? Does this $O(x^3)$ means that all terms higher than $x^3$ are zero? How can we decide whether to write the expansion in the first or the second way?







real-analysis calculus






share|cite|improve this question













share|cite|improve this question











share|cite|improve this question




share|cite|improve this question










asked Jan 14 at 3:10









Jimmy SabaterJimmy Sabater

2,632322




2,632322












  • $begingroup$
    Hi & welcome to MSE. The "O" being used is often called "big O" (to differentiate it from "little O" which is something different), with the Wikipedia article Big O notation doing a quite good job explaining it. Basically, it's a type of order of magnitude regarding the unknown value. In particular, though, it doesn't means the terms higher than $x^3$, or any other power of $x$, are all zero.
    $endgroup$
    – John Omielan
    Jan 14 at 3:16












  • $begingroup$
    I think I got it now. So, what it really means is that $f(x) - TAYLOR(f,degree2) = O(x^3)$ but $f(x) - TAYLOR(f,degree3) = O(x^4)$ so the second one is close to zero because $x^4$ approaches to $0$ faster than $x^3$ ?
    $endgroup$
    – Jimmy Sabater
    Jan 14 at 3:24










  • $begingroup$
    Note that $x^4$ approaches $0$ faster than $x^3$ only for $lvert x rvert lt 1$, but you can't always assume $x$ is within this bound as the valid region for a Taylor series expansion may include regions outside of this. As the Wikipedia article says, the big O notation "characterizes functions according to their growth rates". However, the upper bound constant for $Oleft(x^3right)$ and for $Oleft(x^4right)$ may be different, so you can't directly compare them to each other.
    $endgroup$
    – John Omielan
    Jan 14 at 3:29












  • $begingroup$
    As for your 2nd question, i.e., writing the expansion in the 1st or 2nd way you mention, or implicitly how many terms to include, this depends on several factors. For example, what is the purpose of the expansion (e.g., if it's to prove or check on a limit, you may only need a certain number), how much accuracy you want (note each Taylor series function expansion has its own rate of convergence, so this is something to check on), etc.? However, from my limited experience & knowledge, in real life situations, you will likely not need or want to go past the fourth or fifth term very often.
    $endgroup$
    – John Omielan
    Jan 14 at 3:34




















  • $begingroup$
    Hi & welcome to MSE. The "O" being used is often called "big O" (to differentiate it from "little O" which is something different), with the Wikipedia article Big O notation doing a quite good job explaining it. Basically, it's a type of order of magnitude regarding the unknown value. In particular, though, it doesn't means the terms higher than $x^3$, or any other power of $x$, are all zero.
    $endgroup$
    – John Omielan
    Jan 14 at 3:16












  • $begingroup$
    I think I got it now. So, what it really means is that $f(x) - TAYLOR(f,degree2) = O(x^3)$ but $f(x) - TAYLOR(f,degree3) = O(x^4)$ so the second one is close to zero because $x^4$ approaches to $0$ faster than $x^3$ ?
    $endgroup$
    – Jimmy Sabater
    Jan 14 at 3:24










  • $begingroup$
    Note that $x^4$ approaches $0$ faster than $x^3$ only for $lvert x rvert lt 1$, but you can't always assume $x$ is within this bound as the valid region for a Taylor series expansion may include regions outside of this. As the Wikipedia article says, the big O notation "characterizes functions according to their growth rates". However, the upper bound constant for $Oleft(x^3right)$ and for $Oleft(x^4right)$ may be different, so you can't directly compare them to each other.
    $endgroup$
    – John Omielan
    Jan 14 at 3:29












  • $begingroup$
    As for your 2nd question, i.e., writing the expansion in the 1st or 2nd way you mention, or implicitly how many terms to include, this depends on several factors. For example, what is the purpose of the expansion (e.g., if it's to prove or check on a limit, you may only need a certain number), how much accuracy you want (note each Taylor series function expansion has its own rate of convergence, so this is something to check on), etc.? However, from my limited experience & knowledge, in real life situations, you will likely not need or want to go past the fourth or fifth term very often.
    $endgroup$
    – John Omielan
    Jan 14 at 3:34


















$begingroup$
Hi & welcome to MSE. The "O" being used is often called "big O" (to differentiate it from "little O" which is something different), with the Wikipedia article Big O notation doing a quite good job explaining it. Basically, it's a type of order of magnitude regarding the unknown value. In particular, though, it doesn't means the terms higher than $x^3$, or any other power of $x$, are all zero.
$endgroup$
– John Omielan
Jan 14 at 3:16






$begingroup$
Hi & welcome to MSE. The "O" being used is often called "big O" (to differentiate it from "little O" which is something different), with the Wikipedia article Big O notation doing a quite good job explaining it. Basically, it's a type of order of magnitude regarding the unknown value. In particular, though, it doesn't means the terms higher than $x^3$, or any other power of $x$, are all zero.
$endgroup$
– John Omielan
Jan 14 at 3:16














$begingroup$
I think I got it now. So, what it really means is that $f(x) - TAYLOR(f,degree2) = O(x^3)$ but $f(x) - TAYLOR(f,degree3) = O(x^4)$ so the second one is close to zero because $x^4$ approaches to $0$ faster than $x^3$ ?
$endgroup$
– Jimmy Sabater
Jan 14 at 3:24




$begingroup$
I think I got it now. So, what it really means is that $f(x) - TAYLOR(f,degree2) = O(x^3)$ but $f(x) - TAYLOR(f,degree3) = O(x^4)$ so the second one is close to zero because $x^4$ approaches to $0$ faster than $x^3$ ?
$endgroup$
– Jimmy Sabater
Jan 14 at 3:24












$begingroup$
Note that $x^4$ approaches $0$ faster than $x^3$ only for $lvert x rvert lt 1$, but you can't always assume $x$ is within this bound as the valid region for a Taylor series expansion may include regions outside of this. As the Wikipedia article says, the big O notation "characterizes functions according to their growth rates". However, the upper bound constant for $Oleft(x^3right)$ and for $Oleft(x^4right)$ may be different, so you can't directly compare them to each other.
$endgroup$
– John Omielan
Jan 14 at 3:29






$begingroup$
Note that $x^4$ approaches $0$ faster than $x^3$ only for $lvert x rvert lt 1$, but you can't always assume $x$ is within this bound as the valid region for a Taylor series expansion may include regions outside of this. As the Wikipedia article says, the big O notation "characterizes functions according to their growth rates". However, the upper bound constant for $Oleft(x^3right)$ and for $Oleft(x^4right)$ may be different, so you can't directly compare them to each other.
$endgroup$
– John Omielan
Jan 14 at 3:29














$begingroup$
As for your 2nd question, i.e., writing the expansion in the 1st or 2nd way you mention, or implicitly how many terms to include, this depends on several factors. For example, what is the purpose of the expansion (e.g., if it's to prove or check on a limit, you may only need a certain number), how much accuracy you want (note each Taylor series function expansion has its own rate of convergence, so this is something to check on), etc.? However, from my limited experience & knowledge, in real life situations, you will likely not need or want to go past the fourth or fifth term very often.
$endgroup$
– John Omielan
Jan 14 at 3:34






$begingroup$
As for your 2nd question, i.e., writing the expansion in the 1st or 2nd way you mention, or implicitly how many terms to include, this depends on several factors. For example, what is the purpose of the expansion (e.g., if it's to prove or check on a limit, you may only need a certain number), how much accuracy you want (note each Taylor series function expansion has its own rate of convergence, so this is something to check on), etc.? However, from my limited experience & knowledge, in real life situations, you will likely not need or want to go past the fourth or fifth term very often.
$endgroup$
– John Omielan
Jan 14 at 3:34












0






active

oldest

votes











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
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3072802%2fon-approximations-using-taylor-series%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3072802%2fon-approximations-using-taylor-series%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

Can a sorcerer learn a 5th-level spell early by creating spell slots using the Font of Magic feature?

ts Property 'filter' does not exist on type '{}'

mat-slide-toggle shouldn't change it's state when I click cancel in confirmation window