Find all zeros of $5x^3 + 4x^2 + 11x + 9 in mathbb{Z}_{12}[x]$
I want to find all of the zeros of the polynomial $5x^3 + 4x^2 + 11x + 9 in mathbb{Z}_{12}[x]$. I know that one simple way would be to check every value in the set $x={0,1,...,11}$, and when I did this I found that there were no zeros.
However, is there a more elegant way to show this? I was thinking that I could try to show the polynomial is irreducible, and then use that to help show there are no roots, but couldn't see a good way to show irreducibility in $mathbb{Z}_{12}[x]$
Thanks for any help you might have!
abstract-algebra polynomials ring-theory
add a comment |
I want to find all of the zeros of the polynomial $5x^3 + 4x^2 + 11x + 9 in mathbb{Z}_{12}[x]$. I know that one simple way would be to check every value in the set $x={0,1,...,11}$, and when I did this I found that there were no zeros.
However, is there a more elegant way to show this? I was thinking that I could try to show the polynomial is irreducible, and then use that to help show there are no roots, but couldn't see a good way to show irreducibility in $mathbb{Z}_{12}[x]$
Thanks for any help you might have!
abstract-algebra polynomials ring-theory
It is not over a field so, factor theorem does not hold
– Sorfosh
Nov 19 '18 at 2:14
Looks like you want $mathbb{Z}/12mathbb{Z}$, rather than $mathbb{Z}_{12}=varprojlim(mathbb{Z}/12^nmathbb{Z})$.
– user10354138
Nov 19 '18 at 2:23
add a comment |
I want to find all of the zeros of the polynomial $5x^3 + 4x^2 + 11x + 9 in mathbb{Z}_{12}[x]$. I know that one simple way would be to check every value in the set $x={0,1,...,11}$, and when I did this I found that there were no zeros.
However, is there a more elegant way to show this? I was thinking that I could try to show the polynomial is irreducible, and then use that to help show there are no roots, but couldn't see a good way to show irreducibility in $mathbb{Z}_{12}[x]$
Thanks for any help you might have!
abstract-algebra polynomials ring-theory
I want to find all of the zeros of the polynomial $5x^3 + 4x^2 + 11x + 9 in mathbb{Z}_{12}[x]$. I know that one simple way would be to check every value in the set $x={0,1,...,11}$, and when I did this I found that there were no zeros.
However, is there a more elegant way to show this? I was thinking that I could try to show the polynomial is irreducible, and then use that to help show there are no roots, but couldn't see a good way to show irreducibility in $mathbb{Z}_{12}[x]$
Thanks for any help you might have!
abstract-algebra polynomials ring-theory
abstract-algebra polynomials ring-theory
asked Nov 19 '18 at 1:52
rocketPowered
224
224
It is not over a field so, factor theorem does not hold
– Sorfosh
Nov 19 '18 at 2:14
Looks like you want $mathbb{Z}/12mathbb{Z}$, rather than $mathbb{Z}_{12}=varprojlim(mathbb{Z}/12^nmathbb{Z})$.
– user10354138
Nov 19 '18 at 2:23
add a comment |
It is not over a field so, factor theorem does not hold
– Sorfosh
Nov 19 '18 at 2:14
Looks like you want $mathbb{Z}/12mathbb{Z}$, rather than $mathbb{Z}_{12}=varprojlim(mathbb{Z}/12^nmathbb{Z})$.
– user10354138
Nov 19 '18 at 2:23
It is not over a field so, factor theorem does not hold
– Sorfosh
Nov 19 '18 at 2:14
It is not over a field so, factor theorem does not hold
– Sorfosh
Nov 19 '18 at 2:14
Looks like you want $mathbb{Z}/12mathbb{Z}$, rather than $mathbb{Z}_{12}=varprojlim(mathbb{Z}/12^nmathbb{Z})$.
– user10354138
Nov 19 '18 at 2:23
Looks like you want $mathbb{Z}/12mathbb{Z}$, rather than $mathbb{Z}_{12}=varprojlim(mathbb{Z}/12^nmathbb{Z})$.
– user10354138
Nov 19 '18 at 2:23
add a comment |
2 Answers
2
active
oldest
votes
If $x$ is even then the left side is odd from the odd constant term. If $x$ is odd then the left side is odd by having an odd number of odd terms. The left side will never be a multiple of $2$, let alone a multiple of $12$.
add a comment |
There are various procedures. Here's one using Euler's Totient function. x can also only be a solution in $Z_{mn}[x]$ , gcd(m,n)=1, iff x is a solution in $Z_m[x]$ and $Z_n[x]$.
By one of Euler's theorems $a^{phi(n)}=1 (mod n)$, where $phi(n)$ is the Euler Totient function, i.e. the number of integers less than n that are relatively prime to n.
So take $5x^3+4x^2+11x+9∈Z_{12}[x]$.
$phi(4)=2$.
$phi(3)=2$.
We have a solution if we can solve the polynomial over $Z_{4}[x]$ and $Z_3[x]$.
In mod 4, the polynomial becomes :
$$5x^3+4x^2+11x+9$$
$$(4+1)x^{(phi(4)+1)}+(4+0)x^2+(3*4-1)x+(2*4+1)$$
$$x-x+1=0( mod 4)$$
Where coefficients have been replaced with their lowest congruences mod 4 and the exponent has been reduced by Euler's theorem. We see we have no solution in mod 4.
Let's try with 3. $phi(3)=2$
$$5x^3+4x^2+11x+9$$
$$(3+2)x^{phi(3)+1}+(3+1)x^{phi(3)}+(3*4-1)x+3*3$$
$$2x+1-x=0 ( mod 3)$$
$$x=-1 ( mod 3)$$
So we have a solution in mod 3. Since there is no solution in mod 4, we have no solution in mod 12.
However, suppose we did have a solution in mod 4, that our solutions were:
$x=p ( mod 4)$
$x=q ( mod 3 )$
Then you could use the Chinese Remainder theorem to find solutions for $Z_{12}[x]$
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%2f3004412%2ffind-all-zeros-of-5x3-4x2-11x-9-in-mathbbz-12x%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
If $x$ is even then the left side is odd from the odd constant term. If $x$ is odd then the left side is odd by having an odd number of odd terms. The left side will never be a multiple of $2$, let alone a multiple of $12$.
add a comment |
If $x$ is even then the left side is odd from the odd constant term. If $x$ is odd then the left side is odd by having an odd number of odd terms. The left side will never be a multiple of $2$, let alone a multiple of $12$.
add a comment |
If $x$ is even then the left side is odd from the odd constant term. If $x$ is odd then the left side is odd by having an odd number of odd terms. The left side will never be a multiple of $2$, let alone a multiple of $12$.
If $x$ is even then the left side is odd from the odd constant term. If $x$ is odd then the left side is odd by having an odd number of odd terms. The left side will never be a multiple of $2$, let alone a multiple of $12$.
answered Nov 19 '18 at 2:23
Oscar Lanzi
12.1k12036
12.1k12036
add a comment |
add a comment |
There are various procedures. Here's one using Euler's Totient function. x can also only be a solution in $Z_{mn}[x]$ , gcd(m,n)=1, iff x is a solution in $Z_m[x]$ and $Z_n[x]$.
By one of Euler's theorems $a^{phi(n)}=1 (mod n)$, where $phi(n)$ is the Euler Totient function, i.e. the number of integers less than n that are relatively prime to n.
So take $5x^3+4x^2+11x+9∈Z_{12}[x]$.
$phi(4)=2$.
$phi(3)=2$.
We have a solution if we can solve the polynomial over $Z_{4}[x]$ and $Z_3[x]$.
In mod 4, the polynomial becomes :
$$5x^3+4x^2+11x+9$$
$$(4+1)x^{(phi(4)+1)}+(4+0)x^2+(3*4-1)x+(2*4+1)$$
$$x-x+1=0( mod 4)$$
Where coefficients have been replaced with their lowest congruences mod 4 and the exponent has been reduced by Euler's theorem. We see we have no solution in mod 4.
Let's try with 3. $phi(3)=2$
$$5x^3+4x^2+11x+9$$
$$(3+2)x^{phi(3)+1}+(3+1)x^{phi(3)}+(3*4-1)x+3*3$$
$$2x+1-x=0 ( mod 3)$$
$$x=-1 ( mod 3)$$
So we have a solution in mod 3. Since there is no solution in mod 4, we have no solution in mod 12.
However, suppose we did have a solution in mod 4, that our solutions were:
$x=p ( mod 4)$
$x=q ( mod 3 )$
Then you could use the Chinese Remainder theorem to find solutions for $Z_{12}[x]$
add a comment |
There are various procedures. Here's one using Euler's Totient function. x can also only be a solution in $Z_{mn}[x]$ , gcd(m,n)=1, iff x is a solution in $Z_m[x]$ and $Z_n[x]$.
By one of Euler's theorems $a^{phi(n)}=1 (mod n)$, where $phi(n)$ is the Euler Totient function, i.e. the number of integers less than n that are relatively prime to n.
So take $5x^3+4x^2+11x+9∈Z_{12}[x]$.
$phi(4)=2$.
$phi(3)=2$.
We have a solution if we can solve the polynomial over $Z_{4}[x]$ and $Z_3[x]$.
In mod 4, the polynomial becomes :
$$5x^3+4x^2+11x+9$$
$$(4+1)x^{(phi(4)+1)}+(4+0)x^2+(3*4-1)x+(2*4+1)$$
$$x-x+1=0( mod 4)$$
Where coefficients have been replaced with their lowest congruences mod 4 and the exponent has been reduced by Euler's theorem. We see we have no solution in mod 4.
Let's try with 3. $phi(3)=2$
$$5x^3+4x^2+11x+9$$
$$(3+2)x^{phi(3)+1}+(3+1)x^{phi(3)}+(3*4-1)x+3*3$$
$$2x+1-x=0 ( mod 3)$$
$$x=-1 ( mod 3)$$
So we have a solution in mod 3. Since there is no solution in mod 4, we have no solution in mod 12.
However, suppose we did have a solution in mod 4, that our solutions were:
$x=p ( mod 4)$
$x=q ( mod 3 )$
Then you could use the Chinese Remainder theorem to find solutions for $Z_{12}[x]$
add a comment |
There are various procedures. Here's one using Euler's Totient function. x can also only be a solution in $Z_{mn}[x]$ , gcd(m,n)=1, iff x is a solution in $Z_m[x]$ and $Z_n[x]$.
By one of Euler's theorems $a^{phi(n)}=1 (mod n)$, where $phi(n)$ is the Euler Totient function, i.e. the number of integers less than n that are relatively prime to n.
So take $5x^3+4x^2+11x+9∈Z_{12}[x]$.
$phi(4)=2$.
$phi(3)=2$.
We have a solution if we can solve the polynomial over $Z_{4}[x]$ and $Z_3[x]$.
In mod 4, the polynomial becomes :
$$5x^3+4x^2+11x+9$$
$$(4+1)x^{(phi(4)+1)}+(4+0)x^2+(3*4-1)x+(2*4+1)$$
$$x-x+1=0( mod 4)$$
Where coefficients have been replaced with their lowest congruences mod 4 and the exponent has been reduced by Euler's theorem. We see we have no solution in mod 4.
Let's try with 3. $phi(3)=2$
$$5x^3+4x^2+11x+9$$
$$(3+2)x^{phi(3)+1}+(3+1)x^{phi(3)}+(3*4-1)x+3*3$$
$$2x+1-x=0 ( mod 3)$$
$$x=-1 ( mod 3)$$
So we have a solution in mod 3. Since there is no solution in mod 4, we have no solution in mod 12.
However, suppose we did have a solution in mod 4, that our solutions were:
$x=p ( mod 4)$
$x=q ( mod 3 )$
Then you could use the Chinese Remainder theorem to find solutions for $Z_{12}[x]$
There are various procedures. Here's one using Euler's Totient function. x can also only be a solution in $Z_{mn}[x]$ , gcd(m,n)=1, iff x is a solution in $Z_m[x]$ and $Z_n[x]$.
By one of Euler's theorems $a^{phi(n)}=1 (mod n)$, where $phi(n)$ is the Euler Totient function, i.e. the number of integers less than n that are relatively prime to n.
So take $5x^3+4x^2+11x+9∈Z_{12}[x]$.
$phi(4)=2$.
$phi(3)=2$.
We have a solution if we can solve the polynomial over $Z_{4}[x]$ and $Z_3[x]$.
In mod 4, the polynomial becomes :
$$5x^3+4x^2+11x+9$$
$$(4+1)x^{(phi(4)+1)}+(4+0)x^2+(3*4-1)x+(2*4+1)$$
$$x-x+1=0( mod 4)$$
Where coefficients have been replaced with their lowest congruences mod 4 and the exponent has been reduced by Euler's theorem. We see we have no solution in mod 4.
Let's try with 3. $phi(3)=2$
$$5x^3+4x^2+11x+9$$
$$(3+2)x^{phi(3)+1}+(3+1)x^{phi(3)}+(3*4-1)x+3*3$$
$$2x+1-x=0 ( mod 3)$$
$$x=-1 ( mod 3)$$
So we have a solution in mod 3. Since there is no solution in mod 4, we have no solution in mod 12.
However, suppose we did have a solution in mod 4, that our solutions were:
$x=p ( mod 4)$
$x=q ( mod 3 )$
Then you could use the Chinese Remainder theorem to find solutions for $Z_{12}[x]$
answered Nov 21 '18 at 2:27
TurlocTheRed
838311
838311
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%2f3004412%2ffind-all-zeros-of-5x3-4x2-11x-9-in-mathbbz-12x%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
It is not over a field so, factor theorem does not hold
– Sorfosh
Nov 19 '18 at 2:14
Looks like you want $mathbb{Z}/12mathbb{Z}$, rather than $mathbb{Z}_{12}=varprojlim(mathbb{Z}/12^nmathbb{Z})$.
– user10354138
Nov 19 '18 at 2:23