Displacement Equation in a Vector Field
$begingroup$
While building a program for a college level Physics course, I have a vector field representing force such that $vec F = F_x(x,y) hat{i} +F_y(x,y) hat{j}$. I am asked to create a program which shows the path of a mass $m$ with an initial velocity vector ($vec v_o$) and position vector ($vec x_o$) under the influence of the field.
My solution is to make the following steps:
$vec F = mfrac{partial^2vec x}{partial t^2}$ and as such $frac{vec F}{m} = frac{partial^2vec x}{partial t^2}$
By integration of each side, I find that the path would be
$vec x = frac{vec F Delta t^2}{2m} +vec v_o Delta t +vec x_o$ Which is the same as the typical displacement equation.
My question is as follows; Is this intuitive use of calculus correct considering that $vec F$ is position dependent, and thus time-dependent as well?
calculus vector-spaces physics
$endgroup$
add a comment |
$begingroup$
While building a program for a college level Physics course, I have a vector field representing force such that $vec F = F_x(x,y) hat{i} +F_y(x,y) hat{j}$. I am asked to create a program which shows the path of a mass $m$ with an initial velocity vector ($vec v_o$) and position vector ($vec x_o$) under the influence of the field.
My solution is to make the following steps:
$vec F = mfrac{partial^2vec x}{partial t^2}$ and as such $frac{vec F}{m} = frac{partial^2vec x}{partial t^2}$
By integration of each side, I find that the path would be
$vec x = frac{vec F Delta t^2}{2m} +vec v_o Delta t +vec x_o$ Which is the same as the typical displacement equation.
My question is as follows; Is this intuitive use of calculus correct considering that $vec F$ is position dependent, and thus time-dependent as well?
calculus vector-spaces physics
$endgroup$
$begingroup$
Are $F_x$ and $F_y$ constants?
$endgroup$
– Botond
Dec 7 '18 at 15:33
$begingroup$
@Botond, No, $vec F = F_x(x,y) hat{i} + F_y(x,y) hat{j}$
$endgroup$
– BooleanDesigns
Dec 7 '18 at 15:35
add a comment |
$begingroup$
While building a program for a college level Physics course, I have a vector field representing force such that $vec F = F_x(x,y) hat{i} +F_y(x,y) hat{j}$. I am asked to create a program which shows the path of a mass $m$ with an initial velocity vector ($vec v_o$) and position vector ($vec x_o$) under the influence of the field.
My solution is to make the following steps:
$vec F = mfrac{partial^2vec x}{partial t^2}$ and as such $frac{vec F}{m} = frac{partial^2vec x}{partial t^2}$
By integration of each side, I find that the path would be
$vec x = frac{vec F Delta t^2}{2m} +vec v_o Delta t +vec x_o$ Which is the same as the typical displacement equation.
My question is as follows; Is this intuitive use of calculus correct considering that $vec F$ is position dependent, and thus time-dependent as well?
calculus vector-spaces physics
$endgroup$
While building a program for a college level Physics course, I have a vector field representing force such that $vec F = F_x(x,y) hat{i} +F_y(x,y) hat{j}$. I am asked to create a program which shows the path of a mass $m$ with an initial velocity vector ($vec v_o$) and position vector ($vec x_o$) under the influence of the field.
My solution is to make the following steps:
$vec F = mfrac{partial^2vec x}{partial t^2}$ and as such $frac{vec F}{m} = frac{partial^2vec x}{partial t^2}$
By integration of each side, I find that the path would be
$vec x = frac{vec F Delta t^2}{2m} +vec v_o Delta t +vec x_o$ Which is the same as the typical displacement equation.
My question is as follows; Is this intuitive use of calculus correct considering that $vec F$ is position dependent, and thus time-dependent as well?
calculus vector-spaces physics
calculus vector-spaces physics
edited Dec 7 '18 at 15:36
BooleanDesigns
asked Dec 7 '18 at 15:31
BooleanDesignsBooleanDesigns
84
84
$begingroup$
Are $F_x$ and $F_y$ constants?
$endgroup$
– Botond
Dec 7 '18 at 15:33
$begingroup$
@Botond, No, $vec F = F_x(x,y) hat{i} + F_y(x,y) hat{j}$
$endgroup$
– BooleanDesigns
Dec 7 '18 at 15:35
add a comment |
$begingroup$
Are $F_x$ and $F_y$ constants?
$endgroup$
– Botond
Dec 7 '18 at 15:33
$begingroup$
@Botond, No, $vec F = F_x(x,y) hat{i} + F_y(x,y) hat{j}$
$endgroup$
– BooleanDesigns
Dec 7 '18 at 15:35
$begingroup$
Are $F_x$ and $F_y$ constants?
$endgroup$
– Botond
Dec 7 '18 at 15:33
$begingroup$
Are $F_x$ and $F_y$ constants?
$endgroup$
– Botond
Dec 7 '18 at 15:33
$begingroup$
@Botond, No, $vec F = F_x(x,y) hat{i} + F_y(x,y) hat{j}$
$endgroup$
– BooleanDesigns
Dec 7 '18 at 15:35
$begingroup$
@Botond, No, $vec F = F_x(x,y) hat{i} + F_y(x,y) hat{j}$
$endgroup$
– BooleanDesigns
Dec 7 '18 at 15:35
add a comment |
2 Answers
2
active
oldest
votes
$begingroup$
Note that Newton's equation is not
$$vec{F}=m frac{partial^2 vec{r}}{partial t^2}$$
But
$$vec{F}=m frac{mathrm{d}^2 vec{r}}{mathrm{d}t^2}$$
So you have two equations:
$$F_x(x(t),y(t))=m ddot{x}$$
$$F_y(x(t),y(t))=m ddot{y}$$
So your solution is not correct, because you are treating $F$ as a constant.
$endgroup$
$begingroup$
From a numeric standpoint (i.e. computation) If I use my solution over an iteration algorithm (Euler's Method for example), would it still yield the same curve as the parametric solution to the system of equations that would be derived from your solutions?
$endgroup$
– BooleanDesigns
Dec 7 '18 at 15:46
$begingroup$
@BooleanDesigns It won't, of couse. But for a nice $F$ and small $Delta t$s, it will be quite close to that.
$endgroup$
– Botond
Dec 7 '18 at 15:51
$begingroup$
After some revisions to the method I was using originally, I've decided to run Euler's Method to estimate the correct curves in the following way: Given that there is some $vec F_x$ and some $vec F_y$ for all points in the field, It would follow that $ddot{x} = frac{vec F_x}{m}$ and the same would be true for $y$. From this, $dot{x} = frac{vec F_x Delta t}{m} + dot{x_0}$. As such, the estimates should show that for some $Delta t$, the estimates should be $x=frac{vec F_x Delta t^2}{m} + vec v_xo Delta t + x_o$ and the same should apply to $y$. Is this a correct method?
$endgroup$
– BooleanDesigns
Dec 8 '18 at 22:05
$begingroup$
@BooleanDesigns My homework was quite similar to yours, so I will tell you what did I do. I "separeted" the second order differential equations (Is it the correct word?) into first order differential equations: $dot{x}=v_x$, $dot{v_x}=f_x$, and so on. Then, I made a function, with the initial conditions as the input, which did something like this with every equation: $x=x_0+v_{x0}*dt$, $v=v_0+f(x)*dt$ and iterated it: It called itself, with the new values as initial values. Is it understandable?
$endgroup$
– Botond
Dec 8 '18 at 23:09
$begingroup$
Upon implementing your new method, they appear to be the same (or at least very close) for about 98% of cases, but in extremely complex configurations, my algorithm yields slight variation. As to why my method is not equivalent, I'm not quite sure yet; but your method is definitely the correct one, so thank you.
$endgroup$
– BooleanDesigns
Dec 9 '18 at 18:09
add a comment |
$begingroup$
Your approach is close to the explicit Euler method. You can also have a look at other numerical methods for ordinary differential equations. Some of them are beneficial if your problem has a particular structure, for instance it is Hamiltonian; in that case symplectic integrators might be preferred.
$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%2f3030014%2fdisplacement-equation-in-a-vector-field%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$
Note that Newton's equation is not
$$vec{F}=m frac{partial^2 vec{r}}{partial t^2}$$
But
$$vec{F}=m frac{mathrm{d}^2 vec{r}}{mathrm{d}t^2}$$
So you have two equations:
$$F_x(x(t),y(t))=m ddot{x}$$
$$F_y(x(t),y(t))=m ddot{y}$$
So your solution is not correct, because you are treating $F$ as a constant.
$endgroup$
$begingroup$
From a numeric standpoint (i.e. computation) If I use my solution over an iteration algorithm (Euler's Method for example), would it still yield the same curve as the parametric solution to the system of equations that would be derived from your solutions?
$endgroup$
– BooleanDesigns
Dec 7 '18 at 15:46
$begingroup$
@BooleanDesigns It won't, of couse. But for a nice $F$ and small $Delta t$s, it will be quite close to that.
$endgroup$
– Botond
Dec 7 '18 at 15:51
$begingroup$
After some revisions to the method I was using originally, I've decided to run Euler's Method to estimate the correct curves in the following way: Given that there is some $vec F_x$ and some $vec F_y$ for all points in the field, It would follow that $ddot{x} = frac{vec F_x}{m}$ and the same would be true for $y$. From this, $dot{x} = frac{vec F_x Delta t}{m} + dot{x_0}$. As such, the estimates should show that for some $Delta t$, the estimates should be $x=frac{vec F_x Delta t^2}{m} + vec v_xo Delta t + x_o$ and the same should apply to $y$. Is this a correct method?
$endgroup$
– BooleanDesigns
Dec 8 '18 at 22:05
$begingroup$
@BooleanDesigns My homework was quite similar to yours, so I will tell you what did I do. I "separeted" the second order differential equations (Is it the correct word?) into first order differential equations: $dot{x}=v_x$, $dot{v_x}=f_x$, and so on. Then, I made a function, with the initial conditions as the input, which did something like this with every equation: $x=x_0+v_{x0}*dt$, $v=v_0+f(x)*dt$ and iterated it: It called itself, with the new values as initial values. Is it understandable?
$endgroup$
– Botond
Dec 8 '18 at 23:09
$begingroup$
Upon implementing your new method, they appear to be the same (or at least very close) for about 98% of cases, but in extremely complex configurations, my algorithm yields slight variation. As to why my method is not equivalent, I'm not quite sure yet; but your method is definitely the correct one, so thank you.
$endgroup$
– BooleanDesigns
Dec 9 '18 at 18:09
add a comment |
$begingroup$
Note that Newton's equation is not
$$vec{F}=m frac{partial^2 vec{r}}{partial t^2}$$
But
$$vec{F}=m frac{mathrm{d}^2 vec{r}}{mathrm{d}t^2}$$
So you have two equations:
$$F_x(x(t),y(t))=m ddot{x}$$
$$F_y(x(t),y(t))=m ddot{y}$$
So your solution is not correct, because you are treating $F$ as a constant.
$endgroup$
$begingroup$
From a numeric standpoint (i.e. computation) If I use my solution over an iteration algorithm (Euler's Method for example), would it still yield the same curve as the parametric solution to the system of equations that would be derived from your solutions?
$endgroup$
– BooleanDesigns
Dec 7 '18 at 15:46
$begingroup$
@BooleanDesigns It won't, of couse. But for a nice $F$ and small $Delta t$s, it will be quite close to that.
$endgroup$
– Botond
Dec 7 '18 at 15:51
$begingroup$
After some revisions to the method I was using originally, I've decided to run Euler's Method to estimate the correct curves in the following way: Given that there is some $vec F_x$ and some $vec F_y$ for all points in the field, It would follow that $ddot{x} = frac{vec F_x}{m}$ and the same would be true for $y$. From this, $dot{x} = frac{vec F_x Delta t}{m} + dot{x_0}$. As such, the estimates should show that for some $Delta t$, the estimates should be $x=frac{vec F_x Delta t^2}{m} + vec v_xo Delta t + x_o$ and the same should apply to $y$. Is this a correct method?
$endgroup$
– BooleanDesigns
Dec 8 '18 at 22:05
$begingroup$
@BooleanDesigns My homework was quite similar to yours, so I will tell you what did I do. I "separeted" the second order differential equations (Is it the correct word?) into first order differential equations: $dot{x}=v_x$, $dot{v_x}=f_x$, and so on. Then, I made a function, with the initial conditions as the input, which did something like this with every equation: $x=x_0+v_{x0}*dt$, $v=v_0+f(x)*dt$ and iterated it: It called itself, with the new values as initial values. Is it understandable?
$endgroup$
– Botond
Dec 8 '18 at 23:09
$begingroup$
Upon implementing your new method, they appear to be the same (or at least very close) for about 98% of cases, but in extremely complex configurations, my algorithm yields slight variation. As to why my method is not equivalent, I'm not quite sure yet; but your method is definitely the correct one, so thank you.
$endgroup$
– BooleanDesigns
Dec 9 '18 at 18:09
add a comment |
$begingroup$
Note that Newton's equation is not
$$vec{F}=m frac{partial^2 vec{r}}{partial t^2}$$
But
$$vec{F}=m frac{mathrm{d}^2 vec{r}}{mathrm{d}t^2}$$
So you have two equations:
$$F_x(x(t),y(t))=m ddot{x}$$
$$F_y(x(t),y(t))=m ddot{y}$$
So your solution is not correct, because you are treating $F$ as a constant.
$endgroup$
Note that Newton's equation is not
$$vec{F}=m frac{partial^2 vec{r}}{partial t^2}$$
But
$$vec{F}=m frac{mathrm{d}^2 vec{r}}{mathrm{d}t^2}$$
So you have two equations:
$$F_x(x(t),y(t))=m ddot{x}$$
$$F_y(x(t),y(t))=m ddot{y}$$
So your solution is not correct, because you are treating $F$ as a constant.
answered Dec 7 '18 at 15:44
BotondBotond
5,7782732
5,7782732
$begingroup$
From a numeric standpoint (i.e. computation) If I use my solution over an iteration algorithm (Euler's Method for example), would it still yield the same curve as the parametric solution to the system of equations that would be derived from your solutions?
$endgroup$
– BooleanDesigns
Dec 7 '18 at 15:46
$begingroup$
@BooleanDesigns It won't, of couse. But for a nice $F$ and small $Delta t$s, it will be quite close to that.
$endgroup$
– Botond
Dec 7 '18 at 15:51
$begingroup$
After some revisions to the method I was using originally, I've decided to run Euler's Method to estimate the correct curves in the following way: Given that there is some $vec F_x$ and some $vec F_y$ for all points in the field, It would follow that $ddot{x} = frac{vec F_x}{m}$ and the same would be true for $y$. From this, $dot{x} = frac{vec F_x Delta t}{m} + dot{x_0}$. As such, the estimates should show that for some $Delta t$, the estimates should be $x=frac{vec F_x Delta t^2}{m} + vec v_xo Delta t + x_o$ and the same should apply to $y$. Is this a correct method?
$endgroup$
– BooleanDesigns
Dec 8 '18 at 22:05
$begingroup$
@BooleanDesigns My homework was quite similar to yours, so I will tell you what did I do. I "separeted" the second order differential equations (Is it the correct word?) into first order differential equations: $dot{x}=v_x$, $dot{v_x}=f_x$, and so on. Then, I made a function, with the initial conditions as the input, which did something like this with every equation: $x=x_0+v_{x0}*dt$, $v=v_0+f(x)*dt$ and iterated it: It called itself, with the new values as initial values. Is it understandable?
$endgroup$
– Botond
Dec 8 '18 at 23:09
$begingroup$
Upon implementing your new method, they appear to be the same (or at least very close) for about 98% of cases, but in extremely complex configurations, my algorithm yields slight variation. As to why my method is not equivalent, I'm not quite sure yet; but your method is definitely the correct one, so thank you.
$endgroup$
– BooleanDesigns
Dec 9 '18 at 18:09
add a comment |
$begingroup$
From a numeric standpoint (i.e. computation) If I use my solution over an iteration algorithm (Euler's Method for example), would it still yield the same curve as the parametric solution to the system of equations that would be derived from your solutions?
$endgroup$
– BooleanDesigns
Dec 7 '18 at 15:46
$begingroup$
@BooleanDesigns It won't, of couse. But for a nice $F$ and small $Delta t$s, it will be quite close to that.
$endgroup$
– Botond
Dec 7 '18 at 15:51
$begingroup$
After some revisions to the method I was using originally, I've decided to run Euler's Method to estimate the correct curves in the following way: Given that there is some $vec F_x$ and some $vec F_y$ for all points in the field, It would follow that $ddot{x} = frac{vec F_x}{m}$ and the same would be true for $y$. From this, $dot{x} = frac{vec F_x Delta t}{m} + dot{x_0}$. As such, the estimates should show that for some $Delta t$, the estimates should be $x=frac{vec F_x Delta t^2}{m} + vec v_xo Delta t + x_o$ and the same should apply to $y$. Is this a correct method?
$endgroup$
– BooleanDesigns
Dec 8 '18 at 22:05
$begingroup$
@BooleanDesigns My homework was quite similar to yours, so I will tell you what did I do. I "separeted" the second order differential equations (Is it the correct word?) into first order differential equations: $dot{x}=v_x$, $dot{v_x}=f_x$, and so on. Then, I made a function, with the initial conditions as the input, which did something like this with every equation: $x=x_0+v_{x0}*dt$, $v=v_0+f(x)*dt$ and iterated it: It called itself, with the new values as initial values. Is it understandable?
$endgroup$
– Botond
Dec 8 '18 at 23:09
$begingroup$
Upon implementing your new method, they appear to be the same (or at least very close) for about 98% of cases, but in extremely complex configurations, my algorithm yields slight variation. As to why my method is not equivalent, I'm not quite sure yet; but your method is definitely the correct one, so thank you.
$endgroup$
– BooleanDesigns
Dec 9 '18 at 18:09
$begingroup$
From a numeric standpoint (i.e. computation) If I use my solution over an iteration algorithm (Euler's Method for example), would it still yield the same curve as the parametric solution to the system of equations that would be derived from your solutions?
$endgroup$
– BooleanDesigns
Dec 7 '18 at 15:46
$begingroup$
From a numeric standpoint (i.e. computation) If I use my solution over an iteration algorithm (Euler's Method for example), would it still yield the same curve as the parametric solution to the system of equations that would be derived from your solutions?
$endgroup$
– BooleanDesigns
Dec 7 '18 at 15:46
$begingroup$
@BooleanDesigns It won't, of couse. But for a nice $F$ and small $Delta t$s, it will be quite close to that.
$endgroup$
– Botond
Dec 7 '18 at 15:51
$begingroup$
@BooleanDesigns It won't, of couse. But for a nice $F$ and small $Delta t$s, it will be quite close to that.
$endgroup$
– Botond
Dec 7 '18 at 15:51
$begingroup$
After some revisions to the method I was using originally, I've decided to run Euler's Method to estimate the correct curves in the following way: Given that there is some $vec F_x$ and some $vec F_y$ for all points in the field, It would follow that $ddot{x} = frac{vec F_x}{m}$ and the same would be true for $y$. From this, $dot{x} = frac{vec F_x Delta t}{m} + dot{x_0}$. As such, the estimates should show that for some $Delta t$, the estimates should be $x=frac{vec F_x Delta t^2}{m} + vec v_xo Delta t + x_o$ and the same should apply to $y$. Is this a correct method?
$endgroup$
– BooleanDesigns
Dec 8 '18 at 22:05
$begingroup$
After some revisions to the method I was using originally, I've decided to run Euler's Method to estimate the correct curves in the following way: Given that there is some $vec F_x$ and some $vec F_y$ for all points in the field, It would follow that $ddot{x} = frac{vec F_x}{m}$ and the same would be true for $y$. From this, $dot{x} = frac{vec F_x Delta t}{m} + dot{x_0}$. As such, the estimates should show that for some $Delta t$, the estimates should be $x=frac{vec F_x Delta t^2}{m} + vec v_xo Delta t + x_o$ and the same should apply to $y$. Is this a correct method?
$endgroup$
– BooleanDesigns
Dec 8 '18 at 22:05
$begingroup$
@BooleanDesigns My homework was quite similar to yours, so I will tell you what did I do. I "separeted" the second order differential equations (Is it the correct word?) into first order differential equations: $dot{x}=v_x$, $dot{v_x}=f_x$, and so on. Then, I made a function, with the initial conditions as the input, which did something like this with every equation: $x=x_0+v_{x0}*dt$, $v=v_0+f(x)*dt$ and iterated it: It called itself, with the new values as initial values. Is it understandable?
$endgroup$
– Botond
Dec 8 '18 at 23:09
$begingroup$
@BooleanDesigns My homework was quite similar to yours, so I will tell you what did I do. I "separeted" the second order differential equations (Is it the correct word?) into first order differential equations: $dot{x}=v_x$, $dot{v_x}=f_x$, and so on. Then, I made a function, with the initial conditions as the input, which did something like this with every equation: $x=x_0+v_{x0}*dt$, $v=v_0+f(x)*dt$ and iterated it: It called itself, with the new values as initial values. Is it understandable?
$endgroup$
– Botond
Dec 8 '18 at 23:09
$begingroup$
Upon implementing your new method, they appear to be the same (or at least very close) for about 98% of cases, but in extremely complex configurations, my algorithm yields slight variation. As to why my method is not equivalent, I'm not quite sure yet; but your method is definitely the correct one, so thank you.
$endgroup$
– BooleanDesigns
Dec 9 '18 at 18:09
$begingroup$
Upon implementing your new method, they appear to be the same (or at least very close) for about 98% of cases, but in extremely complex configurations, my algorithm yields slight variation. As to why my method is not equivalent, I'm not quite sure yet; but your method is definitely the correct one, so thank you.
$endgroup$
– BooleanDesigns
Dec 9 '18 at 18:09
add a comment |
$begingroup$
Your approach is close to the explicit Euler method. You can also have a look at other numerical methods for ordinary differential equations. Some of them are beneficial if your problem has a particular structure, for instance it is Hamiltonian; in that case symplectic integrators might be preferred.
$endgroup$
add a comment |
$begingroup$
Your approach is close to the explicit Euler method. You can also have a look at other numerical methods for ordinary differential equations. Some of them are beneficial if your problem has a particular structure, for instance it is Hamiltonian; in that case symplectic integrators might be preferred.
$endgroup$
add a comment |
$begingroup$
Your approach is close to the explicit Euler method. You can also have a look at other numerical methods for ordinary differential equations. Some of them are beneficial if your problem has a particular structure, for instance it is Hamiltonian; in that case symplectic integrators might be preferred.
$endgroup$
Your approach is close to the explicit Euler method. You can also have a look at other numerical methods for ordinary differential equations. Some of them are beneficial if your problem has a particular structure, for instance it is Hamiltonian; in that case symplectic integrators might be preferred.
answered Dec 7 '18 at 15:40
FedericoFederico
5,034514
5,034514
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%2f3030014%2fdisplacement-equation-in-a-vector-field%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
$begingroup$
Are $F_x$ and $F_y$ constants?
$endgroup$
– Botond
Dec 7 '18 at 15:33
$begingroup$
@Botond, No, $vec F = F_x(x,y) hat{i} + F_y(x,y) hat{j}$
$endgroup$
– BooleanDesigns
Dec 7 '18 at 15:35