find coefficients of a numerical integration formula
$begingroup$
we have this formula for calculating integral
$int_{0}^{h} xf(x) dx = (h)^2 [A_0 f(0) + A_1f(h) + A_2f(2h)] + R \$
the goal is to find $A_0,A_1, A_2$ and $R$, when $f^{primeprimeprime}$ is constant.
I tried to get to this formula by taking integral of Taylor Expansion of $xf(x)$ but it didn't work, or I messed up in it.
integration numerical-methods
$endgroup$
add a comment |
$begingroup$
we have this formula for calculating integral
$int_{0}^{h} xf(x) dx = (h)^2 [A_0 f(0) + A_1f(h) + A_2f(2h)] + R \$
the goal is to find $A_0,A_1, A_2$ and $R$, when $f^{primeprimeprime}$ is constant.
I tried to get to this formula by taking integral of Taylor Expansion of $xf(x)$ but it didn't work, or I messed up in it.
integration numerical-methods
$endgroup$
add a comment |
$begingroup$
we have this formula for calculating integral
$int_{0}^{h} xf(x) dx = (h)^2 [A_0 f(0) + A_1f(h) + A_2f(2h)] + R \$
the goal is to find $A_0,A_1, A_2$ and $R$, when $f^{primeprimeprime}$ is constant.
I tried to get to this formula by taking integral of Taylor Expansion of $xf(x)$ but it didn't work, or I messed up in it.
integration numerical-methods
$endgroup$
we have this formula for calculating integral
$int_{0}^{h} xf(x) dx = (h)^2 [A_0 f(0) + A_1f(h) + A_2f(2h)] + R \$
the goal is to find $A_0,A_1, A_2$ and $R$, when $f^{primeprimeprime}$ is constant.
I tried to get to this formula by taking integral of Taylor Expansion of $xf(x)$ but it didn't work, or I messed up in it.
integration numerical-methods
integration numerical-methods
asked Jan 8 at 16:47
SajadSajad
103
103
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
$begingroup$
The third derivative $f$ being constant means that $f$ is a cubic, so let $f(x)=ax^3+b^2x+cx+d$. Plug that into your equation. The result needs to be true for all $a,b,c,d$. You will get simultaneous equations for $A_0,A_1,A_2$. Note that $f(x)=0$ tells us that $R=0$. It will fail because you have four equations in three unknowns.
$endgroup$
$begingroup$
so it's ok that for R to be 0? cause I did this too but I thought it's wrong :))
$endgroup$
– Sajad
Jan 8 at 16:58
$begingroup$
Yes, $R$ has to be $0$. If it weren't, you could let $h$ go to zero and have the left be very small, smaller than $R$. Some of the $A$s are $0$ in formulas like this as well. There is no solution to the problem as stated. You need one more point and one more $A$ on the right to make it work, or to demand that $f''(x)$ is constant so you only have a quadratic.
$endgroup$
– Ross Millikan
Jan 8 at 17:01
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%2f3066418%2ffind-coefficients-of-a-numerical-integration-formula%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
The third derivative $f$ being constant means that $f$ is a cubic, so let $f(x)=ax^3+b^2x+cx+d$. Plug that into your equation. The result needs to be true for all $a,b,c,d$. You will get simultaneous equations for $A_0,A_1,A_2$. Note that $f(x)=0$ tells us that $R=0$. It will fail because you have four equations in three unknowns.
$endgroup$
$begingroup$
so it's ok that for R to be 0? cause I did this too but I thought it's wrong :))
$endgroup$
– Sajad
Jan 8 at 16:58
$begingroup$
Yes, $R$ has to be $0$. If it weren't, you could let $h$ go to zero and have the left be very small, smaller than $R$. Some of the $A$s are $0$ in formulas like this as well. There is no solution to the problem as stated. You need one more point and one more $A$ on the right to make it work, or to demand that $f''(x)$ is constant so you only have a quadratic.
$endgroup$
– Ross Millikan
Jan 8 at 17:01
add a comment |
$begingroup$
The third derivative $f$ being constant means that $f$ is a cubic, so let $f(x)=ax^3+b^2x+cx+d$. Plug that into your equation. The result needs to be true for all $a,b,c,d$. You will get simultaneous equations for $A_0,A_1,A_2$. Note that $f(x)=0$ tells us that $R=0$. It will fail because you have four equations in three unknowns.
$endgroup$
$begingroup$
so it's ok that for R to be 0? cause I did this too but I thought it's wrong :))
$endgroup$
– Sajad
Jan 8 at 16:58
$begingroup$
Yes, $R$ has to be $0$. If it weren't, you could let $h$ go to zero and have the left be very small, smaller than $R$. Some of the $A$s are $0$ in formulas like this as well. There is no solution to the problem as stated. You need one more point and one more $A$ on the right to make it work, or to demand that $f''(x)$ is constant so you only have a quadratic.
$endgroup$
– Ross Millikan
Jan 8 at 17:01
add a comment |
$begingroup$
The third derivative $f$ being constant means that $f$ is a cubic, so let $f(x)=ax^3+b^2x+cx+d$. Plug that into your equation. The result needs to be true for all $a,b,c,d$. You will get simultaneous equations for $A_0,A_1,A_2$. Note that $f(x)=0$ tells us that $R=0$. It will fail because you have four equations in three unknowns.
$endgroup$
The third derivative $f$ being constant means that $f$ is a cubic, so let $f(x)=ax^3+b^2x+cx+d$. Plug that into your equation. The result needs to be true for all $a,b,c,d$. You will get simultaneous equations for $A_0,A_1,A_2$. Note that $f(x)=0$ tells us that $R=0$. It will fail because you have four equations in three unknowns.
edited Jan 8 at 17:01
answered Jan 8 at 16:53
Ross MillikanRoss Millikan
297k23198371
297k23198371
$begingroup$
so it's ok that for R to be 0? cause I did this too but I thought it's wrong :))
$endgroup$
– Sajad
Jan 8 at 16:58
$begingroup$
Yes, $R$ has to be $0$. If it weren't, you could let $h$ go to zero and have the left be very small, smaller than $R$. Some of the $A$s are $0$ in formulas like this as well. There is no solution to the problem as stated. You need one more point and one more $A$ on the right to make it work, or to demand that $f''(x)$ is constant so you only have a quadratic.
$endgroup$
– Ross Millikan
Jan 8 at 17:01
add a comment |
$begingroup$
so it's ok that for R to be 0? cause I did this too but I thought it's wrong :))
$endgroup$
– Sajad
Jan 8 at 16:58
$begingroup$
Yes, $R$ has to be $0$. If it weren't, you could let $h$ go to zero and have the left be very small, smaller than $R$. Some of the $A$s are $0$ in formulas like this as well. There is no solution to the problem as stated. You need one more point and one more $A$ on the right to make it work, or to demand that $f''(x)$ is constant so you only have a quadratic.
$endgroup$
– Ross Millikan
Jan 8 at 17:01
$begingroup$
so it's ok that for R to be 0? cause I did this too but I thought it's wrong :))
$endgroup$
– Sajad
Jan 8 at 16:58
$begingroup$
so it's ok that for R to be 0? cause I did this too but I thought it's wrong :))
$endgroup$
– Sajad
Jan 8 at 16:58
$begingroup$
Yes, $R$ has to be $0$. If it weren't, you could let $h$ go to zero and have the left be very small, smaller than $R$. Some of the $A$s are $0$ in formulas like this as well. There is no solution to the problem as stated. You need one more point and one more $A$ on the right to make it work, or to demand that $f''(x)$ is constant so you only have a quadratic.
$endgroup$
– Ross Millikan
Jan 8 at 17:01
$begingroup$
Yes, $R$ has to be $0$. If it weren't, you could let $h$ go to zero and have the left be very small, smaller than $R$. Some of the $A$s are $0$ in formulas like this as well. There is no solution to the problem as stated. You need one more point and one more $A$ on the right to make it work, or to demand that $f''(x)$ is constant so you only have a quadratic.
$endgroup$
– Ross Millikan
Jan 8 at 17:01
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%2f3066418%2ffind-coefficients-of-a-numerical-integration-formula%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