Design a parameter $k$ for a second order ODE $ddot{x}(t) = f(t,k)$ subjected to a set of initial and...
up vote
0
down vote
favorite
I have a nonlinear differential equation as follows
begin{align}
ddot{x}(t) = f(theta(t),k),
end{align}
where $f$ is a function of the time variable $t in mathbb{R}^{+}$, $k in mathbb{R}$ is the designed parameter, and $theta(t)$ is a known function of time. The function $theta(t)$ only depends on time and it is a quite complicated so I cannot integrate to find $x(t)$ and $dot{x}(t)$ analytically.
My task is: compute the parameter $k$ such that following initial/terminal conditions should be met as good as possible:
begin{align}
x(0) = 0, quad dot{x}(0) = 0, quad x(t_{f}) = bar{x},
end{align}
where the terminal time $t_{f}$ and the value of $bar{x}$ are both known.
My question is: is there any elegant way to solve such problem?
My current idea: I will formulate an optimization problem as below:
begin{align}
&min quad J = x^{2}(0) + dot{x}^{2}(0) + [x(t_{f}) - bar{x}]^2 \
& quad {k}
end{align}
Then I will use a nonlinear programmer to solve. But I think it is a bit brute to solve in that way.
I appreciate any suggestion. Thank you!
differential-equations optimization nonlinear-system
|
show 1 more comment
up vote
0
down vote
favorite
I have a nonlinear differential equation as follows
begin{align}
ddot{x}(t) = f(theta(t),k),
end{align}
where $f$ is a function of the time variable $t in mathbb{R}^{+}$, $k in mathbb{R}$ is the designed parameter, and $theta(t)$ is a known function of time. The function $theta(t)$ only depends on time and it is a quite complicated so I cannot integrate to find $x(t)$ and $dot{x}(t)$ analytically.
My task is: compute the parameter $k$ such that following initial/terminal conditions should be met as good as possible:
begin{align}
x(0) = 0, quad dot{x}(0) = 0, quad x(t_{f}) = bar{x},
end{align}
where the terminal time $t_{f}$ and the value of $bar{x}$ are both known.
My question is: is there any elegant way to solve such problem?
My current idea: I will formulate an optimization problem as below:
begin{align}
&min quad J = x^{2}(0) + dot{x}^{2}(0) + [x(t_{f}) - bar{x}]^2 \
& quad {k}
end{align}
Then I will use a nonlinear programmer to solve. But I think it is a bit brute to solve in that way.
I appreciate any suggestion. Thank you!
differential-equations optimization nonlinear-system
This ode is linear but non-homogeneous.
– Jon
Nov 22 at 16:26
Thanks a lot @Jon! I figured out that it is not possible to obtain an analytical solution for $x(t)$ and $dot{x}(t)$, and formulating an optimization problem for this task is not a good idea as well. However, I can separate the parameter $k$ such that $ddot{x}(t) = L(theta(t)) + kR(theta(t))$, then using numerical integration to impose the given initial and terminal conditions.
– lyhuehue01
Nov 23 at 7:06
as you have written the equation, the solution is $x(t)=x(0)+{dot x}(o)t+int_0^tdt'int_0^{t'}dt''f(theta(t''),k)$. This has a closed form or not depending the known functions $f$ and $theta$.
– Jon
Nov 23 at 7:36
Yes, that's right. In my case, $f(theta(t),k)$ is a nested trigonometric function (e.g. $tan(sin(t))$) so as far as I know, it has no closed form of antiderivative. Therefore, I am only able to use numerical integration.
– lyhuehue01
Nov 25 at 3:13
Then, in such a situation, the inescapable approach is the numerical one.
– Jon
Nov 25 at 13:27
|
show 1 more comment
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have a nonlinear differential equation as follows
begin{align}
ddot{x}(t) = f(theta(t),k),
end{align}
where $f$ is a function of the time variable $t in mathbb{R}^{+}$, $k in mathbb{R}$ is the designed parameter, and $theta(t)$ is a known function of time. The function $theta(t)$ only depends on time and it is a quite complicated so I cannot integrate to find $x(t)$ and $dot{x}(t)$ analytically.
My task is: compute the parameter $k$ such that following initial/terminal conditions should be met as good as possible:
begin{align}
x(0) = 0, quad dot{x}(0) = 0, quad x(t_{f}) = bar{x},
end{align}
where the terminal time $t_{f}$ and the value of $bar{x}$ are both known.
My question is: is there any elegant way to solve such problem?
My current idea: I will formulate an optimization problem as below:
begin{align}
&min quad J = x^{2}(0) + dot{x}^{2}(0) + [x(t_{f}) - bar{x}]^2 \
& quad {k}
end{align}
Then I will use a nonlinear programmer to solve. But I think it is a bit brute to solve in that way.
I appreciate any suggestion. Thank you!
differential-equations optimization nonlinear-system
I have a nonlinear differential equation as follows
begin{align}
ddot{x}(t) = f(theta(t),k),
end{align}
where $f$ is a function of the time variable $t in mathbb{R}^{+}$, $k in mathbb{R}$ is the designed parameter, and $theta(t)$ is a known function of time. The function $theta(t)$ only depends on time and it is a quite complicated so I cannot integrate to find $x(t)$ and $dot{x}(t)$ analytically.
My task is: compute the parameter $k$ such that following initial/terminal conditions should be met as good as possible:
begin{align}
x(0) = 0, quad dot{x}(0) = 0, quad x(t_{f}) = bar{x},
end{align}
where the terminal time $t_{f}$ and the value of $bar{x}$ are both known.
My question is: is there any elegant way to solve such problem?
My current idea: I will formulate an optimization problem as below:
begin{align}
&min quad J = x^{2}(0) + dot{x}^{2}(0) + [x(t_{f}) - bar{x}]^2 \
& quad {k}
end{align}
Then I will use a nonlinear programmer to solve. But I think it is a bit brute to solve in that way.
I appreciate any suggestion. Thank you!
differential-equations optimization nonlinear-system
differential-equations optimization nonlinear-system
asked Nov 22 at 16:10
lyhuehue01
133
133
This ode is linear but non-homogeneous.
– Jon
Nov 22 at 16:26
Thanks a lot @Jon! I figured out that it is not possible to obtain an analytical solution for $x(t)$ and $dot{x}(t)$, and formulating an optimization problem for this task is not a good idea as well. However, I can separate the parameter $k$ such that $ddot{x}(t) = L(theta(t)) + kR(theta(t))$, then using numerical integration to impose the given initial and terminal conditions.
– lyhuehue01
Nov 23 at 7:06
as you have written the equation, the solution is $x(t)=x(0)+{dot x}(o)t+int_0^tdt'int_0^{t'}dt''f(theta(t''),k)$. This has a closed form or not depending the known functions $f$ and $theta$.
– Jon
Nov 23 at 7:36
Yes, that's right. In my case, $f(theta(t),k)$ is a nested trigonometric function (e.g. $tan(sin(t))$) so as far as I know, it has no closed form of antiderivative. Therefore, I am only able to use numerical integration.
– lyhuehue01
Nov 25 at 3:13
Then, in such a situation, the inescapable approach is the numerical one.
– Jon
Nov 25 at 13:27
|
show 1 more comment
This ode is linear but non-homogeneous.
– Jon
Nov 22 at 16:26
Thanks a lot @Jon! I figured out that it is not possible to obtain an analytical solution for $x(t)$ and $dot{x}(t)$, and formulating an optimization problem for this task is not a good idea as well. However, I can separate the parameter $k$ such that $ddot{x}(t) = L(theta(t)) + kR(theta(t))$, then using numerical integration to impose the given initial and terminal conditions.
– lyhuehue01
Nov 23 at 7:06
as you have written the equation, the solution is $x(t)=x(0)+{dot x}(o)t+int_0^tdt'int_0^{t'}dt''f(theta(t''),k)$. This has a closed form or not depending the known functions $f$ and $theta$.
– Jon
Nov 23 at 7:36
Yes, that's right. In my case, $f(theta(t),k)$ is a nested trigonometric function (e.g. $tan(sin(t))$) so as far as I know, it has no closed form of antiderivative. Therefore, I am only able to use numerical integration.
– lyhuehue01
Nov 25 at 3:13
Then, in such a situation, the inescapable approach is the numerical one.
– Jon
Nov 25 at 13:27
This ode is linear but non-homogeneous.
– Jon
Nov 22 at 16:26
This ode is linear but non-homogeneous.
– Jon
Nov 22 at 16:26
Thanks a lot @Jon! I figured out that it is not possible to obtain an analytical solution for $x(t)$ and $dot{x}(t)$, and formulating an optimization problem for this task is not a good idea as well. However, I can separate the parameter $k$ such that $ddot{x}(t) = L(theta(t)) + kR(theta(t))$, then using numerical integration to impose the given initial and terminal conditions.
– lyhuehue01
Nov 23 at 7:06
Thanks a lot @Jon! I figured out that it is not possible to obtain an analytical solution for $x(t)$ and $dot{x}(t)$, and formulating an optimization problem for this task is not a good idea as well. However, I can separate the parameter $k$ such that $ddot{x}(t) = L(theta(t)) + kR(theta(t))$, then using numerical integration to impose the given initial and terminal conditions.
– lyhuehue01
Nov 23 at 7:06
as you have written the equation, the solution is $x(t)=x(0)+{dot x}(o)t+int_0^tdt'int_0^{t'}dt''f(theta(t''),k)$. This has a closed form or not depending the known functions $f$ and $theta$.
– Jon
Nov 23 at 7:36
as you have written the equation, the solution is $x(t)=x(0)+{dot x}(o)t+int_0^tdt'int_0^{t'}dt''f(theta(t''),k)$. This has a closed form or not depending the known functions $f$ and $theta$.
– Jon
Nov 23 at 7:36
Yes, that's right. In my case, $f(theta(t),k)$ is a nested trigonometric function (e.g. $tan(sin(t))$) so as far as I know, it has no closed form of antiderivative. Therefore, I am only able to use numerical integration.
– lyhuehue01
Nov 25 at 3:13
Yes, that's right. In my case, $f(theta(t),k)$ is a nested trigonometric function (e.g. $tan(sin(t))$) so as far as I know, it has no closed form of antiderivative. Therefore, I am only able to use numerical integration.
– lyhuehue01
Nov 25 at 3:13
Then, in such a situation, the inescapable approach is the numerical one.
– Jon
Nov 25 at 13:27
Then, in such a situation, the inescapable approach is the numerical one.
– Jon
Nov 25 at 13:27
|
show 1 more comment
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',
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%2f3009305%2fdesign-a-parameter-k-for-a-second-order-ode-ddotxt-ft-k-subjected-t%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f3009305%2fdesign-a-parameter-k-for-a-second-order-ode-ddotxt-ft-k-subjected-t%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
This ode is linear but non-homogeneous.
– Jon
Nov 22 at 16:26
Thanks a lot @Jon! I figured out that it is not possible to obtain an analytical solution for $x(t)$ and $dot{x}(t)$, and formulating an optimization problem for this task is not a good idea as well. However, I can separate the parameter $k$ such that $ddot{x}(t) = L(theta(t)) + kR(theta(t))$, then using numerical integration to impose the given initial and terminal conditions.
– lyhuehue01
Nov 23 at 7:06
as you have written the equation, the solution is $x(t)=x(0)+{dot x}(o)t+int_0^tdt'int_0^{t'}dt''f(theta(t''),k)$. This has a closed form or not depending the known functions $f$ and $theta$.
– Jon
Nov 23 at 7:36
Yes, that's right. In my case, $f(theta(t),k)$ is a nested trigonometric function (e.g. $tan(sin(t))$) so as far as I know, it has no closed form of antiderivative. Therefore, I am only able to use numerical integration.
– lyhuehue01
Nov 25 at 3:13
Then, in such a situation, the inescapable approach is the numerical one.
– Jon
Nov 25 at 13:27