Calculating a Summation Involving 2 Variables
$begingroup$
Having not taken a math course for multiple years, I appear to have forgotten some bare basics. Unfortunately, Google has not taken me to a solid answer after much searching.
How do you solve an summation dependent on two variables?
More specifically, I am looking for the more formal mathematical term for what I am trying to accomplish (so I can google more information about it) and how to input the function like what I am trying to solve into Wolfram Alpha.
For instance, I want a summation of all terms where $$x + y < 10$$ where $$x$$ can take any value from 0 to infinity.
$$y$$ can also take on any value from 0 to infinity as long as the constrain above is satisfied.
$$result = sum( (10)^x * (10)^y )$$
So written out valid entries in the summation would include (x=1, y=1), (x=1 y=2). and so forth as long the sum is less than 10.
And result would look like
$$((10)^1 * (10)^1 ) + ((10)^1 * (10)^2 ) + ...$$
Also, how would you write the summation with a constraint? Would it look something like:
$$sum_{ x + y <10}$$ ?
algebra-precalculus summation
$endgroup$
add a comment |
$begingroup$
Having not taken a math course for multiple years, I appear to have forgotten some bare basics. Unfortunately, Google has not taken me to a solid answer after much searching.
How do you solve an summation dependent on two variables?
More specifically, I am looking for the more formal mathematical term for what I am trying to accomplish (so I can google more information about it) and how to input the function like what I am trying to solve into Wolfram Alpha.
For instance, I want a summation of all terms where $$x + y < 10$$ where $$x$$ can take any value from 0 to infinity.
$$y$$ can also take on any value from 0 to infinity as long as the constrain above is satisfied.
$$result = sum( (10)^x * (10)^y )$$
So written out valid entries in the summation would include (x=1, y=1), (x=1 y=2). and so forth as long the sum is less than 10.
And result would look like
$$((10)^1 * (10)^1 ) + ((10)^1 * (10)^2 ) + ...$$
Also, how would you write the summation with a constraint? Would it look something like:
$$sum_{ x + y <10}$$ ?
algebra-precalculus summation
$endgroup$
add a comment |
$begingroup$
Having not taken a math course for multiple years, I appear to have forgotten some bare basics. Unfortunately, Google has not taken me to a solid answer after much searching.
How do you solve an summation dependent on two variables?
More specifically, I am looking for the more formal mathematical term for what I am trying to accomplish (so I can google more information about it) and how to input the function like what I am trying to solve into Wolfram Alpha.
For instance, I want a summation of all terms where $$x + y < 10$$ where $$x$$ can take any value from 0 to infinity.
$$y$$ can also take on any value from 0 to infinity as long as the constrain above is satisfied.
$$result = sum( (10)^x * (10)^y )$$
So written out valid entries in the summation would include (x=1, y=1), (x=1 y=2). and so forth as long the sum is less than 10.
And result would look like
$$((10)^1 * (10)^1 ) + ((10)^1 * (10)^2 ) + ...$$
Also, how would you write the summation with a constraint? Would it look something like:
$$sum_{ x + y <10}$$ ?
algebra-precalculus summation
$endgroup$
Having not taken a math course for multiple years, I appear to have forgotten some bare basics. Unfortunately, Google has not taken me to a solid answer after much searching.
How do you solve an summation dependent on two variables?
More specifically, I am looking for the more formal mathematical term for what I am trying to accomplish (so I can google more information about it) and how to input the function like what I am trying to solve into Wolfram Alpha.
For instance, I want a summation of all terms where $$x + y < 10$$ where $$x$$ can take any value from 0 to infinity.
$$y$$ can also take on any value from 0 to infinity as long as the constrain above is satisfied.
$$result = sum( (10)^x * (10)^y )$$
So written out valid entries in the summation would include (x=1, y=1), (x=1 y=2). and so forth as long the sum is less than 10.
And result would look like
$$((10)^1 * (10)^1 ) + ((10)^1 * (10)^2 ) + ...$$
Also, how would you write the summation with a constraint? Would it look something like:
$$sum_{ x + y <10}$$ ?
algebra-precalculus summation
algebra-precalculus summation
edited Feb 9 '14 at 18:01
user1431282
asked Feb 9 '14 at 7:54
user1431282user1431282
1011
1011
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
$begingroup$
I assume you mean that $x, y$ are integers. Then the sum ovar all pair of integers
$(x,y)$ such that both are nonnegative and both are less than or equal to $10$ can be written in many ways:
$$
sum_{x=0}^{10} sum_{y=0}^{10} 10^{x+y}
$$
Into Wolphram alpha you can just type: sum (x=0 to 10) sum(y=0 to 10) 10^(x+y)
$endgroup$
$begingroup$
Thank you for the reply. I was looking for something similar to that except for the case where x+y is < 10 not the case where x is from 0 to 10 and y is from 0 to 10.
$endgroup$
– user1431282
Feb 9 '14 at 17:59
add a comment |
$begingroup$
I found this question still without an answer while looking for double variable sumatories and I thought I would give a solution despite it won't be useful for the OP 4 years before.
What you are looking for is a double sumatory where the second variable depends on the first. We need to find the lower and upper bounds for the variables. From your text we can guess that the lower bound is 1 for both variables (x >= 1
and y >= 1
). We also have the inequality equation x + y < 10
that can be turned into x + y <= 9
as both bounds in a sumatory are included and they belong to the natural numbers. From this equation we can isolate y
to obtain an upper bound for the dependant variable (y <= 9 - x
). We are just missing x
upper bound. Replacing the minimum value of y
in x + y < 10
we get that x + 1 < 10
--> x < 9
--> x <= 8
.
Summing up:
1 <= x <= 8
1 <= y <= 9 - x
That would be translated into:
$$
sum_{x=1}^{8} sum_{y=1}^{9-x} 10^{x+y}
$$
You could use the following code in Wolfram Alpha:
sum(x=1 to 8) sum (y=1 to 9-x) 10^(x+y)
The result of this operation is 8 765 432 100
.
If the lower bounds would be 0
instead of 1
the rest would have to be recalculated:
0 <= x <= 9
0 <= y <= 9 - x
That would be translated into:
$$
sum_{x=0}^{9} sum_{y=0}^{9-x} 10^{x+y}
$$
You could use the following code in Wolfram Alpha:
sum(x=0 to 9) sum (y=0 to 9-x) 10^(x+y)
The result of this operation is 10 987 654 321
.
$endgroup$
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%2f669322%2fcalculating-a-summation-involving-2-variables%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
$begingroup$
I assume you mean that $x, y$ are integers. Then the sum ovar all pair of integers
$(x,y)$ such that both are nonnegative and both are less than or equal to $10$ can be written in many ways:
$$
sum_{x=0}^{10} sum_{y=0}^{10} 10^{x+y}
$$
Into Wolphram alpha you can just type: sum (x=0 to 10) sum(y=0 to 10) 10^(x+y)
$endgroup$
$begingroup$
Thank you for the reply. I was looking for something similar to that except for the case where x+y is < 10 not the case where x is from 0 to 10 and y is from 0 to 10.
$endgroup$
– user1431282
Feb 9 '14 at 17:59
add a comment |
$begingroup$
I assume you mean that $x, y$ are integers. Then the sum ovar all pair of integers
$(x,y)$ such that both are nonnegative and both are less than or equal to $10$ can be written in many ways:
$$
sum_{x=0}^{10} sum_{y=0}^{10} 10^{x+y}
$$
Into Wolphram alpha you can just type: sum (x=0 to 10) sum(y=0 to 10) 10^(x+y)
$endgroup$
$begingroup$
Thank you for the reply. I was looking for something similar to that except for the case where x+y is < 10 not the case where x is from 0 to 10 and y is from 0 to 10.
$endgroup$
– user1431282
Feb 9 '14 at 17:59
add a comment |
$begingroup$
I assume you mean that $x, y$ are integers. Then the sum ovar all pair of integers
$(x,y)$ such that both are nonnegative and both are less than or equal to $10$ can be written in many ways:
$$
sum_{x=0}^{10} sum_{y=0}^{10} 10^{x+y}
$$
Into Wolphram alpha you can just type: sum (x=0 to 10) sum(y=0 to 10) 10^(x+y)
$endgroup$
I assume you mean that $x, y$ are integers. Then the sum ovar all pair of integers
$(x,y)$ such that both are nonnegative and both are less than or equal to $10$ can be written in many ways:
$$
sum_{x=0}^{10} sum_{y=0}^{10} 10^{x+y}
$$
Into Wolphram alpha you can just type: sum (x=0 to 10) sum(y=0 to 10) 10^(x+y)
answered Feb 9 '14 at 11:13


kjetil b halvorsenkjetil b halvorsen
4,85042638
4,85042638
$begingroup$
Thank you for the reply. I was looking for something similar to that except for the case where x+y is < 10 not the case where x is from 0 to 10 and y is from 0 to 10.
$endgroup$
– user1431282
Feb 9 '14 at 17:59
add a comment |
$begingroup$
Thank you for the reply. I was looking for something similar to that except for the case where x+y is < 10 not the case where x is from 0 to 10 and y is from 0 to 10.
$endgroup$
– user1431282
Feb 9 '14 at 17:59
$begingroup$
Thank you for the reply. I was looking for something similar to that except for the case where x+y is < 10 not the case where x is from 0 to 10 and y is from 0 to 10.
$endgroup$
– user1431282
Feb 9 '14 at 17:59
$begingroup$
Thank you for the reply. I was looking for something similar to that except for the case where x+y is < 10 not the case where x is from 0 to 10 and y is from 0 to 10.
$endgroup$
– user1431282
Feb 9 '14 at 17:59
add a comment |
$begingroup$
I found this question still without an answer while looking for double variable sumatories and I thought I would give a solution despite it won't be useful for the OP 4 years before.
What you are looking for is a double sumatory where the second variable depends on the first. We need to find the lower and upper bounds for the variables. From your text we can guess that the lower bound is 1 for both variables (x >= 1
and y >= 1
). We also have the inequality equation x + y < 10
that can be turned into x + y <= 9
as both bounds in a sumatory are included and they belong to the natural numbers. From this equation we can isolate y
to obtain an upper bound for the dependant variable (y <= 9 - x
). We are just missing x
upper bound. Replacing the minimum value of y
in x + y < 10
we get that x + 1 < 10
--> x < 9
--> x <= 8
.
Summing up:
1 <= x <= 8
1 <= y <= 9 - x
That would be translated into:
$$
sum_{x=1}^{8} sum_{y=1}^{9-x} 10^{x+y}
$$
You could use the following code in Wolfram Alpha:
sum(x=1 to 8) sum (y=1 to 9-x) 10^(x+y)
The result of this operation is 8 765 432 100
.
If the lower bounds would be 0
instead of 1
the rest would have to be recalculated:
0 <= x <= 9
0 <= y <= 9 - x
That would be translated into:
$$
sum_{x=0}^{9} sum_{y=0}^{9-x} 10^{x+y}
$$
You could use the following code in Wolfram Alpha:
sum(x=0 to 9) sum (y=0 to 9-x) 10^(x+y)
The result of this operation is 10 987 654 321
.
$endgroup$
add a comment |
$begingroup$
I found this question still without an answer while looking for double variable sumatories and I thought I would give a solution despite it won't be useful for the OP 4 years before.
What you are looking for is a double sumatory where the second variable depends on the first. We need to find the lower and upper bounds for the variables. From your text we can guess that the lower bound is 1 for both variables (x >= 1
and y >= 1
). We also have the inequality equation x + y < 10
that can be turned into x + y <= 9
as both bounds in a sumatory are included and they belong to the natural numbers. From this equation we can isolate y
to obtain an upper bound for the dependant variable (y <= 9 - x
). We are just missing x
upper bound. Replacing the minimum value of y
in x + y < 10
we get that x + 1 < 10
--> x < 9
--> x <= 8
.
Summing up:
1 <= x <= 8
1 <= y <= 9 - x
That would be translated into:
$$
sum_{x=1}^{8} sum_{y=1}^{9-x} 10^{x+y}
$$
You could use the following code in Wolfram Alpha:
sum(x=1 to 8) sum (y=1 to 9-x) 10^(x+y)
The result of this operation is 8 765 432 100
.
If the lower bounds would be 0
instead of 1
the rest would have to be recalculated:
0 <= x <= 9
0 <= y <= 9 - x
That would be translated into:
$$
sum_{x=0}^{9} sum_{y=0}^{9-x} 10^{x+y}
$$
You could use the following code in Wolfram Alpha:
sum(x=0 to 9) sum (y=0 to 9-x) 10^(x+y)
The result of this operation is 10 987 654 321
.
$endgroup$
add a comment |
$begingroup$
I found this question still without an answer while looking for double variable sumatories and I thought I would give a solution despite it won't be useful for the OP 4 years before.
What you are looking for is a double sumatory where the second variable depends on the first. We need to find the lower and upper bounds for the variables. From your text we can guess that the lower bound is 1 for both variables (x >= 1
and y >= 1
). We also have the inequality equation x + y < 10
that can be turned into x + y <= 9
as both bounds in a sumatory are included and they belong to the natural numbers. From this equation we can isolate y
to obtain an upper bound for the dependant variable (y <= 9 - x
). We are just missing x
upper bound. Replacing the minimum value of y
in x + y < 10
we get that x + 1 < 10
--> x < 9
--> x <= 8
.
Summing up:
1 <= x <= 8
1 <= y <= 9 - x
That would be translated into:
$$
sum_{x=1}^{8} sum_{y=1}^{9-x} 10^{x+y}
$$
You could use the following code in Wolfram Alpha:
sum(x=1 to 8) sum (y=1 to 9-x) 10^(x+y)
The result of this operation is 8 765 432 100
.
If the lower bounds would be 0
instead of 1
the rest would have to be recalculated:
0 <= x <= 9
0 <= y <= 9 - x
That would be translated into:
$$
sum_{x=0}^{9} sum_{y=0}^{9-x} 10^{x+y}
$$
You could use the following code in Wolfram Alpha:
sum(x=0 to 9) sum (y=0 to 9-x) 10^(x+y)
The result of this operation is 10 987 654 321
.
$endgroup$
I found this question still without an answer while looking for double variable sumatories and I thought I would give a solution despite it won't be useful for the OP 4 years before.
What you are looking for is a double sumatory where the second variable depends on the first. We need to find the lower and upper bounds for the variables. From your text we can guess that the lower bound is 1 for both variables (x >= 1
and y >= 1
). We also have the inequality equation x + y < 10
that can be turned into x + y <= 9
as both bounds in a sumatory are included and they belong to the natural numbers. From this equation we can isolate y
to obtain an upper bound for the dependant variable (y <= 9 - x
). We are just missing x
upper bound. Replacing the minimum value of y
in x + y < 10
we get that x + 1 < 10
--> x < 9
--> x <= 8
.
Summing up:
1 <= x <= 8
1 <= y <= 9 - x
That would be translated into:
$$
sum_{x=1}^{8} sum_{y=1}^{9-x} 10^{x+y}
$$
You could use the following code in Wolfram Alpha:
sum(x=1 to 8) sum (y=1 to 9-x) 10^(x+y)
The result of this operation is 8 765 432 100
.
If the lower bounds would be 0
instead of 1
the rest would have to be recalculated:
0 <= x <= 9
0 <= y <= 9 - x
That would be translated into:
$$
sum_{x=0}^{9} sum_{y=0}^{9-x} 10^{x+y}
$$
You could use the following code in Wolfram Alpha:
sum(x=0 to 9) sum (y=0 to 9-x) 10^(x+y)
The result of this operation is 10 987 654 321
.
answered Mar 1 '18 at 13:33
AdirioAdirio
1011
1011
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.
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%2f669322%2fcalculating-a-summation-involving-2-variables%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