Why do we automatically assume that when we divide a polynomial by a second degree polynomial the remainder...
up vote
15
down vote
favorite
Given question:
If a polynomial leaves a remainder of $5$ when divided by $x − 3$ and a remainder of $−7$ when divided by $x + 1$,
what is the remainder when the polynomial is divided by $x^2 − 2x − 3$?
Solution:
We observe that when we divide by a second degree polynomial the remainder will generally be linear. Thus
the division statement becomes
$p(x) = (x^2 − 2x − 3)q(x) + ax + b $
Can someone please explain at a PRE-CALCULUS level? Thanks
algebra-precalculus polynomials
add a comment |
up vote
15
down vote
favorite
Given question:
If a polynomial leaves a remainder of $5$ when divided by $x − 3$ and a remainder of $−7$ when divided by $x + 1$,
what is the remainder when the polynomial is divided by $x^2 − 2x − 3$?
Solution:
We observe that when we divide by a second degree polynomial the remainder will generally be linear. Thus
the division statement becomes
$p(x) = (x^2 − 2x − 3)q(x) + ax + b $
Can someone please explain at a PRE-CALCULUS level? Thanks
algebra-precalculus polynomials
21
Compare to long division with whole numbers: if you divide by $10$, say, then the remainder will be less than $10$. Why? Because if not, then you stopped dividing too early.
– Théophile
Dec 12 at 18:50
add a comment |
up vote
15
down vote
favorite
up vote
15
down vote
favorite
Given question:
If a polynomial leaves a remainder of $5$ when divided by $x − 3$ and a remainder of $−7$ when divided by $x + 1$,
what is the remainder when the polynomial is divided by $x^2 − 2x − 3$?
Solution:
We observe that when we divide by a second degree polynomial the remainder will generally be linear. Thus
the division statement becomes
$p(x) = (x^2 − 2x − 3)q(x) + ax + b $
Can someone please explain at a PRE-CALCULUS level? Thanks
algebra-precalculus polynomials
Given question:
If a polynomial leaves a remainder of $5$ when divided by $x − 3$ and a remainder of $−7$ when divided by $x + 1$,
what is the remainder when the polynomial is divided by $x^2 − 2x − 3$?
Solution:
We observe that when we divide by a second degree polynomial the remainder will generally be linear. Thus
the division statement becomes
$p(x) = (x^2 − 2x − 3)q(x) + ax + b $
Can someone please explain at a PRE-CALCULUS level? Thanks
algebra-precalculus polynomials
algebra-precalculus polynomials
edited Dec 12 at 23:24
Eric Wofsey
178k12202330
178k12202330
asked Dec 12 at 15:50
Ke Ke
1027
1027
21
Compare to long division with whole numbers: if you divide by $10$, say, then the remainder will be less than $10$. Why? Because if not, then you stopped dividing too early.
– Théophile
Dec 12 at 18:50
add a comment |
21
Compare to long division with whole numbers: if you divide by $10$, say, then the remainder will be less than $10$. Why? Because if not, then you stopped dividing too early.
– Théophile
Dec 12 at 18:50
21
21
Compare to long division with whole numbers: if you divide by $10$, say, then the remainder will be less than $10$. Why? Because if not, then you stopped dividing too early.
– Théophile
Dec 12 at 18:50
Compare to long division with whole numbers: if you divide by $10$, say, then the remainder will be less than $10$. Why? Because if not, then you stopped dividing too early.
– Théophile
Dec 12 at 18:50
add a comment |
6 Answers
6
active
oldest
votes
up vote
22
down vote
accepted
Because by definition the quotient and the remainder of the division of a polynomial $p_1(x)$ by a polynomial $p_2(x)$ are polynomials $q(x)$ (the quotient) and $r(x)$ (the remainder) such that
$p_1(x)=p_2(x)q(x)+r(x)$;
$r(x)=0$ or its degree is smaller than the degree of $p_2(x)$.
In particular, if $p_2(x)$ is quadratic, then the degree of $r(x)$ is at most $1$.
6
This answer assumes that $p_2$ and $r$ exist, which is not trivial.
– Solomonoff's Secret
Dec 12 at 20:31
2
@Solomonoff'sSecret: How does this answer assume that $q$ (I don't think you meant $p_2$) and $r$ exist?
– Pakk
Dec 12 at 21:14
2
@Solomonoff'sSecret I would say it's pretty trivial that $p_2$ exists...
– HelloGoodbye
Dec 12 at 22:48
1
@Solomonoff'sSecret Actually, the answer doesn't assume that it exists. The answer just states that: if it exists, then it's true by definition.
– user202729
Dec 13 at 11:22
1
@user202729 It uses the word "the" which suggests both existence and uniqueness.
– Oscar Cunningham
Dec 13 at 15:41
|
show 1 more comment
up vote
12
down vote
While José Carlos Santos's answer is correct, I think it might be useful to talk about why $r(x)$ is defined to have degree less than $p_2(x)$. (J.G. explains this, but at a higher level than I suspect someone wanting "pre-calculus" would follow.)
If the degree of $r(x)$ is the same size or greater than $p_2(x)$, then you can subtract off a multiple of $p_2(x)$ from $r(x)$ to get a new remainder of lower degree. I.e., we can continue the division process until $r(x)$ is of lower degree than $p_2(x)$. It is only then that we have to stop and call anything left over the remainder.
For example, dividing $3x^3 - 2x^2 + x - 5$ by $x^2 + 1$ follows these steps:
- Note that the ratio of the leading terms is $frac {3x^3}{x^2} = 3x$
- Multiply $x^2 + 1$ by $3x$ and subtract the result ($3x^3 + 3x$) from $3x^3 - 2x^2 + x - 5$, leaving $-2x^2 - 2x - 5$. I.e.,$$3x^3 - 2x^2 + x - 5 = (3x)(x^2 + 1) + (-2x^2 - 2x - 5)$$
- Note that the ratio of the leading terms of the remainder and $x^2 + 1$ is $frac {-2x^2}{x^2} = -2$.
- Multiply $x^2 + 1$ by $-2$ and subtract the result ($-2x^2 - 2$) from $-2x^2 - 2x - 5$, leaving $-2x - 3$. I.e., $$-2x^2 - 2x - 5 = (-2)(x^2 + 1) + (-2x-3)$$
- Note that the ratio of the leading terms is now $frac {-2x}{x^2} = frac {-2}x$, which is not a polynomial, so we cannot continue.
Combining the results from steps 2 and 4:
$$begin{align}3x^3 - 2x^2 + x - 5 &= (3x)(x^2 + 1) + (-2)(x^2 + 1) + (-2x-3)\&=(3x - 2)(x^2 + 1) + (-2x-3)end{align}$$
If you stop at step 2, then $r(x)$ is indeed not linear. But at that stage, we could continue the division to get something smaller. It was only when the remainder was of lower degree that we had to stop.
I'm not American, but from what I've read pre-calc includes induction. Was my use of modulo arithmetic the comprehensibility issue?
– J.G.
Dec 12 at 23:35
1
@J.G. - It is true that both induction and modular arithmetic are both taught pre-calculus, But not to everyone, and many of those who have learned them have never truly mastered them. I took the "pre-calculus" request not as a specific level to be met, but rather to mean that the OP wanted as simple an explanation as possible. Since it is an algebra question, and the explanation only requires simple algebra, that is what I gave. "Master the minimum" is a teaching maxim that applies here, in my opinion.
– Paul Sinclair
Dec 12 at 23:52
Thanks for that clarification.
– J.G.
Dec 13 at 7:14
@PaulSinclair That's also why I posted my answer. I wanted to get the principle across at the most beaux level I could.
– timtfj
Dec 13 at 23:24
@timtfj - but what I don't understand is what your post added that mine did not contain. I mentioned J.G.'s post because I wanted to acknowledge that he had already addressed the issue, and my post was just to explain it in a more simple manner. But I don't see anything in your post 2.5 hours later that I didn't cover as or more simply.
– Paul Sinclair
Dec 14 at 0:30
|
show 1 more comment
up vote
3
down vote
The point is we can prove as much. Let the quadratic be $q:=ax^2+bx+c$. Working modulo $q$, $x^2=-(bx+c)/a$. Each $x^n$ is then of the form $cx+d$ modulo $q$; you can prove this by induction (you can even get recursion relations on the coefficients). For example, $x^3=-(bx^2+cx)/a$, but we can turn replace $x^2$ as above.
To PROVE you need to have a degree-n polynomial, not a quadratic. But it works exactly like that. so it's a_n x^n + a_(n-1) x^(n-1) + .. + a_0, etc.
– user3445853
Dec 13 at 11:12
@user3445853 I don't understand what point you're trying to make. Are you emphasising that the remainder on division by a degree $n$ polynomial is, provably by this strategy, of degree $<n$?
– J.G.
Dec 13 at 11:23
add a comment |
up vote
2
down vote
An explanation rather than a full proof. Trying to describe it more simply:
Suppose your first polynomial is
$$P=ax^4+bx^3+cx^2+dx+e$$
and you want to divide it by
$$Q=fx^2+gx+h$$
The first step is to multiply $Q$ by something which will turn its first term into $ax^4$. You've now got a polynomial which, when you subtract it from $P$, will make $ax^4$ disappear.
Then you do the same again, except you arrange for the $x^3$ term to disappear.
Now you have two quadratics: what's left of $P$, and $Q$.
So, multiply $Q$ by a suitable constant to make the $x^2$ terms match, and subtract it. Now all that's left is a multiple of $x$ and a constant, since you've got rid of all the higher order terms—and that's your linear remainder.
add a comment |
up vote
0
down vote
Simply explaining: the key IDEA is that you are not done dividing until your remainder is not further divisible by your divisor. The key WORD in your post is "GENERALLY" because the conclusion is not hard and fast, it is simply "usually" so.
IDEA first. Consider simple numbers, perhaps dividing 1,034 by 10. You begin at the left and work right (this is taught in first grade of course so I won't belabor the process) until you cannot usefully continue. So you get 100 R 34, and 3 R 4, and stop when left with a remainder (4) less than your divisor, 10. Easy enough to figure when it's "less than" with numbers, but slightly less so with polynomials. But we see it slightly differently with polynomials: we stop when the order of the remainder is lower than the order of the divisor. So dividing by 7x^2, and having a remainder with just x^2, we usually grit our teeth (we DO love our integers...) and use "1/7" eliminating the remainder's 2nd order term (x^2). At that point, coninuing becomes difficult even with gritted teeth.
And so we stop. Notice that it is not that the remainder is now linear with that being special in some way: it is simply of lower order than the divisor. In the case of dividing by a 2nd order polynomial, that means it is 1st order, or simply a constant (number).
Which brings in the "generally" part: in practice, it COULD be just the constant, and not a linear equation. "x^2 + 8" divided by x^2, for example. But not usually. Hence "generally" in your post's statement. And moving up in order, say a fifth order divisor, while you'd usually expect, just out of probability, a fourth order remainder, it could also be a third, second, or first order remainder, or just a constant.
So it's not a great theorem with a stunning proof, just a practical observation based upon the mechanics we use for the division.
(And it adds an "idiot check" in case one stops early, thinking he's finished. "Wait, I can't be, it ought to be linear and it isn't so maybe I need to keep working...")
New contributor
Roy is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
up vote
0
down vote
The accepted answer is perfect, of course, and I would not have posted this as an answer if I had enough reputation to comment... but I haven't, so this is my answer (or really a follow-up-question).
I wonder if the solution provided in the question $p(x)=(x^2−2x−3)q(x)+ax+b$ is the "full" solution. This solution describes only the form of the remainder: a linear term.
With the actual terms given in the question, it is possible to determine actual values for $a$ and $b$, being $3$ and $-4$. The remainder therefore is the term $3x-4$.
I found this solution by setting up an Excel sheet and trying out a couple (hundred) of combinations, but I now wonder if there is a way of finding this term without using "brute force".
Note: if you multiply the two terms given in the question $(x-3)$ and $(x+1)$ you get the third term $(x^2-2x-3)$, so this question boils down to something like "remainder when dividing by 3, remainder when dividing by 5, remainder when dividing by 15", which might have an impact on solving it.
Ke Ke only quoted the part of the solution relevant to the question they asked. If you want to know how to finish solving the problem, your question, even through it relates to this one, should be asked in a new thread. You can link back to this thread in your post, as relevant information, but it is preferable that separate questions have their own threads. This allows the added question to be searchable, and keeps it clear which answers apply to which questions.
– Paul Sinclair
Dec 14 at 14:00
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%2f3036852%2fwhy-do-we-automatically-assume-that-when-we-divide-a-polynomial-by-a-second-degr%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
6 Answers
6
active
oldest
votes
6 Answers
6
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
22
down vote
accepted
Because by definition the quotient and the remainder of the division of a polynomial $p_1(x)$ by a polynomial $p_2(x)$ are polynomials $q(x)$ (the quotient) and $r(x)$ (the remainder) such that
$p_1(x)=p_2(x)q(x)+r(x)$;
$r(x)=0$ or its degree is smaller than the degree of $p_2(x)$.
In particular, if $p_2(x)$ is quadratic, then the degree of $r(x)$ is at most $1$.
6
This answer assumes that $p_2$ and $r$ exist, which is not trivial.
– Solomonoff's Secret
Dec 12 at 20:31
2
@Solomonoff'sSecret: How does this answer assume that $q$ (I don't think you meant $p_2$) and $r$ exist?
– Pakk
Dec 12 at 21:14
2
@Solomonoff'sSecret I would say it's pretty trivial that $p_2$ exists...
– HelloGoodbye
Dec 12 at 22:48
1
@Solomonoff'sSecret Actually, the answer doesn't assume that it exists. The answer just states that: if it exists, then it's true by definition.
– user202729
Dec 13 at 11:22
1
@user202729 It uses the word "the" which suggests both existence and uniqueness.
– Oscar Cunningham
Dec 13 at 15:41
|
show 1 more comment
up vote
22
down vote
accepted
Because by definition the quotient and the remainder of the division of a polynomial $p_1(x)$ by a polynomial $p_2(x)$ are polynomials $q(x)$ (the quotient) and $r(x)$ (the remainder) such that
$p_1(x)=p_2(x)q(x)+r(x)$;
$r(x)=0$ or its degree is smaller than the degree of $p_2(x)$.
In particular, if $p_2(x)$ is quadratic, then the degree of $r(x)$ is at most $1$.
6
This answer assumes that $p_2$ and $r$ exist, which is not trivial.
– Solomonoff's Secret
Dec 12 at 20:31
2
@Solomonoff'sSecret: How does this answer assume that $q$ (I don't think you meant $p_2$) and $r$ exist?
– Pakk
Dec 12 at 21:14
2
@Solomonoff'sSecret I would say it's pretty trivial that $p_2$ exists...
– HelloGoodbye
Dec 12 at 22:48
1
@Solomonoff'sSecret Actually, the answer doesn't assume that it exists. The answer just states that: if it exists, then it's true by definition.
– user202729
Dec 13 at 11:22
1
@user202729 It uses the word "the" which suggests both existence and uniqueness.
– Oscar Cunningham
Dec 13 at 15:41
|
show 1 more comment
up vote
22
down vote
accepted
up vote
22
down vote
accepted
Because by definition the quotient and the remainder of the division of a polynomial $p_1(x)$ by a polynomial $p_2(x)$ are polynomials $q(x)$ (the quotient) and $r(x)$ (the remainder) such that
$p_1(x)=p_2(x)q(x)+r(x)$;
$r(x)=0$ or its degree is smaller than the degree of $p_2(x)$.
In particular, if $p_2(x)$ is quadratic, then the degree of $r(x)$ is at most $1$.
Because by definition the quotient and the remainder of the division of a polynomial $p_1(x)$ by a polynomial $p_2(x)$ are polynomials $q(x)$ (the quotient) and $r(x)$ (the remainder) such that
$p_1(x)=p_2(x)q(x)+r(x)$;
$r(x)=0$ or its degree is smaller than the degree of $p_2(x)$.
In particular, if $p_2(x)$ is quadratic, then the degree of $r(x)$ is at most $1$.
answered Dec 12 at 15:53
José Carlos Santos
147k22117218
147k22117218
6
This answer assumes that $p_2$ and $r$ exist, which is not trivial.
– Solomonoff's Secret
Dec 12 at 20:31
2
@Solomonoff'sSecret: How does this answer assume that $q$ (I don't think you meant $p_2$) and $r$ exist?
– Pakk
Dec 12 at 21:14
2
@Solomonoff'sSecret I would say it's pretty trivial that $p_2$ exists...
– HelloGoodbye
Dec 12 at 22:48
1
@Solomonoff'sSecret Actually, the answer doesn't assume that it exists. The answer just states that: if it exists, then it's true by definition.
– user202729
Dec 13 at 11:22
1
@user202729 It uses the word "the" which suggests both existence and uniqueness.
– Oscar Cunningham
Dec 13 at 15:41
|
show 1 more comment
6
This answer assumes that $p_2$ and $r$ exist, which is not trivial.
– Solomonoff's Secret
Dec 12 at 20:31
2
@Solomonoff'sSecret: How does this answer assume that $q$ (I don't think you meant $p_2$) and $r$ exist?
– Pakk
Dec 12 at 21:14
2
@Solomonoff'sSecret I would say it's pretty trivial that $p_2$ exists...
– HelloGoodbye
Dec 12 at 22:48
1
@Solomonoff'sSecret Actually, the answer doesn't assume that it exists. The answer just states that: if it exists, then it's true by definition.
– user202729
Dec 13 at 11:22
1
@user202729 It uses the word "the" which suggests both existence and uniqueness.
– Oscar Cunningham
Dec 13 at 15:41
6
6
This answer assumes that $p_2$ and $r$ exist, which is not trivial.
– Solomonoff's Secret
Dec 12 at 20:31
This answer assumes that $p_2$ and $r$ exist, which is not trivial.
– Solomonoff's Secret
Dec 12 at 20:31
2
2
@Solomonoff'sSecret: How does this answer assume that $q$ (I don't think you meant $p_2$) and $r$ exist?
– Pakk
Dec 12 at 21:14
@Solomonoff'sSecret: How does this answer assume that $q$ (I don't think you meant $p_2$) and $r$ exist?
– Pakk
Dec 12 at 21:14
2
2
@Solomonoff'sSecret I would say it's pretty trivial that $p_2$ exists...
– HelloGoodbye
Dec 12 at 22:48
@Solomonoff'sSecret I would say it's pretty trivial that $p_2$ exists...
– HelloGoodbye
Dec 12 at 22:48
1
1
@Solomonoff'sSecret Actually, the answer doesn't assume that it exists. The answer just states that: if it exists, then it's true by definition.
– user202729
Dec 13 at 11:22
@Solomonoff'sSecret Actually, the answer doesn't assume that it exists. The answer just states that: if it exists, then it's true by definition.
– user202729
Dec 13 at 11:22
1
1
@user202729 It uses the word "the" which suggests both existence and uniqueness.
– Oscar Cunningham
Dec 13 at 15:41
@user202729 It uses the word "the" which suggests both existence and uniqueness.
– Oscar Cunningham
Dec 13 at 15:41
|
show 1 more comment
up vote
12
down vote
While José Carlos Santos's answer is correct, I think it might be useful to talk about why $r(x)$ is defined to have degree less than $p_2(x)$. (J.G. explains this, but at a higher level than I suspect someone wanting "pre-calculus" would follow.)
If the degree of $r(x)$ is the same size or greater than $p_2(x)$, then you can subtract off a multiple of $p_2(x)$ from $r(x)$ to get a new remainder of lower degree. I.e., we can continue the division process until $r(x)$ is of lower degree than $p_2(x)$. It is only then that we have to stop and call anything left over the remainder.
For example, dividing $3x^3 - 2x^2 + x - 5$ by $x^2 + 1$ follows these steps:
- Note that the ratio of the leading terms is $frac {3x^3}{x^2} = 3x$
- Multiply $x^2 + 1$ by $3x$ and subtract the result ($3x^3 + 3x$) from $3x^3 - 2x^2 + x - 5$, leaving $-2x^2 - 2x - 5$. I.e.,$$3x^3 - 2x^2 + x - 5 = (3x)(x^2 + 1) + (-2x^2 - 2x - 5)$$
- Note that the ratio of the leading terms of the remainder and $x^2 + 1$ is $frac {-2x^2}{x^2} = -2$.
- Multiply $x^2 + 1$ by $-2$ and subtract the result ($-2x^2 - 2$) from $-2x^2 - 2x - 5$, leaving $-2x - 3$. I.e., $$-2x^2 - 2x - 5 = (-2)(x^2 + 1) + (-2x-3)$$
- Note that the ratio of the leading terms is now $frac {-2x}{x^2} = frac {-2}x$, which is not a polynomial, so we cannot continue.
Combining the results from steps 2 and 4:
$$begin{align}3x^3 - 2x^2 + x - 5 &= (3x)(x^2 + 1) + (-2)(x^2 + 1) + (-2x-3)\&=(3x - 2)(x^2 + 1) + (-2x-3)end{align}$$
If you stop at step 2, then $r(x)$ is indeed not linear. But at that stage, we could continue the division to get something smaller. It was only when the remainder was of lower degree that we had to stop.
I'm not American, but from what I've read pre-calc includes induction. Was my use of modulo arithmetic the comprehensibility issue?
– J.G.
Dec 12 at 23:35
1
@J.G. - It is true that both induction and modular arithmetic are both taught pre-calculus, But not to everyone, and many of those who have learned them have never truly mastered them. I took the "pre-calculus" request not as a specific level to be met, but rather to mean that the OP wanted as simple an explanation as possible. Since it is an algebra question, and the explanation only requires simple algebra, that is what I gave. "Master the minimum" is a teaching maxim that applies here, in my opinion.
– Paul Sinclair
Dec 12 at 23:52
Thanks for that clarification.
– J.G.
Dec 13 at 7:14
@PaulSinclair That's also why I posted my answer. I wanted to get the principle across at the most beaux level I could.
– timtfj
Dec 13 at 23:24
@timtfj - but what I don't understand is what your post added that mine did not contain. I mentioned J.G.'s post because I wanted to acknowledge that he had already addressed the issue, and my post was just to explain it in a more simple manner. But I don't see anything in your post 2.5 hours later that I didn't cover as or more simply.
– Paul Sinclair
Dec 14 at 0:30
|
show 1 more comment
up vote
12
down vote
While José Carlos Santos's answer is correct, I think it might be useful to talk about why $r(x)$ is defined to have degree less than $p_2(x)$. (J.G. explains this, but at a higher level than I suspect someone wanting "pre-calculus" would follow.)
If the degree of $r(x)$ is the same size or greater than $p_2(x)$, then you can subtract off a multiple of $p_2(x)$ from $r(x)$ to get a new remainder of lower degree. I.e., we can continue the division process until $r(x)$ is of lower degree than $p_2(x)$. It is only then that we have to stop and call anything left over the remainder.
For example, dividing $3x^3 - 2x^2 + x - 5$ by $x^2 + 1$ follows these steps:
- Note that the ratio of the leading terms is $frac {3x^3}{x^2} = 3x$
- Multiply $x^2 + 1$ by $3x$ and subtract the result ($3x^3 + 3x$) from $3x^3 - 2x^2 + x - 5$, leaving $-2x^2 - 2x - 5$. I.e.,$$3x^3 - 2x^2 + x - 5 = (3x)(x^2 + 1) + (-2x^2 - 2x - 5)$$
- Note that the ratio of the leading terms of the remainder and $x^2 + 1$ is $frac {-2x^2}{x^2} = -2$.
- Multiply $x^2 + 1$ by $-2$ and subtract the result ($-2x^2 - 2$) from $-2x^2 - 2x - 5$, leaving $-2x - 3$. I.e., $$-2x^2 - 2x - 5 = (-2)(x^2 + 1) + (-2x-3)$$
- Note that the ratio of the leading terms is now $frac {-2x}{x^2} = frac {-2}x$, which is not a polynomial, so we cannot continue.
Combining the results from steps 2 and 4:
$$begin{align}3x^3 - 2x^2 + x - 5 &= (3x)(x^2 + 1) + (-2)(x^2 + 1) + (-2x-3)\&=(3x - 2)(x^2 + 1) + (-2x-3)end{align}$$
If you stop at step 2, then $r(x)$ is indeed not linear. But at that stage, we could continue the division to get something smaller. It was only when the remainder was of lower degree that we had to stop.
I'm not American, but from what I've read pre-calc includes induction. Was my use of modulo arithmetic the comprehensibility issue?
– J.G.
Dec 12 at 23:35
1
@J.G. - It is true that both induction and modular arithmetic are both taught pre-calculus, But not to everyone, and many of those who have learned them have never truly mastered them. I took the "pre-calculus" request not as a specific level to be met, but rather to mean that the OP wanted as simple an explanation as possible. Since it is an algebra question, and the explanation only requires simple algebra, that is what I gave. "Master the minimum" is a teaching maxim that applies here, in my opinion.
– Paul Sinclair
Dec 12 at 23:52
Thanks for that clarification.
– J.G.
Dec 13 at 7:14
@PaulSinclair That's also why I posted my answer. I wanted to get the principle across at the most beaux level I could.
– timtfj
Dec 13 at 23:24
@timtfj - but what I don't understand is what your post added that mine did not contain. I mentioned J.G.'s post because I wanted to acknowledge that he had already addressed the issue, and my post was just to explain it in a more simple manner. But I don't see anything in your post 2.5 hours later that I didn't cover as or more simply.
– Paul Sinclair
Dec 14 at 0:30
|
show 1 more comment
up vote
12
down vote
up vote
12
down vote
While José Carlos Santos's answer is correct, I think it might be useful to talk about why $r(x)$ is defined to have degree less than $p_2(x)$. (J.G. explains this, but at a higher level than I suspect someone wanting "pre-calculus" would follow.)
If the degree of $r(x)$ is the same size or greater than $p_2(x)$, then you can subtract off a multiple of $p_2(x)$ from $r(x)$ to get a new remainder of lower degree. I.e., we can continue the division process until $r(x)$ is of lower degree than $p_2(x)$. It is only then that we have to stop and call anything left over the remainder.
For example, dividing $3x^3 - 2x^2 + x - 5$ by $x^2 + 1$ follows these steps:
- Note that the ratio of the leading terms is $frac {3x^3}{x^2} = 3x$
- Multiply $x^2 + 1$ by $3x$ and subtract the result ($3x^3 + 3x$) from $3x^3 - 2x^2 + x - 5$, leaving $-2x^2 - 2x - 5$. I.e.,$$3x^3 - 2x^2 + x - 5 = (3x)(x^2 + 1) + (-2x^2 - 2x - 5)$$
- Note that the ratio of the leading terms of the remainder and $x^2 + 1$ is $frac {-2x^2}{x^2} = -2$.
- Multiply $x^2 + 1$ by $-2$ and subtract the result ($-2x^2 - 2$) from $-2x^2 - 2x - 5$, leaving $-2x - 3$. I.e., $$-2x^2 - 2x - 5 = (-2)(x^2 + 1) + (-2x-3)$$
- Note that the ratio of the leading terms is now $frac {-2x}{x^2} = frac {-2}x$, which is not a polynomial, so we cannot continue.
Combining the results from steps 2 and 4:
$$begin{align}3x^3 - 2x^2 + x - 5 &= (3x)(x^2 + 1) + (-2)(x^2 + 1) + (-2x-3)\&=(3x - 2)(x^2 + 1) + (-2x-3)end{align}$$
If you stop at step 2, then $r(x)$ is indeed not linear. But at that stage, we could continue the division to get something smaller. It was only when the remainder was of lower degree that we had to stop.
While José Carlos Santos's answer is correct, I think it might be useful to talk about why $r(x)$ is defined to have degree less than $p_2(x)$. (J.G. explains this, but at a higher level than I suspect someone wanting "pre-calculus" would follow.)
If the degree of $r(x)$ is the same size or greater than $p_2(x)$, then you can subtract off a multiple of $p_2(x)$ from $r(x)$ to get a new remainder of lower degree. I.e., we can continue the division process until $r(x)$ is of lower degree than $p_2(x)$. It is only then that we have to stop and call anything left over the remainder.
For example, dividing $3x^3 - 2x^2 + x - 5$ by $x^2 + 1$ follows these steps:
- Note that the ratio of the leading terms is $frac {3x^3}{x^2} = 3x$
- Multiply $x^2 + 1$ by $3x$ and subtract the result ($3x^3 + 3x$) from $3x^3 - 2x^2 + x - 5$, leaving $-2x^2 - 2x - 5$. I.e.,$$3x^3 - 2x^2 + x - 5 = (3x)(x^2 + 1) + (-2x^2 - 2x - 5)$$
- Note that the ratio of the leading terms of the remainder and $x^2 + 1$ is $frac {-2x^2}{x^2} = -2$.
- Multiply $x^2 + 1$ by $-2$ and subtract the result ($-2x^2 - 2$) from $-2x^2 - 2x - 5$, leaving $-2x - 3$. I.e., $$-2x^2 - 2x - 5 = (-2)(x^2 + 1) + (-2x-3)$$
- Note that the ratio of the leading terms is now $frac {-2x}{x^2} = frac {-2}x$, which is not a polynomial, so we cannot continue.
Combining the results from steps 2 and 4:
$$begin{align}3x^3 - 2x^2 + x - 5 &= (3x)(x^2 + 1) + (-2)(x^2 + 1) + (-2x-3)\&=(3x - 2)(x^2 + 1) + (-2x-3)end{align}$$
If you stop at step 2, then $r(x)$ is indeed not linear. But at that stage, we could continue the division to get something smaller. It was only when the remainder was of lower degree that we had to stop.
answered Dec 12 at 17:52
Paul Sinclair
19.1k21441
19.1k21441
I'm not American, but from what I've read pre-calc includes induction. Was my use of modulo arithmetic the comprehensibility issue?
– J.G.
Dec 12 at 23:35
1
@J.G. - It is true that both induction and modular arithmetic are both taught pre-calculus, But not to everyone, and many of those who have learned them have never truly mastered them. I took the "pre-calculus" request not as a specific level to be met, but rather to mean that the OP wanted as simple an explanation as possible. Since it is an algebra question, and the explanation only requires simple algebra, that is what I gave. "Master the minimum" is a teaching maxim that applies here, in my opinion.
– Paul Sinclair
Dec 12 at 23:52
Thanks for that clarification.
– J.G.
Dec 13 at 7:14
@PaulSinclair That's also why I posted my answer. I wanted to get the principle across at the most beaux level I could.
– timtfj
Dec 13 at 23:24
@timtfj - but what I don't understand is what your post added that mine did not contain. I mentioned J.G.'s post because I wanted to acknowledge that he had already addressed the issue, and my post was just to explain it in a more simple manner. But I don't see anything in your post 2.5 hours later that I didn't cover as or more simply.
– Paul Sinclair
Dec 14 at 0:30
|
show 1 more comment
I'm not American, but from what I've read pre-calc includes induction. Was my use of modulo arithmetic the comprehensibility issue?
– J.G.
Dec 12 at 23:35
1
@J.G. - It is true that both induction and modular arithmetic are both taught pre-calculus, But not to everyone, and many of those who have learned them have never truly mastered them. I took the "pre-calculus" request not as a specific level to be met, but rather to mean that the OP wanted as simple an explanation as possible. Since it is an algebra question, and the explanation only requires simple algebra, that is what I gave. "Master the minimum" is a teaching maxim that applies here, in my opinion.
– Paul Sinclair
Dec 12 at 23:52
Thanks for that clarification.
– J.G.
Dec 13 at 7:14
@PaulSinclair That's also why I posted my answer. I wanted to get the principle across at the most beaux level I could.
– timtfj
Dec 13 at 23:24
@timtfj - but what I don't understand is what your post added that mine did not contain. I mentioned J.G.'s post because I wanted to acknowledge that he had already addressed the issue, and my post was just to explain it in a more simple manner. But I don't see anything in your post 2.5 hours later that I didn't cover as or more simply.
– Paul Sinclair
Dec 14 at 0:30
I'm not American, but from what I've read pre-calc includes induction. Was my use of modulo arithmetic the comprehensibility issue?
– J.G.
Dec 12 at 23:35
I'm not American, but from what I've read pre-calc includes induction. Was my use of modulo arithmetic the comprehensibility issue?
– J.G.
Dec 12 at 23:35
1
1
@J.G. - It is true that both induction and modular arithmetic are both taught pre-calculus, But not to everyone, and many of those who have learned them have never truly mastered them. I took the "pre-calculus" request not as a specific level to be met, but rather to mean that the OP wanted as simple an explanation as possible. Since it is an algebra question, and the explanation only requires simple algebra, that is what I gave. "Master the minimum" is a teaching maxim that applies here, in my opinion.
– Paul Sinclair
Dec 12 at 23:52
@J.G. - It is true that both induction and modular arithmetic are both taught pre-calculus, But not to everyone, and many of those who have learned them have never truly mastered them. I took the "pre-calculus" request not as a specific level to be met, but rather to mean that the OP wanted as simple an explanation as possible. Since it is an algebra question, and the explanation only requires simple algebra, that is what I gave. "Master the minimum" is a teaching maxim that applies here, in my opinion.
– Paul Sinclair
Dec 12 at 23:52
Thanks for that clarification.
– J.G.
Dec 13 at 7:14
Thanks for that clarification.
– J.G.
Dec 13 at 7:14
@PaulSinclair That's also why I posted my answer. I wanted to get the principle across at the most beaux level I could.
– timtfj
Dec 13 at 23:24
@PaulSinclair That's also why I posted my answer. I wanted to get the principle across at the most beaux level I could.
– timtfj
Dec 13 at 23:24
@timtfj - but what I don't understand is what your post added that mine did not contain. I mentioned J.G.'s post because I wanted to acknowledge that he had already addressed the issue, and my post was just to explain it in a more simple manner. But I don't see anything in your post 2.5 hours later that I didn't cover as or more simply.
– Paul Sinclair
Dec 14 at 0:30
@timtfj - but what I don't understand is what your post added that mine did not contain. I mentioned J.G.'s post because I wanted to acknowledge that he had already addressed the issue, and my post was just to explain it in a more simple manner. But I don't see anything in your post 2.5 hours later that I didn't cover as or more simply.
– Paul Sinclair
Dec 14 at 0:30
|
show 1 more comment
up vote
3
down vote
The point is we can prove as much. Let the quadratic be $q:=ax^2+bx+c$. Working modulo $q$, $x^2=-(bx+c)/a$. Each $x^n$ is then of the form $cx+d$ modulo $q$; you can prove this by induction (you can even get recursion relations on the coefficients). For example, $x^3=-(bx^2+cx)/a$, but we can turn replace $x^2$ as above.
To PROVE you need to have a degree-n polynomial, not a quadratic. But it works exactly like that. so it's a_n x^n + a_(n-1) x^(n-1) + .. + a_0, etc.
– user3445853
Dec 13 at 11:12
@user3445853 I don't understand what point you're trying to make. Are you emphasising that the remainder on division by a degree $n$ polynomial is, provably by this strategy, of degree $<n$?
– J.G.
Dec 13 at 11:23
add a comment |
up vote
3
down vote
The point is we can prove as much. Let the quadratic be $q:=ax^2+bx+c$. Working modulo $q$, $x^2=-(bx+c)/a$. Each $x^n$ is then of the form $cx+d$ modulo $q$; you can prove this by induction (you can even get recursion relations on the coefficients). For example, $x^3=-(bx^2+cx)/a$, but we can turn replace $x^2$ as above.
To PROVE you need to have a degree-n polynomial, not a quadratic. But it works exactly like that. so it's a_n x^n + a_(n-1) x^(n-1) + .. + a_0, etc.
– user3445853
Dec 13 at 11:12
@user3445853 I don't understand what point you're trying to make. Are you emphasising that the remainder on division by a degree $n$ polynomial is, provably by this strategy, of degree $<n$?
– J.G.
Dec 13 at 11:23
add a comment |
up vote
3
down vote
up vote
3
down vote
The point is we can prove as much. Let the quadratic be $q:=ax^2+bx+c$. Working modulo $q$, $x^2=-(bx+c)/a$. Each $x^n$ is then of the form $cx+d$ modulo $q$; you can prove this by induction (you can even get recursion relations on the coefficients). For example, $x^3=-(bx^2+cx)/a$, but we can turn replace $x^2$ as above.
The point is we can prove as much. Let the quadratic be $q:=ax^2+bx+c$. Working modulo $q$, $x^2=-(bx+c)/a$. Each $x^n$ is then of the form $cx+d$ modulo $q$; you can prove this by induction (you can even get recursion relations on the coefficients). For example, $x^3=-(bx^2+cx)/a$, but we can turn replace $x^2$ as above.
edited Dec 12 at 23:33
answered Dec 12 at 15:54
J.G.
21.5k21933
21.5k21933
To PROVE you need to have a degree-n polynomial, not a quadratic. But it works exactly like that. so it's a_n x^n + a_(n-1) x^(n-1) + .. + a_0, etc.
– user3445853
Dec 13 at 11:12
@user3445853 I don't understand what point you're trying to make. Are you emphasising that the remainder on division by a degree $n$ polynomial is, provably by this strategy, of degree $<n$?
– J.G.
Dec 13 at 11:23
add a comment |
To PROVE you need to have a degree-n polynomial, not a quadratic. But it works exactly like that. so it's a_n x^n + a_(n-1) x^(n-1) + .. + a_0, etc.
– user3445853
Dec 13 at 11:12
@user3445853 I don't understand what point you're trying to make. Are you emphasising that the remainder on division by a degree $n$ polynomial is, provably by this strategy, of degree $<n$?
– J.G.
Dec 13 at 11:23
To PROVE you need to have a degree-n polynomial, not a quadratic. But it works exactly like that. so it's a_n x^n + a_(n-1) x^(n-1) + .. + a_0, etc.
– user3445853
Dec 13 at 11:12
To PROVE you need to have a degree-n polynomial, not a quadratic. But it works exactly like that. so it's a_n x^n + a_(n-1) x^(n-1) + .. + a_0, etc.
– user3445853
Dec 13 at 11:12
@user3445853 I don't understand what point you're trying to make. Are you emphasising that the remainder on division by a degree $n$ polynomial is, provably by this strategy, of degree $<n$?
– J.G.
Dec 13 at 11:23
@user3445853 I don't understand what point you're trying to make. Are you emphasising that the remainder on division by a degree $n$ polynomial is, provably by this strategy, of degree $<n$?
– J.G.
Dec 13 at 11:23
add a comment |
up vote
2
down vote
An explanation rather than a full proof. Trying to describe it more simply:
Suppose your first polynomial is
$$P=ax^4+bx^3+cx^2+dx+e$$
and you want to divide it by
$$Q=fx^2+gx+h$$
The first step is to multiply $Q$ by something which will turn its first term into $ax^4$. You've now got a polynomial which, when you subtract it from $P$, will make $ax^4$ disappear.
Then you do the same again, except you arrange for the $x^3$ term to disappear.
Now you have two quadratics: what's left of $P$, and $Q$.
So, multiply $Q$ by a suitable constant to make the $x^2$ terms match, and subtract it. Now all that's left is a multiple of $x$ and a constant, since you've got rid of all the higher order terms—and that's your linear remainder.
add a comment |
up vote
2
down vote
An explanation rather than a full proof. Trying to describe it more simply:
Suppose your first polynomial is
$$P=ax^4+bx^3+cx^2+dx+e$$
and you want to divide it by
$$Q=fx^2+gx+h$$
The first step is to multiply $Q$ by something which will turn its first term into $ax^4$. You've now got a polynomial which, when you subtract it from $P$, will make $ax^4$ disappear.
Then you do the same again, except you arrange for the $x^3$ term to disappear.
Now you have two quadratics: what's left of $P$, and $Q$.
So, multiply $Q$ by a suitable constant to make the $x^2$ terms match, and subtract it. Now all that's left is a multiple of $x$ and a constant, since you've got rid of all the higher order terms—and that's your linear remainder.
add a comment |
up vote
2
down vote
up vote
2
down vote
An explanation rather than a full proof. Trying to describe it more simply:
Suppose your first polynomial is
$$P=ax^4+bx^3+cx^2+dx+e$$
and you want to divide it by
$$Q=fx^2+gx+h$$
The first step is to multiply $Q$ by something which will turn its first term into $ax^4$. You've now got a polynomial which, when you subtract it from $P$, will make $ax^4$ disappear.
Then you do the same again, except you arrange for the $x^3$ term to disappear.
Now you have two quadratics: what's left of $P$, and $Q$.
So, multiply $Q$ by a suitable constant to make the $x^2$ terms match, and subtract it. Now all that's left is a multiple of $x$ and a constant, since you've got rid of all the higher order terms—and that's your linear remainder.
An explanation rather than a full proof. Trying to describe it more simply:
Suppose your first polynomial is
$$P=ax^4+bx^3+cx^2+dx+e$$
and you want to divide it by
$$Q=fx^2+gx+h$$
The first step is to multiply $Q$ by something which will turn its first term into $ax^4$. You've now got a polynomial which, when you subtract it from $P$, will make $ax^4$ disappear.
Then you do the same again, except you arrange for the $x^3$ term to disappear.
Now you have two quadratics: what's left of $P$, and $Q$.
So, multiply $Q$ by a suitable constant to make the $x^2$ terms match, and subtract it. Now all that's left is a multiple of $x$ and a constant, since you've got rid of all the higher order terms—and that's your linear remainder.
edited Dec 12 at 23:38
answered Dec 12 at 20:13
timtfj
879217
879217
add a comment |
add a comment |
up vote
0
down vote
Simply explaining: the key IDEA is that you are not done dividing until your remainder is not further divisible by your divisor. The key WORD in your post is "GENERALLY" because the conclusion is not hard and fast, it is simply "usually" so.
IDEA first. Consider simple numbers, perhaps dividing 1,034 by 10. You begin at the left and work right (this is taught in first grade of course so I won't belabor the process) until you cannot usefully continue. So you get 100 R 34, and 3 R 4, and stop when left with a remainder (4) less than your divisor, 10. Easy enough to figure when it's "less than" with numbers, but slightly less so with polynomials. But we see it slightly differently with polynomials: we stop when the order of the remainder is lower than the order of the divisor. So dividing by 7x^2, and having a remainder with just x^2, we usually grit our teeth (we DO love our integers...) and use "1/7" eliminating the remainder's 2nd order term (x^2). At that point, coninuing becomes difficult even with gritted teeth.
And so we stop. Notice that it is not that the remainder is now linear with that being special in some way: it is simply of lower order than the divisor. In the case of dividing by a 2nd order polynomial, that means it is 1st order, or simply a constant (number).
Which brings in the "generally" part: in practice, it COULD be just the constant, and not a linear equation. "x^2 + 8" divided by x^2, for example. But not usually. Hence "generally" in your post's statement. And moving up in order, say a fifth order divisor, while you'd usually expect, just out of probability, a fourth order remainder, it could also be a third, second, or first order remainder, or just a constant.
So it's not a great theorem with a stunning proof, just a practical observation based upon the mechanics we use for the division.
(And it adds an "idiot check" in case one stops early, thinking he's finished. "Wait, I can't be, it ought to be linear and it isn't so maybe I need to keep working...")
New contributor
Roy is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
up vote
0
down vote
Simply explaining: the key IDEA is that you are not done dividing until your remainder is not further divisible by your divisor. The key WORD in your post is "GENERALLY" because the conclusion is not hard and fast, it is simply "usually" so.
IDEA first. Consider simple numbers, perhaps dividing 1,034 by 10. You begin at the left and work right (this is taught in first grade of course so I won't belabor the process) until you cannot usefully continue. So you get 100 R 34, and 3 R 4, and stop when left with a remainder (4) less than your divisor, 10. Easy enough to figure when it's "less than" with numbers, but slightly less so with polynomials. But we see it slightly differently with polynomials: we stop when the order of the remainder is lower than the order of the divisor. So dividing by 7x^2, and having a remainder with just x^2, we usually grit our teeth (we DO love our integers...) and use "1/7" eliminating the remainder's 2nd order term (x^2). At that point, coninuing becomes difficult even with gritted teeth.
And so we stop. Notice that it is not that the remainder is now linear with that being special in some way: it is simply of lower order than the divisor. In the case of dividing by a 2nd order polynomial, that means it is 1st order, or simply a constant (number).
Which brings in the "generally" part: in practice, it COULD be just the constant, and not a linear equation. "x^2 + 8" divided by x^2, for example. But not usually. Hence "generally" in your post's statement. And moving up in order, say a fifth order divisor, while you'd usually expect, just out of probability, a fourth order remainder, it could also be a third, second, or first order remainder, or just a constant.
So it's not a great theorem with a stunning proof, just a practical observation based upon the mechanics we use for the division.
(And it adds an "idiot check" in case one stops early, thinking he's finished. "Wait, I can't be, it ought to be linear and it isn't so maybe I need to keep working...")
New contributor
Roy is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
up vote
0
down vote
up vote
0
down vote
Simply explaining: the key IDEA is that you are not done dividing until your remainder is not further divisible by your divisor. The key WORD in your post is "GENERALLY" because the conclusion is not hard and fast, it is simply "usually" so.
IDEA first. Consider simple numbers, perhaps dividing 1,034 by 10. You begin at the left and work right (this is taught in first grade of course so I won't belabor the process) until you cannot usefully continue. So you get 100 R 34, and 3 R 4, and stop when left with a remainder (4) less than your divisor, 10. Easy enough to figure when it's "less than" with numbers, but slightly less so with polynomials. But we see it slightly differently with polynomials: we stop when the order of the remainder is lower than the order of the divisor. So dividing by 7x^2, and having a remainder with just x^2, we usually grit our teeth (we DO love our integers...) and use "1/7" eliminating the remainder's 2nd order term (x^2). At that point, coninuing becomes difficult even with gritted teeth.
And so we stop. Notice that it is not that the remainder is now linear with that being special in some way: it is simply of lower order than the divisor. In the case of dividing by a 2nd order polynomial, that means it is 1st order, or simply a constant (number).
Which brings in the "generally" part: in practice, it COULD be just the constant, and not a linear equation. "x^2 + 8" divided by x^2, for example. But not usually. Hence "generally" in your post's statement. And moving up in order, say a fifth order divisor, while you'd usually expect, just out of probability, a fourth order remainder, it could also be a third, second, or first order remainder, or just a constant.
So it's not a great theorem with a stunning proof, just a practical observation based upon the mechanics we use for the division.
(And it adds an "idiot check" in case one stops early, thinking he's finished. "Wait, I can't be, it ought to be linear and it isn't so maybe I need to keep working...")
New contributor
Roy is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Simply explaining: the key IDEA is that you are not done dividing until your remainder is not further divisible by your divisor. The key WORD in your post is "GENERALLY" because the conclusion is not hard and fast, it is simply "usually" so.
IDEA first. Consider simple numbers, perhaps dividing 1,034 by 10. You begin at the left and work right (this is taught in first grade of course so I won't belabor the process) until you cannot usefully continue. So you get 100 R 34, and 3 R 4, and stop when left with a remainder (4) less than your divisor, 10. Easy enough to figure when it's "less than" with numbers, but slightly less so with polynomials. But we see it slightly differently with polynomials: we stop when the order of the remainder is lower than the order of the divisor. So dividing by 7x^2, and having a remainder with just x^2, we usually grit our teeth (we DO love our integers...) and use "1/7" eliminating the remainder's 2nd order term (x^2). At that point, coninuing becomes difficult even with gritted teeth.
And so we stop. Notice that it is not that the remainder is now linear with that being special in some way: it is simply of lower order than the divisor. In the case of dividing by a 2nd order polynomial, that means it is 1st order, or simply a constant (number).
Which brings in the "generally" part: in practice, it COULD be just the constant, and not a linear equation. "x^2 + 8" divided by x^2, for example. But not usually. Hence "generally" in your post's statement. And moving up in order, say a fifth order divisor, while you'd usually expect, just out of probability, a fourth order remainder, it could also be a third, second, or first order remainder, or just a constant.
So it's not a great theorem with a stunning proof, just a practical observation based upon the mechanics we use for the division.
(And it adds an "idiot check" in case one stops early, thinking he's finished. "Wait, I can't be, it ought to be linear and it isn't so maybe I need to keep working...")
New contributor
Roy is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Roy is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
answered Dec 13 at 16:13
Roy
1
1
New contributor
Roy is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Roy is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Roy is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
up vote
0
down vote
The accepted answer is perfect, of course, and I would not have posted this as an answer if I had enough reputation to comment... but I haven't, so this is my answer (or really a follow-up-question).
I wonder if the solution provided in the question $p(x)=(x^2−2x−3)q(x)+ax+b$ is the "full" solution. This solution describes only the form of the remainder: a linear term.
With the actual terms given in the question, it is possible to determine actual values for $a$ and $b$, being $3$ and $-4$. The remainder therefore is the term $3x-4$.
I found this solution by setting up an Excel sheet and trying out a couple (hundred) of combinations, but I now wonder if there is a way of finding this term without using "brute force".
Note: if you multiply the two terms given in the question $(x-3)$ and $(x+1)$ you get the third term $(x^2-2x-3)$, so this question boils down to something like "remainder when dividing by 3, remainder when dividing by 5, remainder when dividing by 15", which might have an impact on solving it.
Ke Ke only quoted the part of the solution relevant to the question they asked. If you want to know how to finish solving the problem, your question, even through it relates to this one, should be asked in a new thread. You can link back to this thread in your post, as relevant information, but it is preferable that separate questions have their own threads. This allows the added question to be searchable, and keeps it clear which answers apply to which questions.
– Paul Sinclair
Dec 14 at 14:00
add a comment |
up vote
0
down vote
The accepted answer is perfect, of course, and I would not have posted this as an answer if I had enough reputation to comment... but I haven't, so this is my answer (or really a follow-up-question).
I wonder if the solution provided in the question $p(x)=(x^2−2x−3)q(x)+ax+b$ is the "full" solution. This solution describes only the form of the remainder: a linear term.
With the actual terms given in the question, it is possible to determine actual values for $a$ and $b$, being $3$ and $-4$. The remainder therefore is the term $3x-4$.
I found this solution by setting up an Excel sheet and trying out a couple (hundred) of combinations, but I now wonder if there is a way of finding this term without using "brute force".
Note: if you multiply the two terms given in the question $(x-3)$ and $(x+1)$ you get the third term $(x^2-2x-3)$, so this question boils down to something like "remainder when dividing by 3, remainder when dividing by 5, remainder when dividing by 15", which might have an impact on solving it.
Ke Ke only quoted the part of the solution relevant to the question they asked. If you want to know how to finish solving the problem, your question, even through it relates to this one, should be asked in a new thread. You can link back to this thread in your post, as relevant information, but it is preferable that separate questions have their own threads. This allows the added question to be searchable, and keeps it clear which answers apply to which questions.
– Paul Sinclair
Dec 14 at 14:00
add a comment |
up vote
0
down vote
up vote
0
down vote
The accepted answer is perfect, of course, and I would not have posted this as an answer if I had enough reputation to comment... but I haven't, so this is my answer (or really a follow-up-question).
I wonder if the solution provided in the question $p(x)=(x^2−2x−3)q(x)+ax+b$ is the "full" solution. This solution describes only the form of the remainder: a linear term.
With the actual terms given in the question, it is possible to determine actual values for $a$ and $b$, being $3$ and $-4$. The remainder therefore is the term $3x-4$.
I found this solution by setting up an Excel sheet and trying out a couple (hundred) of combinations, but I now wonder if there is a way of finding this term without using "brute force".
Note: if you multiply the two terms given in the question $(x-3)$ and $(x+1)$ you get the third term $(x^2-2x-3)$, so this question boils down to something like "remainder when dividing by 3, remainder when dividing by 5, remainder when dividing by 15", which might have an impact on solving it.
The accepted answer is perfect, of course, and I would not have posted this as an answer if I had enough reputation to comment... but I haven't, so this is my answer (or really a follow-up-question).
I wonder if the solution provided in the question $p(x)=(x^2−2x−3)q(x)+ax+b$ is the "full" solution. This solution describes only the form of the remainder: a linear term.
With the actual terms given in the question, it is possible to determine actual values for $a$ and $b$, being $3$ and $-4$. The remainder therefore is the term $3x-4$.
I found this solution by setting up an Excel sheet and trying out a couple (hundred) of combinations, but I now wonder if there is a way of finding this term without using "brute force".
Note: if you multiply the two terms given in the question $(x-3)$ and $(x+1)$ you get the third term $(x^2-2x-3)$, so this question boils down to something like "remainder when dividing by 3, remainder when dividing by 5, remainder when dividing by 15", which might have an impact on solving it.
answered Dec 13 at 17:24
Ralf
172
172
Ke Ke only quoted the part of the solution relevant to the question they asked. If you want to know how to finish solving the problem, your question, even through it relates to this one, should be asked in a new thread. You can link back to this thread in your post, as relevant information, but it is preferable that separate questions have their own threads. This allows the added question to be searchable, and keeps it clear which answers apply to which questions.
– Paul Sinclair
Dec 14 at 14:00
add a comment |
Ke Ke only quoted the part of the solution relevant to the question they asked. If you want to know how to finish solving the problem, your question, even through it relates to this one, should be asked in a new thread. You can link back to this thread in your post, as relevant information, but it is preferable that separate questions have their own threads. This allows the added question to be searchable, and keeps it clear which answers apply to which questions.
– Paul Sinclair
Dec 14 at 14:00
Ke Ke only quoted the part of the solution relevant to the question they asked. If you want to know how to finish solving the problem, your question, even through it relates to this one, should be asked in a new thread. You can link back to this thread in your post, as relevant information, but it is preferable that separate questions have their own threads. This allows the added question to be searchable, and keeps it clear which answers apply to which questions.
– Paul Sinclair
Dec 14 at 14:00
Ke Ke only quoted the part of the solution relevant to the question they asked. If you want to know how to finish solving the problem, your question, even through it relates to this one, should be asked in a new thread. You can link back to this thread in your post, as relevant information, but it is preferable that separate questions have their own threads. This allows the added question to be searchable, and keeps it clear which answers apply to which questions.
– Paul Sinclair
Dec 14 at 14:00
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%2f3036852%2fwhy-do-we-automatically-assume-that-when-we-divide-a-polynomial-by-a-second-degr%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
21
Compare to long division with whole numbers: if you divide by $10$, say, then the remainder will be less than $10$. Why? Because if not, then you stopped dividing too early.
– Théophile
Dec 12 at 18:50