Preferred notation for systems of d-degree multivariate polynomials
A 2-d matrix is wonderfully practical for manipulating systems of linear equations, multivariate equations of degree 1.
For example, the two equations
$x + y = 4$ and $2x - y = 2$ has matrix notation:
$
left(begin{matrix}
1&1\
2&-1
end{matrix}
right)$
and
$
left(
begin{matrix}
4\
2
end{matrix}
right)$
or
$
left(begin{matrix}
1& 1 & 4\
2&-1 & 2
end{matrix}
right)
$
I am avoiding the concept of matrix multiplication. the notation is simply one row per equation, and one column per variable.
In contrast it is cumbersome to manipulate equations where the degree is higher.
For example operations on $x^3 - x y^2 + 2 x y + 1 = 0$ and $x^2y^2z^2 + x y z - 5 x z^2 - 1 = 0$ can quickly create messy writing.
Is there a preferred schema for writing down such equations that make it easier to manipulate, make the bookkeeping not so onerous, prevent errors? Surely ordering the variables, ordering the degree, and then ordering the monomials is a minimal start. I'm wondering if there is a good way to lay out the monomials.
- How about tuples for monomials where position is
So that $x^3 - x y^2 + 2 x y - 3y + 1 = 0$ is:
$30, -1.12, 2.11, -3.01, 00$
or $x^2y^2z^2 + x y z - 5 x z^2 - 1 = 0$ is:
$222, 111, -5.102, -1.000$
- How about by a matrix-like layout?
Here's an attempt at a layout notation to facilitate multivariate polynomial manipulation.
Let $x^2 - 2x y + y^2 - 1 = 0$ be notated as (limited to degree 2):
$
begin{matrix}\
& 1 & x& x^2 & & w & x w & & w^2 & & \
1 & 1 & .& 1 & & . & . & & . & & \
y & . & -2& & & . & & \
y^2& 1 & & & & & & \
\
z & . & . & & & . & & \
y z& . & &\
\
z^2& . & &\
end{matrix}
$
and $z^2 - 2z w + x z -3 x^2 + w^2 +2 w - 1 = 0$
$
begin{matrix}
& 1 & x& x^2 & & w & x w & & w^2 & & \
1 & 1 & .& -3 & & 2 & . & & 1 & & \
y & . & .& & & . & & \
y^2& . & & & & & & \
\
z & . & 1 & & & -2& & \
y z& . & &\
\
z^2& 1 & &\
end{matrix}
$
This could get cumbersome for larger number of variables, and somewhat overkill for sparse polynomials.
Is there an accepted standard notation, or is simply a one line list of monomials all that is ever used? Are there other notations that ease manipulation of multivariate polynomials by hand?
polynomials notation
add a comment |
A 2-d matrix is wonderfully practical for manipulating systems of linear equations, multivariate equations of degree 1.
For example, the two equations
$x + y = 4$ and $2x - y = 2$ has matrix notation:
$
left(begin{matrix}
1&1\
2&-1
end{matrix}
right)$
and
$
left(
begin{matrix}
4\
2
end{matrix}
right)$
or
$
left(begin{matrix}
1& 1 & 4\
2&-1 & 2
end{matrix}
right)
$
I am avoiding the concept of matrix multiplication. the notation is simply one row per equation, and one column per variable.
In contrast it is cumbersome to manipulate equations where the degree is higher.
For example operations on $x^3 - x y^2 + 2 x y + 1 = 0$ and $x^2y^2z^2 + x y z - 5 x z^2 - 1 = 0$ can quickly create messy writing.
Is there a preferred schema for writing down such equations that make it easier to manipulate, make the bookkeeping not so onerous, prevent errors? Surely ordering the variables, ordering the degree, and then ordering the monomials is a minimal start. I'm wondering if there is a good way to lay out the monomials.
- How about tuples for monomials where position is
So that $x^3 - x y^2 + 2 x y - 3y + 1 = 0$ is:
$30, -1.12, 2.11, -3.01, 00$
or $x^2y^2z^2 + x y z - 5 x z^2 - 1 = 0$ is:
$222, 111, -5.102, -1.000$
- How about by a matrix-like layout?
Here's an attempt at a layout notation to facilitate multivariate polynomial manipulation.
Let $x^2 - 2x y + y^2 - 1 = 0$ be notated as (limited to degree 2):
$
begin{matrix}\
& 1 & x& x^2 & & w & x w & & w^2 & & \
1 & 1 & .& 1 & & . & . & & . & & \
y & . & -2& & & . & & \
y^2& 1 & & & & & & \
\
z & . & . & & & . & & \
y z& . & &\
\
z^2& . & &\
end{matrix}
$
and $z^2 - 2z w + x z -3 x^2 + w^2 +2 w - 1 = 0$
$
begin{matrix}
& 1 & x& x^2 & & w & x w & & w^2 & & \
1 & 1 & .& -3 & & 2 & . & & 1 & & \
y & . & .& & & . & & \
y^2& . & & & & & & \
\
z & . & 1 & & & -2& & \
y z& . & &\
\
z^2& 1 & &\
end{matrix}
$
This could get cumbersome for larger number of variables, and somewhat overkill for sparse polynomials.
Is there an accepted standard notation, or is simply a one line list of monomials all that is ever used? Are there other notations that ease manipulation of multivariate polynomials by hand?
polynomials notation
add a comment |
A 2-d matrix is wonderfully practical for manipulating systems of linear equations, multivariate equations of degree 1.
For example, the two equations
$x + y = 4$ and $2x - y = 2$ has matrix notation:
$
left(begin{matrix}
1&1\
2&-1
end{matrix}
right)$
and
$
left(
begin{matrix}
4\
2
end{matrix}
right)$
or
$
left(begin{matrix}
1& 1 & 4\
2&-1 & 2
end{matrix}
right)
$
I am avoiding the concept of matrix multiplication. the notation is simply one row per equation, and one column per variable.
In contrast it is cumbersome to manipulate equations where the degree is higher.
For example operations on $x^3 - x y^2 + 2 x y + 1 = 0$ and $x^2y^2z^2 + x y z - 5 x z^2 - 1 = 0$ can quickly create messy writing.
Is there a preferred schema for writing down such equations that make it easier to manipulate, make the bookkeeping not so onerous, prevent errors? Surely ordering the variables, ordering the degree, and then ordering the monomials is a minimal start. I'm wondering if there is a good way to lay out the monomials.
- How about tuples for monomials where position is
So that $x^3 - x y^2 + 2 x y - 3y + 1 = 0$ is:
$30, -1.12, 2.11, -3.01, 00$
or $x^2y^2z^2 + x y z - 5 x z^2 - 1 = 0$ is:
$222, 111, -5.102, -1.000$
- How about by a matrix-like layout?
Here's an attempt at a layout notation to facilitate multivariate polynomial manipulation.
Let $x^2 - 2x y + y^2 - 1 = 0$ be notated as (limited to degree 2):
$
begin{matrix}\
& 1 & x& x^2 & & w & x w & & w^2 & & \
1 & 1 & .& 1 & & . & . & & . & & \
y & . & -2& & & . & & \
y^2& 1 & & & & & & \
\
z & . & . & & & . & & \
y z& . & &\
\
z^2& . & &\
end{matrix}
$
and $z^2 - 2z w + x z -3 x^2 + w^2 +2 w - 1 = 0$
$
begin{matrix}
& 1 & x& x^2 & & w & x w & & w^2 & & \
1 & 1 & .& -3 & & 2 & . & & 1 & & \
y & . & .& & & . & & \
y^2& . & & & & & & \
\
z & . & 1 & & & -2& & \
y z& . & &\
\
z^2& 1 & &\
end{matrix}
$
This could get cumbersome for larger number of variables, and somewhat overkill for sparse polynomials.
Is there an accepted standard notation, or is simply a one line list of monomials all that is ever used? Are there other notations that ease manipulation of multivariate polynomials by hand?
polynomials notation
A 2-d matrix is wonderfully practical for manipulating systems of linear equations, multivariate equations of degree 1.
For example, the two equations
$x + y = 4$ and $2x - y = 2$ has matrix notation:
$
left(begin{matrix}
1&1\
2&-1
end{matrix}
right)$
and
$
left(
begin{matrix}
4\
2
end{matrix}
right)$
or
$
left(begin{matrix}
1& 1 & 4\
2&-1 & 2
end{matrix}
right)
$
I am avoiding the concept of matrix multiplication. the notation is simply one row per equation, and one column per variable.
In contrast it is cumbersome to manipulate equations where the degree is higher.
For example operations on $x^3 - x y^2 + 2 x y + 1 = 0$ and $x^2y^2z^2 + x y z - 5 x z^2 - 1 = 0$ can quickly create messy writing.
Is there a preferred schema for writing down such equations that make it easier to manipulate, make the bookkeeping not so onerous, prevent errors? Surely ordering the variables, ordering the degree, and then ordering the monomials is a minimal start. I'm wondering if there is a good way to lay out the monomials.
- How about tuples for monomials where position is
So that $x^3 - x y^2 + 2 x y - 3y + 1 = 0$ is:
$30, -1.12, 2.11, -3.01, 00$
or $x^2y^2z^2 + x y z - 5 x z^2 - 1 = 0$ is:
$222, 111, -5.102, -1.000$
- How about by a matrix-like layout?
Here's an attempt at a layout notation to facilitate multivariate polynomial manipulation.
Let $x^2 - 2x y + y^2 - 1 = 0$ be notated as (limited to degree 2):
$
begin{matrix}\
& 1 & x& x^2 & & w & x w & & w^2 & & \
1 & 1 & .& 1 & & . & . & & . & & \
y & . & -2& & & . & & \
y^2& 1 & & & & & & \
\
z & . & . & & & . & & \
y z& . & &\
\
z^2& . & &\
end{matrix}
$
and $z^2 - 2z w + x z -3 x^2 + w^2 +2 w - 1 = 0$
$
begin{matrix}
& 1 & x& x^2 & & w & x w & & w^2 & & \
1 & 1 & .& -3 & & 2 & . & & 1 & & \
y & . & .& & & . & & \
y^2& . & & & & & & \
\
z & . & 1 & & & -2& & \
y z& . & &\
\
z^2& 1 & &\
end{matrix}
$
This could get cumbersome for larger number of variables, and somewhat overkill for sparse polynomials.
Is there an accepted standard notation, or is simply a one line list of monomials all that is ever used? Are there other notations that ease manipulation of multivariate polynomials by hand?
polynomials notation
polynomials notation
edited Dec 5 '18 at 17:26
random123
1,2621720
1,2621720
asked Dec 4 '18 at 16:42
Mitch
6,0212560
6,0212560
add a comment |
add a comment |
0
active
oldest
votes
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%2f3025808%2fpreferred-notation-for-systems-of-d-degree-multivariate-polynomials%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f3025808%2fpreferred-notation-for-systems-of-d-degree-multivariate-polynomials%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