Closed form of a power series solution to a differential equation
$begingroup$
Given the differential equation $$f''(x)-2xf'(x)-2f(x)=2$$ I've managed to find the power series solution $$sum_{n=0}^infty frac{x^{2(n+1)+1}}{(n+1)!}.$$ Now how can I find the closed form of this function? It seems a bit similar to $$sum_{n=0}^{infty}frac{x^n}{n!}$$ which is the exponential function. But with a difference of shifted powers. Substitution didn't seem to get me anywhere. Does it require integrating or differentiating the expression? Also, is there a general strategy for tackling this kind of problems? What should be the first thing to look at?
real-analysis sequences-and-series power-series
$endgroup$
add a comment |
$begingroup$
Given the differential equation $$f''(x)-2xf'(x)-2f(x)=2$$ I've managed to find the power series solution $$sum_{n=0}^infty frac{x^{2(n+1)+1}}{(n+1)!}.$$ Now how can I find the closed form of this function? It seems a bit similar to $$sum_{n=0}^{infty}frac{x^n}{n!}$$ which is the exponential function. But with a difference of shifted powers. Substitution didn't seem to get me anywhere. Does it require integrating or differentiating the expression? Also, is there a general strategy for tackling this kind of problems? What should be the first thing to look at?
real-analysis sequences-and-series power-series
$endgroup$
add a comment |
$begingroup$
Given the differential equation $$f''(x)-2xf'(x)-2f(x)=2$$ I've managed to find the power series solution $$sum_{n=0}^infty frac{x^{2(n+1)+1}}{(n+1)!}.$$ Now how can I find the closed form of this function? It seems a bit similar to $$sum_{n=0}^{infty}frac{x^n}{n!}$$ which is the exponential function. But with a difference of shifted powers. Substitution didn't seem to get me anywhere. Does it require integrating or differentiating the expression? Also, is there a general strategy for tackling this kind of problems? What should be the first thing to look at?
real-analysis sequences-and-series power-series
$endgroup$
Given the differential equation $$f''(x)-2xf'(x)-2f(x)=2$$ I've managed to find the power series solution $$sum_{n=0}^infty frac{x^{2(n+1)+1}}{(n+1)!}.$$ Now how can I find the closed form of this function? It seems a bit similar to $$sum_{n=0}^{infty}frac{x^n}{n!}$$ which is the exponential function. But with a difference of shifted powers. Substitution didn't seem to get me anywhere. Does it require integrating or differentiating the expression? Also, is there a general strategy for tackling this kind of problems? What should be the first thing to look at?
real-analysis sequences-and-series power-series
real-analysis sequences-and-series power-series
asked Jan 31 at 18:38
Sei SakataSei Sakata
10810
10810
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
$begingroup$
You can try to "factor" out terms until they start to look similar enough, in your case you have a suspicion what it could look like so we can try to give your powerseries this form:
$$frac{x^{2(n+1)+1}}{(n+1)!} overset{m=n+1}{=} frac{x^{2m+1}}{m!} = x frac{(x^2)^m}{m!}$$
So we get
$$sum_{n=0}^infty frac{x^{2(n+1)+1}}{(n+1)!} = x sum_{m=1}^infty frac{(x^2)^m}{m!} = x (exp(x^2) - 1)$$
Note that this does require practice and you need to be able to recognize the power series. At the same time you have to keep in mind that most power series do not admit a closed form, at least the ones you will encounter outside of textbooks and problem sets.
EDIT: Many similar techniques arise in the study of generating functions. There is a great free textbook by Herbert S. Wilf on this topic: https://www.math.upenn.edu/~wilf/DownldGF.html
$endgroup$
add a comment |
$begingroup$
Yes, you're right — it is similar enough, so we can manipulate it into the series for the exponential functions, roughly speaking. Here's one way to look at it:
$$sum_{n=0}^infty frac{x^{2(n+1)+1}}{(n+1)!}=xcdotsum_{n=0}^infty frac{(x^2)^{n+1}}{(n+1)!}=xcdotsum_{n=1}^infty frac{(x^2)^n}{n!}=xcdotleft(sum_{n=0}^infty frac{(x^2)^n}{n!}-1right)=cdots$$
$endgroup$
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%2f3095286%2fclosed-form-of-a-power-series-solution-to-a-differential-equation%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
$begingroup$
You can try to "factor" out terms until they start to look similar enough, in your case you have a suspicion what it could look like so we can try to give your powerseries this form:
$$frac{x^{2(n+1)+1}}{(n+1)!} overset{m=n+1}{=} frac{x^{2m+1}}{m!} = x frac{(x^2)^m}{m!}$$
So we get
$$sum_{n=0}^infty frac{x^{2(n+1)+1}}{(n+1)!} = x sum_{m=1}^infty frac{(x^2)^m}{m!} = x (exp(x^2) - 1)$$
Note that this does require practice and you need to be able to recognize the power series. At the same time you have to keep in mind that most power series do not admit a closed form, at least the ones you will encounter outside of textbooks and problem sets.
EDIT: Many similar techniques arise in the study of generating functions. There is a great free textbook by Herbert S. Wilf on this topic: https://www.math.upenn.edu/~wilf/DownldGF.html
$endgroup$
add a comment |
$begingroup$
You can try to "factor" out terms until they start to look similar enough, in your case you have a suspicion what it could look like so we can try to give your powerseries this form:
$$frac{x^{2(n+1)+1}}{(n+1)!} overset{m=n+1}{=} frac{x^{2m+1}}{m!} = x frac{(x^2)^m}{m!}$$
So we get
$$sum_{n=0}^infty frac{x^{2(n+1)+1}}{(n+1)!} = x sum_{m=1}^infty frac{(x^2)^m}{m!} = x (exp(x^2) - 1)$$
Note that this does require practice and you need to be able to recognize the power series. At the same time you have to keep in mind that most power series do not admit a closed form, at least the ones you will encounter outside of textbooks and problem sets.
EDIT: Many similar techniques arise in the study of generating functions. There is a great free textbook by Herbert S. Wilf on this topic: https://www.math.upenn.edu/~wilf/DownldGF.html
$endgroup$
add a comment |
$begingroup$
You can try to "factor" out terms until they start to look similar enough, in your case you have a suspicion what it could look like so we can try to give your powerseries this form:
$$frac{x^{2(n+1)+1}}{(n+1)!} overset{m=n+1}{=} frac{x^{2m+1}}{m!} = x frac{(x^2)^m}{m!}$$
So we get
$$sum_{n=0}^infty frac{x^{2(n+1)+1}}{(n+1)!} = x sum_{m=1}^infty frac{(x^2)^m}{m!} = x (exp(x^2) - 1)$$
Note that this does require practice and you need to be able to recognize the power series. At the same time you have to keep in mind that most power series do not admit a closed form, at least the ones you will encounter outside of textbooks and problem sets.
EDIT: Many similar techniques arise in the study of generating functions. There is a great free textbook by Herbert S. Wilf on this topic: https://www.math.upenn.edu/~wilf/DownldGF.html
$endgroup$
You can try to "factor" out terms until they start to look similar enough, in your case you have a suspicion what it could look like so we can try to give your powerseries this form:
$$frac{x^{2(n+1)+1}}{(n+1)!} overset{m=n+1}{=} frac{x^{2m+1}}{m!} = x frac{(x^2)^m}{m!}$$
So we get
$$sum_{n=0}^infty frac{x^{2(n+1)+1}}{(n+1)!} = x sum_{m=1}^infty frac{(x^2)^m}{m!} = x (exp(x^2) - 1)$$
Note that this does require practice and you need to be able to recognize the power series. At the same time you have to keep in mind that most power series do not admit a closed form, at least the ones you will encounter outside of textbooks and problem sets.
EDIT: Many similar techniques arise in the study of generating functions. There is a great free textbook by Herbert S. Wilf on this topic: https://www.math.upenn.edu/~wilf/DownldGF.html
edited Jan 31 at 18:59
answered Jan 31 at 18:48
flawrflawr
11.5k32446
11.5k32446
add a comment |
add a comment |
$begingroup$
Yes, you're right — it is similar enough, so we can manipulate it into the series for the exponential functions, roughly speaking. Here's one way to look at it:
$$sum_{n=0}^infty frac{x^{2(n+1)+1}}{(n+1)!}=xcdotsum_{n=0}^infty frac{(x^2)^{n+1}}{(n+1)!}=xcdotsum_{n=1}^infty frac{(x^2)^n}{n!}=xcdotleft(sum_{n=0}^infty frac{(x^2)^n}{n!}-1right)=cdots$$
$endgroup$
add a comment |
$begingroup$
Yes, you're right — it is similar enough, so we can manipulate it into the series for the exponential functions, roughly speaking. Here's one way to look at it:
$$sum_{n=0}^infty frac{x^{2(n+1)+1}}{(n+1)!}=xcdotsum_{n=0}^infty frac{(x^2)^{n+1}}{(n+1)!}=xcdotsum_{n=1}^infty frac{(x^2)^n}{n!}=xcdotleft(sum_{n=0}^infty frac{(x^2)^n}{n!}-1right)=cdots$$
$endgroup$
add a comment |
$begingroup$
Yes, you're right — it is similar enough, so we can manipulate it into the series for the exponential functions, roughly speaking. Here's one way to look at it:
$$sum_{n=0}^infty frac{x^{2(n+1)+1}}{(n+1)!}=xcdotsum_{n=0}^infty frac{(x^2)^{n+1}}{(n+1)!}=xcdotsum_{n=1}^infty frac{(x^2)^n}{n!}=xcdotleft(sum_{n=0}^infty frac{(x^2)^n}{n!}-1right)=cdots$$
$endgroup$
Yes, you're right — it is similar enough, so we can manipulate it into the series for the exponential functions, roughly speaking. Here's one way to look at it:
$$sum_{n=0}^infty frac{x^{2(n+1)+1}}{(n+1)!}=xcdotsum_{n=0}^infty frac{(x^2)^{n+1}}{(n+1)!}=xcdotsum_{n=1}^infty frac{(x^2)^n}{n!}=xcdotleft(sum_{n=0}^infty frac{(x^2)^n}{n!}-1right)=cdots$$
answered Jan 31 at 18:50
zipirovichzipirovich
11.3k11631
11.3k11631
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.
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%2f3095286%2fclosed-form-of-a-power-series-solution-to-a-differential-equation%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