Solve the sum $sum _{i=1}^4:sum _{j=1}^i:left(icdot :j-1right)$
$begingroup$
Is it correct if this sum is solved this way?
discrete-mathematics proof-verification summation
$endgroup$
add a comment |
$begingroup$
Is it correct if this sum is solved this way?
discrete-mathematics proof-verification summation
$endgroup$
add a comment |
$begingroup$
Is it correct if this sum is solved this way?
discrete-mathematics proof-verification summation
$endgroup$
Is it correct if this sum is solved this way?
discrete-mathematics proof-verification summation
discrete-mathematics proof-verification summation
edited Jan 14 at 4:36
Viktor
asked Jan 14 at 4:26
ViktorViktor
477
477
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
$begingroup$
Yes, it looks good. You can also check your work on wolfram alpha. Go to wolframalpha.com and enter:
sum i = 1 to 4 sum j = 1 to i (i*j - 1)
as in here.
$endgroup$
add a comment |
$begingroup$
It looks as if you have used the formulas for the sum of a square and a cube, or something. That's great.
But I can never remember those (so I wouldn't be able to tell you if you did it correctly or not). I only remember the Gauß formula, $sum_{i=1}^ni=frac{n(n+1)}2$ (which you did use at one point).
However, since the sum is only up to $4$, you could just do it by hand.
Thus, picking up in the middle, $sum_{i=1}^4frac12(i^3+i^2)-i=frac12(1^3+1^2+2^3+2^2+3^3+3^2+4^3+4^2)-frac{4cdot 5}2=frac12(1+1+8+4+27+9+64+16)-10=frac12(130)-10=65-10=55$.
So, either you lucked out, or you used the formulas correctly.
$endgroup$
$begingroup$
It's easy to remember them. Only for $i, i^2, i^3$. It's much more easier than going by hand. What if the sum is up to 100 or more.
$endgroup$
– Viktor
Jan 14 at 6:59
$begingroup$
In that case, yes, we would certainly need them. I would look them up, if it were a big sum.
$endgroup$
– Chris Custer
Jan 14 at 7:00
$begingroup$
You're right. They're easy to remember.
$endgroup$
– Chris Custer
Jan 14 at 7:09
add a comment |
$begingroup$
$$begin{align}
sum_{i=1}^nsum_{j=1}^i (ij-1)
&=sum_{i=1}^nileft(sum_{j=1}^ij-1right)\
&=sum_{i=1}^nileft(frac {i(i+1)}2-1right)\
&=frac 12sum_{i=1}^ni(i^2+i-2)\
&=frac 12 sum_{i=1}^n i(i-1)(i+2)\
&=frac 12 sum_{i=1}^n(i+1)i(i-1)+i(i-1)\
&=frac 12 sum_{i=1}^n 6binom {i+1}3+2binom i2\
&=3binom {n+2}4+binom {n+1}3\
&=binom{n+1}3left(3cdot frac {n+2}4+1right)\
&=frac 14 binom {n+1}3(3n+10)\
&=frac 1{24}(n-1)n(n+1)(3n+10)end{align}$$
Alternatively,
$$begin{align}
sum_{i=1}^nsum_{j=1}^i (ij-1)
&=frac 12left(sum_{i=1}^ni^3+sum_{i=1}^ni^2right)-sum_{i=1}^n i\
&=frac 12 left[binom {n+1}2 ^2+frac 13binom {n+1}2 (2n+1)-2binom {n+1}2right]\
&=frac 12binom {n+1}2 left[binom {n+1}2+frac 13 (2n+1)-2right]\
&=frac 12 binom {n+1}2cdot frac16 big[3n(n+1)+2(2n+1)-12big]\
&=frac 1{12} binom {n+1}2cdot (3n^2+7n-10)\
&=frac 1{12}binom {n+1}2 (n-1)(3n+10)\
&=frac 14binom{n+2}3(3n+10)\
&=frac 1{24}(n-1)n(n+1)(3n+10)
end{align}$$
$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%2f3072850%2fsolve-the-sum-sum-i-14-sum-j-1i-lefti-cdot-j-1-right%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
Yes, it looks good. You can also check your work on wolfram alpha. Go to wolframalpha.com and enter:
sum i = 1 to 4 sum j = 1 to i (i*j - 1)
as in here.
$endgroup$
add a comment |
$begingroup$
Yes, it looks good. You can also check your work on wolfram alpha. Go to wolframalpha.com and enter:
sum i = 1 to 4 sum j = 1 to i (i*j - 1)
as in here.
$endgroup$
add a comment |
$begingroup$
Yes, it looks good. You can also check your work on wolfram alpha. Go to wolframalpha.com and enter:
sum i = 1 to 4 sum j = 1 to i (i*j - 1)
as in here.
$endgroup$
Yes, it looks good. You can also check your work on wolfram alpha. Go to wolframalpha.com and enter:
sum i = 1 to 4 sum j = 1 to i (i*j - 1)
as in here.
answered Jan 14 at 5:36
BenBen
3,861616
3,861616
add a comment |
add a comment |
$begingroup$
It looks as if you have used the formulas for the sum of a square and a cube, or something. That's great.
But I can never remember those (so I wouldn't be able to tell you if you did it correctly or not). I only remember the Gauß formula, $sum_{i=1}^ni=frac{n(n+1)}2$ (which you did use at one point).
However, since the sum is only up to $4$, you could just do it by hand.
Thus, picking up in the middle, $sum_{i=1}^4frac12(i^3+i^2)-i=frac12(1^3+1^2+2^3+2^2+3^3+3^2+4^3+4^2)-frac{4cdot 5}2=frac12(1+1+8+4+27+9+64+16)-10=frac12(130)-10=65-10=55$.
So, either you lucked out, or you used the formulas correctly.
$endgroup$
$begingroup$
It's easy to remember them. Only for $i, i^2, i^3$. It's much more easier than going by hand. What if the sum is up to 100 or more.
$endgroup$
– Viktor
Jan 14 at 6:59
$begingroup$
In that case, yes, we would certainly need them. I would look them up, if it were a big sum.
$endgroup$
– Chris Custer
Jan 14 at 7:00
$begingroup$
You're right. They're easy to remember.
$endgroup$
– Chris Custer
Jan 14 at 7:09
add a comment |
$begingroup$
It looks as if you have used the formulas for the sum of a square and a cube, or something. That's great.
But I can never remember those (so I wouldn't be able to tell you if you did it correctly or not). I only remember the Gauß formula, $sum_{i=1}^ni=frac{n(n+1)}2$ (which you did use at one point).
However, since the sum is only up to $4$, you could just do it by hand.
Thus, picking up in the middle, $sum_{i=1}^4frac12(i^3+i^2)-i=frac12(1^3+1^2+2^3+2^2+3^3+3^2+4^3+4^2)-frac{4cdot 5}2=frac12(1+1+8+4+27+9+64+16)-10=frac12(130)-10=65-10=55$.
So, either you lucked out, or you used the formulas correctly.
$endgroup$
$begingroup$
It's easy to remember them. Only for $i, i^2, i^3$. It's much more easier than going by hand. What if the sum is up to 100 or more.
$endgroup$
– Viktor
Jan 14 at 6:59
$begingroup$
In that case, yes, we would certainly need them. I would look them up, if it were a big sum.
$endgroup$
– Chris Custer
Jan 14 at 7:00
$begingroup$
You're right. They're easy to remember.
$endgroup$
– Chris Custer
Jan 14 at 7:09
add a comment |
$begingroup$
It looks as if you have used the formulas for the sum of a square and a cube, or something. That's great.
But I can never remember those (so I wouldn't be able to tell you if you did it correctly or not). I only remember the Gauß formula, $sum_{i=1}^ni=frac{n(n+1)}2$ (which you did use at one point).
However, since the sum is only up to $4$, you could just do it by hand.
Thus, picking up in the middle, $sum_{i=1}^4frac12(i^3+i^2)-i=frac12(1^3+1^2+2^3+2^2+3^3+3^2+4^3+4^2)-frac{4cdot 5}2=frac12(1+1+8+4+27+9+64+16)-10=frac12(130)-10=65-10=55$.
So, either you lucked out, or you used the formulas correctly.
$endgroup$
It looks as if you have used the formulas for the sum of a square and a cube, or something. That's great.
But I can never remember those (so I wouldn't be able to tell you if you did it correctly or not). I only remember the Gauß formula, $sum_{i=1}^ni=frac{n(n+1)}2$ (which you did use at one point).
However, since the sum is only up to $4$, you could just do it by hand.
Thus, picking up in the middle, $sum_{i=1}^4frac12(i^3+i^2)-i=frac12(1^3+1^2+2^3+2^2+3^3+3^2+4^3+4^2)-frac{4cdot 5}2=frac12(1+1+8+4+27+9+64+16)-10=frac12(130)-10=65-10=55$.
So, either you lucked out, or you used the formulas correctly.
answered Jan 14 at 6:38
Chris CusterChris Custer
13.3k3827
13.3k3827
$begingroup$
It's easy to remember them. Only for $i, i^2, i^3$. It's much more easier than going by hand. What if the sum is up to 100 or more.
$endgroup$
– Viktor
Jan 14 at 6:59
$begingroup$
In that case, yes, we would certainly need them. I would look them up, if it were a big sum.
$endgroup$
– Chris Custer
Jan 14 at 7:00
$begingroup$
You're right. They're easy to remember.
$endgroup$
– Chris Custer
Jan 14 at 7:09
add a comment |
$begingroup$
It's easy to remember them. Only for $i, i^2, i^3$. It's much more easier than going by hand. What if the sum is up to 100 or more.
$endgroup$
– Viktor
Jan 14 at 6:59
$begingroup$
In that case, yes, we would certainly need them. I would look them up, if it were a big sum.
$endgroup$
– Chris Custer
Jan 14 at 7:00
$begingroup$
You're right. They're easy to remember.
$endgroup$
– Chris Custer
Jan 14 at 7:09
$begingroup$
It's easy to remember them. Only for $i, i^2, i^3$. It's much more easier than going by hand. What if the sum is up to 100 or more.
$endgroup$
– Viktor
Jan 14 at 6:59
$begingroup$
It's easy to remember them. Only for $i, i^2, i^3$. It's much more easier than going by hand. What if the sum is up to 100 or more.
$endgroup$
– Viktor
Jan 14 at 6:59
$begingroup$
In that case, yes, we would certainly need them. I would look them up, if it were a big sum.
$endgroup$
– Chris Custer
Jan 14 at 7:00
$begingroup$
In that case, yes, we would certainly need them. I would look them up, if it were a big sum.
$endgroup$
– Chris Custer
Jan 14 at 7:00
$begingroup$
You're right. They're easy to remember.
$endgroup$
– Chris Custer
Jan 14 at 7:09
$begingroup$
You're right. They're easy to remember.
$endgroup$
– Chris Custer
Jan 14 at 7:09
add a comment |
$begingroup$
$$begin{align}
sum_{i=1}^nsum_{j=1}^i (ij-1)
&=sum_{i=1}^nileft(sum_{j=1}^ij-1right)\
&=sum_{i=1}^nileft(frac {i(i+1)}2-1right)\
&=frac 12sum_{i=1}^ni(i^2+i-2)\
&=frac 12 sum_{i=1}^n i(i-1)(i+2)\
&=frac 12 sum_{i=1}^n(i+1)i(i-1)+i(i-1)\
&=frac 12 sum_{i=1}^n 6binom {i+1}3+2binom i2\
&=3binom {n+2}4+binom {n+1}3\
&=binom{n+1}3left(3cdot frac {n+2}4+1right)\
&=frac 14 binom {n+1}3(3n+10)\
&=frac 1{24}(n-1)n(n+1)(3n+10)end{align}$$
Alternatively,
$$begin{align}
sum_{i=1}^nsum_{j=1}^i (ij-1)
&=frac 12left(sum_{i=1}^ni^3+sum_{i=1}^ni^2right)-sum_{i=1}^n i\
&=frac 12 left[binom {n+1}2 ^2+frac 13binom {n+1}2 (2n+1)-2binom {n+1}2right]\
&=frac 12binom {n+1}2 left[binom {n+1}2+frac 13 (2n+1)-2right]\
&=frac 12 binom {n+1}2cdot frac16 big[3n(n+1)+2(2n+1)-12big]\
&=frac 1{12} binom {n+1}2cdot (3n^2+7n-10)\
&=frac 1{12}binom {n+1}2 (n-1)(3n+10)\
&=frac 14binom{n+2}3(3n+10)\
&=frac 1{24}(n-1)n(n+1)(3n+10)
end{align}$$
$endgroup$
add a comment |
$begingroup$
$$begin{align}
sum_{i=1}^nsum_{j=1}^i (ij-1)
&=sum_{i=1}^nileft(sum_{j=1}^ij-1right)\
&=sum_{i=1}^nileft(frac {i(i+1)}2-1right)\
&=frac 12sum_{i=1}^ni(i^2+i-2)\
&=frac 12 sum_{i=1}^n i(i-1)(i+2)\
&=frac 12 sum_{i=1}^n(i+1)i(i-1)+i(i-1)\
&=frac 12 sum_{i=1}^n 6binom {i+1}3+2binom i2\
&=3binom {n+2}4+binom {n+1}3\
&=binom{n+1}3left(3cdot frac {n+2}4+1right)\
&=frac 14 binom {n+1}3(3n+10)\
&=frac 1{24}(n-1)n(n+1)(3n+10)end{align}$$
Alternatively,
$$begin{align}
sum_{i=1}^nsum_{j=1}^i (ij-1)
&=frac 12left(sum_{i=1}^ni^3+sum_{i=1}^ni^2right)-sum_{i=1}^n i\
&=frac 12 left[binom {n+1}2 ^2+frac 13binom {n+1}2 (2n+1)-2binom {n+1}2right]\
&=frac 12binom {n+1}2 left[binom {n+1}2+frac 13 (2n+1)-2right]\
&=frac 12 binom {n+1}2cdot frac16 big[3n(n+1)+2(2n+1)-12big]\
&=frac 1{12} binom {n+1}2cdot (3n^2+7n-10)\
&=frac 1{12}binom {n+1}2 (n-1)(3n+10)\
&=frac 14binom{n+2}3(3n+10)\
&=frac 1{24}(n-1)n(n+1)(3n+10)
end{align}$$
$endgroup$
add a comment |
$begingroup$
$$begin{align}
sum_{i=1}^nsum_{j=1}^i (ij-1)
&=sum_{i=1}^nileft(sum_{j=1}^ij-1right)\
&=sum_{i=1}^nileft(frac {i(i+1)}2-1right)\
&=frac 12sum_{i=1}^ni(i^2+i-2)\
&=frac 12 sum_{i=1}^n i(i-1)(i+2)\
&=frac 12 sum_{i=1}^n(i+1)i(i-1)+i(i-1)\
&=frac 12 sum_{i=1}^n 6binom {i+1}3+2binom i2\
&=3binom {n+2}4+binom {n+1}3\
&=binom{n+1}3left(3cdot frac {n+2}4+1right)\
&=frac 14 binom {n+1}3(3n+10)\
&=frac 1{24}(n-1)n(n+1)(3n+10)end{align}$$
Alternatively,
$$begin{align}
sum_{i=1}^nsum_{j=1}^i (ij-1)
&=frac 12left(sum_{i=1}^ni^3+sum_{i=1}^ni^2right)-sum_{i=1}^n i\
&=frac 12 left[binom {n+1}2 ^2+frac 13binom {n+1}2 (2n+1)-2binom {n+1}2right]\
&=frac 12binom {n+1}2 left[binom {n+1}2+frac 13 (2n+1)-2right]\
&=frac 12 binom {n+1}2cdot frac16 big[3n(n+1)+2(2n+1)-12big]\
&=frac 1{12} binom {n+1}2cdot (3n^2+7n-10)\
&=frac 1{12}binom {n+1}2 (n-1)(3n+10)\
&=frac 14binom{n+2}3(3n+10)\
&=frac 1{24}(n-1)n(n+1)(3n+10)
end{align}$$
$endgroup$
$$begin{align}
sum_{i=1}^nsum_{j=1}^i (ij-1)
&=sum_{i=1}^nileft(sum_{j=1}^ij-1right)\
&=sum_{i=1}^nileft(frac {i(i+1)}2-1right)\
&=frac 12sum_{i=1}^ni(i^2+i-2)\
&=frac 12 sum_{i=1}^n i(i-1)(i+2)\
&=frac 12 sum_{i=1}^n(i+1)i(i-1)+i(i-1)\
&=frac 12 sum_{i=1}^n 6binom {i+1}3+2binom i2\
&=3binom {n+2}4+binom {n+1}3\
&=binom{n+1}3left(3cdot frac {n+2}4+1right)\
&=frac 14 binom {n+1}3(3n+10)\
&=frac 1{24}(n-1)n(n+1)(3n+10)end{align}$$
Alternatively,
$$begin{align}
sum_{i=1}^nsum_{j=1}^i (ij-1)
&=frac 12left(sum_{i=1}^ni^3+sum_{i=1}^ni^2right)-sum_{i=1}^n i\
&=frac 12 left[binom {n+1}2 ^2+frac 13binom {n+1}2 (2n+1)-2binom {n+1}2right]\
&=frac 12binom {n+1}2 left[binom {n+1}2+frac 13 (2n+1)-2right]\
&=frac 12 binom {n+1}2cdot frac16 big[3n(n+1)+2(2n+1)-12big]\
&=frac 1{12} binom {n+1}2cdot (3n^2+7n-10)\
&=frac 1{12}binom {n+1}2 (n-1)(3n+10)\
&=frac 14binom{n+2}3(3n+10)\
&=frac 1{24}(n-1)n(n+1)(3n+10)
end{align}$$
answered Jan 14 at 18:26
hypergeometrichypergeometric
17.7k1759
17.7k1759
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%2f3072850%2fsolve-the-sum-sum-i-14-sum-j-1i-lefti-cdot-j-1-right%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