songoku
- 2,514
- 395
Homework Statement
Find
$$\sum_{k=1}^{64} {64 \choose k} 64k$$
Homework Equations
Not sure
The Attempt at a Solution
Please give me hint how to start doing this question
The discussion revolves around evaluating the summation $$\sum_{k=1}^{64} {64 \choose k} 64k$$, which involves combinatorial coefficients and a linear factor of the index variable. Participants are exploring various methods to approach this problem, including patterns from smaller values of n and integration techniques.
Participants are actively engaging with the problem, sharing hints and methods without reaching a consensus on a final solution. Some have recognized connections to the binomial theorem and are attempting to derive a closed form for the summation, while others are still clarifying their understanding of the steps involved.
There is an emphasis on not providing complete solutions, with participants encouraged to explore reasoning and question assumptions. The discussion includes attempts to relate integration results back to the original summation, highlighting the complexity of the problem.
songoku said:Homework Statement
Find
$$\sum_{k=1}^{64} {64 \choose k} 64k$$
Homework Equations
Not sure
The Attempt at a Solution
Please give me hint how to start doing this question
songoku said:Homework Statement
Find
$$\sum_{k=1}^{64} {64 \choose k} 64k$$
Homework Equations
Not sure
The Attempt at a Solution
Please give me hint how to start doing this question
PeroK said:Work it out for n = 1, 2, 3, 4, 5 and see whether you can spot a pattern. Then, perhaps, try induction on ##n## to prove a general formula. Finally, set ##n = 64##
Ray Vickson said:Here is a little hint for a non-calculus solution, using n = 4 instead of n = 64. Note that for ##k =0## we have ##0 {4 \choose 0} = 0##, so we can start the summation from ##k = 0## instead of ##k = 1##. Let ##S_4 = \sum_{k=0}^4 k {4 \choose k}##. We have
$$S_4 = 0 {4 \choose 0} + 1 {4 \choose 1} + 2 {4 \choose 2} + 3 {4 \choose 3} + 4 {4 \choose 4}$$.
However, we have ##{n \choose k} = {n \choose n-k}## for all ##k##, so we can write
$$S_4 = 0 {4 \choose 4} + 1 {4 \choose 3} + 2 {4 \choose 2} + 3 {4 \choose 1} + 4 {4 \choose 0} $$.
Now add the two forms together, collecting coefficients of each ##{4 \choose j}##. That will give you
$$2S_4 = (0+4) {4 \choose 0} + (1+3) {4 \choose 1} + \cdots + (4 + 0) {4 \choose 4} = 4 \sum_{k=0}^4 {4 \choose k}.$$
Do you recognize that last summation?
haruspex said:A standard method for getting rid of an awkward factor consisting of the index variable (the k in 64k) is to make the sum a function of some unknown, s say, by multiplying the kth term by s to some power. E.g.
$$\sum_{k=1}^{64} {64 \choose k} 64k s^k$$
What would happen if you tried to integrate that wrt s? Ok, so try a slightly different power.
Yes, that's the right step.songoku said:I try to use sk-1 and after integration with respect to s, I get 64Ck . 64 . sk
haruspex said:Yes, that's the right step.
Do you not recognise that sum? (Binomial Theorem.)
Keep it as an indefinite integral. You will need to differentiate wrt s later.songoku said:integrating both sides, I get:
haruspex said:Keep it as an indefinite integral. You will need to differentiate wrt s later.
Not yet. Sum it first.songoku said:Then I differentiate it with respect to s?
So:haruspex said:Not yet. Sum it first.
The sequence is: multiply by sk-1, integrate, perform the sum, differentiate wrt s, plug in s=1.
No, you have not performed the sum. You have left it as a Σ. It sums easily into a closed form.songoku said:Am I doing it correctly?
haruspex said:No, you have not performed the sum. You have left it as a Σ. It sums easily into a closed form.
You are familiar with the binomial theorem, yes?
You got it.songoku said:I have learned about binomial theorem but I am trying to figure out how to use it for this question.
Let me try again:
$$\int U_{k} ~ ds = {64 \choose k} 64 s^{k} $$
$$\sum_{k=0}^{k=64} \int U_{k} ~ ds =\sum_{k=0}^{k=64} {64 \choose k} 64 s^{k} $$
$$=64 (1+s)^{64}$$
Differentiate both sides with respect to s:
$$\sum_{k=0}^{k=64} U_{k} = 64^{2} (1+s)^{63}$$
Put s = 1:
$$\sum_{k=0}^{k=64} U_{k} = 64^{2} (2)^{63}$$
$$=2^{75}$$
Is this how I suppose to do it?