Given the equation $P(x) = x^4 + bx^2 + c$ and the points $(3,25)$ and $(1,9).$ How to find $b$ and $c$ such...
By using Desmos I've found that the values of $;b = -8;$ and $;c = 16,;$ but that doesn't really help me understand how to get those numbers.
Answer and why I got it wrong:
I've evaluated:
$ 9 = 1^4 + bcdot1^2 + c implies b = 8 - c implies c = 8 - b$
and
$ 25 = 3^4 + bcdot3^2 + c implies c = -56 - 9b $
The part which I forgot to do was to substitute the equations into each other and not the original equation. KM101 provides a more complete breakdown.
$ c = -56 - 9(8 - c) implies c = 16$
$ -9b - 56 = 8 - b implies b = -8$
polynomials
add a comment |
By using Desmos I've found that the values of $;b = -8;$ and $;c = 16,;$ but that doesn't really help me understand how to get those numbers.
Answer and why I got it wrong:
I've evaluated:
$ 9 = 1^4 + bcdot1^2 + c implies b = 8 - c implies c = 8 - b$
and
$ 25 = 3^4 + bcdot3^2 + c implies c = -56 - 9b $
The part which I forgot to do was to substitute the equations into each other and not the original equation. KM101 provides a more complete breakdown.
$ c = -56 - 9(8 - c) implies c = 16$
$ -9b - 56 = 8 - b implies b = -8$
polynomials
1
Welcome to MSE. It will be more likely that you will get an answer if you show us that you made an effort. This should be added to the question rather than in the comments.
– José Carlos Santos
Oct 7 at 5:36
Two unknowns, two equations!
– Jyrki Lahtonen
Oct 7 at 5:56
add a comment |
By using Desmos I've found that the values of $;b = -8;$ and $;c = 16,;$ but that doesn't really help me understand how to get those numbers.
Answer and why I got it wrong:
I've evaluated:
$ 9 = 1^4 + bcdot1^2 + c implies b = 8 - c implies c = 8 - b$
and
$ 25 = 3^4 + bcdot3^2 + c implies c = -56 - 9b $
The part which I forgot to do was to substitute the equations into each other and not the original equation. KM101 provides a more complete breakdown.
$ c = -56 - 9(8 - c) implies c = 16$
$ -9b - 56 = 8 - b implies b = -8$
polynomials
By using Desmos I've found that the values of $;b = -8;$ and $;c = 16,;$ but that doesn't really help me understand how to get those numbers.
Answer and why I got it wrong:
I've evaluated:
$ 9 = 1^4 + bcdot1^2 + c implies b = 8 - c implies c = 8 - b$
and
$ 25 = 3^4 + bcdot3^2 + c implies c = -56 - 9b $
The part which I forgot to do was to substitute the equations into each other and not the original equation. KM101 provides a more complete breakdown.
$ c = -56 - 9(8 - c) implies c = 16$
$ -9b - 56 = 8 - b implies b = -8$
polynomials
polynomials
edited Nov 25 at 22:47
user376343
2,7782822
2,7782822
asked Oct 7 at 5:32
SuchAndSuch
41
41
1
Welcome to MSE. It will be more likely that you will get an answer if you show us that you made an effort. This should be added to the question rather than in the comments.
– José Carlos Santos
Oct 7 at 5:36
Two unknowns, two equations!
– Jyrki Lahtonen
Oct 7 at 5:56
add a comment |
1
Welcome to MSE. It will be more likely that you will get an answer if you show us that you made an effort. This should be added to the question rather than in the comments.
– José Carlos Santos
Oct 7 at 5:36
Two unknowns, two equations!
– Jyrki Lahtonen
Oct 7 at 5:56
1
1
Welcome to MSE. It will be more likely that you will get an answer if you show us that you made an effort. This should be added to the question rather than in the comments.
– José Carlos Santos
Oct 7 at 5:36
Welcome to MSE. It will be more likely that you will get an answer if you show us that you made an effort. This should be added to the question rather than in the comments.
– José Carlos Santos
Oct 7 at 5:36
Two unknowns, two equations!
– Jyrki Lahtonen
Oct 7 at 5:56
Two unknowns, two equations!
– Jyrki Lahtonen
Oct 7 at 5:56
add a comment |
4 Answers
4
active
oldest
votes
Notice that $P(u)-P(v)=u^4-v^4+b(u^2-v^2)$. From $25-9=81-1+b(9-1)$ you’ll find $b=-8$. Now exploit $P(1)=9$, that is $1-8+c=9$ to find $c=16$.
add a comment |
Substitute the $(x,y)$ pairs in to get a system of linear equations, which may be easily solved:
$$1^4+1^2b+c=9qquad3^4+3^2b+c=25$$
$$b+c=8qquad 9b+c=-56$$
add a comment |
Hint:
$$25=3^4+b3^2+c implies 9b+c=-56$$
$$9=1^4+b1^2+c implies b+c=8$$
add a comment |
Here’s our function.
$$f(x) = x^4+bx^2+c$$
We’re given two points.
$$A: (1, 9)$$
$$B: (3, 25)$$
For point $A$, substitute $x$ and $y$ with $1$ and $9$, respectively. $$9 = 1^4+b(1)^2+c$$
$$9 = 1+b+c implies boxed{b+c = 8}$$
For point $B$, substitute $x$ and $y$ with $3$ and $25$, respectively.
$$25 = 3^4+b(3)^2+c$$
$$25 = 81+9b+c implies boxed{9b+c = -56}$$
Now, use elimination to solve for $b$ and $c$.
$$9b+c-(b+c)= -56-8$$
$$9b+c-b-c = -56-9 implies 8b = -64$$
$$boxed{b = -8}$$
Now, plug in $b = -8$ in either of the two equations to get $c$.
$$9(-8)+c = -56$$
$$-72+c = -56 implies boxed{c = 16}$$
So, the final quartic equation containing these two points is $f(x) = x^4-8x^2+16$.
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%2f2945317%2fgiven-the-equation-px-x4-bx2-c-and-the-points-3-25-and-1-9%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
Notice that $P(u)-P(v)=u^4-v^4+b(u^2-v^2)$. From $25-9=81-1+b(9-1)$ you’ll find $b=-8$. Now exploit $P(1)=9$, that is $1-8+c=9$ to find $c=16$.
add a comment |
Notice that $P(u)-P(v)=u^4-v^4+b(u^2-v^2)$. From $25-9=81-1+b(9-1)$ you’ll find $b=-8$. Now exploit $P(1)=9$, that is $1-8+c=9$ to find $c=16$.
add a comment |
Notice that $P(u)-P(v)=u^4-v^4+b(u^2-v^2)$. From $25-9=81-1+b(9-1)$ you’ll find $b=-8$. Now exploit $P(1)=9$, that is $1-8+c=9$ to find $c=16$.
Notice that $P(u)-P(v)=u^4-v^4+b(u^2-v^2)$. From $25-9=81-1+b(9-1)$ you’ll find $b=-8$. Now exploit $P(1)=9$, that is $1-8+c=9$ to find $c=16$.
answered Oct 7 at 10:13
Michael Hoppe
10.8k31834
10.8k31834
add a comment |
add a comment |
Substitute the $(x,y)$ pairs in to get a system of linear equations, which may be easily solved:
$$1^4+1^2b+c=9qquad3^4+3^2b+c=25$$
$$b+c=8qquad 9b+c=-56$$
add a comment |
Substitute the $(x,y)$ pairs in to get a system of linear equations, which may be easily solved:
$$1^4+1^2b+c=9qquad3^4+3^2b+c=25$$
$$b+c=8qquad 9b+c=-56$$
add a comment |
Substitute the $(x,y)$ pairs in to get a system of linear equations, which may be easily solved:
$$1^4+1^2b+c=9qquad3^4+3^2b+c=25$$
$$b+c=8qquad 9b+c=-56$$
Substitute the $(x,y)$ pairs in to get a system of linear equations, which may be easily solved:
$$1^4+1^2b+c=9qquad3^4+3^2b+c=25$$
$$b+c=8qquad 9b+c=-56$$
answered Oct 7 at 5:36
Parcly Taxel
41.2k137199
41.2k137199
add a comment |
add a comment |
Hint:
$$25=3^4+b3^2+c implies 9b+c=-56$$
$$9=1^4+b1^2+c implies b+c=8$$
add a comment |
Hint:
$$25=3^4+b3^2+c implies 9b+c=-56$$
$$9=1^4+b1^2+c implies b+c=8$$
add a comment |
Hint:
$$25=3^4+b3^2+c implies 9b+c=-56$$
$$9=1^4+b1^2+c implies b+c=8$$
Hint:
$$25=3^4+b3^2+c implies 9b+c=-56$$
$$9=1^4+b1^2+c implies b+c=8$$
answered Oct 7 at 5:36
Carl Schildkraut
11.1k11441
11.1k11441
add a comment |
add a comment |
Here’s our function.
$$f(x) = x^4+bx^2+c$$
We’re given two points.
$$A: (1, 9)$$
$$B: (3, 25)$$
For point $A$, substitute $x$ and $y$ with $1$ and $9$, respectively. $$9 = 1^4+b(1)^2+c$$
$$9 = 1+b+c implies boxed{b+c = 8}$$
For point $B$, substitute $x$ and $y$ with $3$ and $25$, respectively.
$$25 = 3^4+b(3)^2+c$$
$$25 = 81+9b+c implies boxed{9b+c = -56}$$
Now, use elimination to solve for $b$ and $c$.
$$9b+c-(b+c)= -56-8$$
$$9b+c-b-c = -56-9 implies 8b = -64$$
$$boxed{b = -8}$$
Now, plug in $b = -8$ in either of the two equations to get $c$.
$$9(-8)+c = -56$$
$$-72+c = -56 implies boxed{c = 16}$$
So, the final quartic equation containing these two points is $f(x) = x^4-8x^2+16$.
add a comment |
Here’s our function.
$$f(x) = x^4+bx^2+c$$
We’re given two points.
$$A: (1, 9)$$
$$B: (3, 25)$$
For point $A$, substitute $x$ and $y$ with $1$ and $9$, respectively. $$9 = 1^4+b(1)^2+c$$
$$9 = 1+b+c implies boxed{b+c = 8}$$
For point $B$, substitute $x$ and $y$ with $3$ and $25$, respectively.
$$25 = 3^4+b(3)^2+c$$
$$25 = 81+9b+c implies boxed{9b+c = -56}$$
Now, use elimination to solve for $b$ and $c$.
$$9b+c-(b+c)= -56-8$$
$$9b+c-b-c = -56-9 implies 8b = -64$$
$$boxed{b = -8}$$
Now, plug in $b = -8$ in either of the two equations to get $c$.
$$9(-8)+c = -56$$
$$-72+c = -56 implies boxed{c = 16}$$
So, the final quartic equation containing these two points is $f(x) = x^4-8x^2+16$.
add a comment |
Here’s our function.
$$f(x) = x^4+bx^2+c$$
We’re given two points.
$$A: (1, 9)$$
$$B: (3, 25)$$
For point $A$, substitute $x$ and $y$ with $1$ and $9$, respectively. $$9 = 1^4+b(1)^2+c$$
$$9 = 1+b+c implies boxed{b+c = 8}$$
For point $B$, substitute $x$ and $y$ with $3$ and $25$, respectively.
$$25 = 3^4+b(3)^2+c$$
$$25 = 81+9b+c implies boxed{9b+c = -56}$$
Now, use elimination to solve for $b$ and $c$.
$$9b+c-(b+c)= -56-8$$
$$9b+c-b-c = -56-9 implies 8b = -64$$
$$boxed{b = -8}$$
Now, plug in $b = -8$ in either of the two equations to get $c$.
$$9(-8)+c = -56$$
$$-72+c = -56 implies boxed{c = 16}$$
So, the final quartic equation containing these two points is $f(x) = x^4-8x^2+16$.
Here’s our function.
$$f(x) = x^4+bx^2+c$$
We’re given two points.
$$A: (1, 9)$$
$$B: (3, 25)$$
For point $A$, substitute $x$ and $y$ with $1$ and $9$, respectively. $$9 = 1^4+b(1)^2+c$$
$$9 = 1+b+c implies boxed{b+c = 8}$$
For point $B$, substitute $x$ and $y$ with $3$ and $25$, respectively.
$$25 = 3^4+b(3)^2+c$$
$$25 = 81+9b+c implies boxed{9b+c = -56}$$
Now, use elimination to solve for $b$ and $c$.
$$9b+c-(b+c)= -56-8$$
$$9b+c-b-c = -56-9 implies 8b = -64$$
$$boxed{b = -8}$$
Now, plug in $b = -8$ in either of the two equations to get $c$.
$$9(-8)+c = -56$$
$$-72+c = -56 implies boxed{c = 16}$$
So, the final quartic equation containing these two points is $f(x) = x^4-8x^2+16$.
edited Oct 7 at 5:58
answered Oct 7 at 5:46
KM101
4,428418
4,428418
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.
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%2f2945317%2fgiven-the-equation-px-x4-bx2-c-and-the-points-3-25-and-1-9%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
1
Welcome to MSE. It will be more likely that you will get an answer if you show us that you made an effort. This should be added to the question rather than in the comments.
– José Carlos Santos
Oct 7 at 5:36
Two unknowns, two equations!
– Jyrki Lahtonen
Oct 7 at 5:56