Tuesday, July 18, 2017

summation - Trouble understanding sum notation



Question:




What does (a,b,ca)2

mean ?




The answer given is (a+b+c)2. However, I am having trouble understanding this.




I have seen this, this and this. But none helped.



Please help me understand this.



EDIT:



Also, what would be a better way to write:



a,b,c(bc)(b+c)




Thanks.


Answer



The notation is very bad, since the summation index is apparently named a, while a is also one of the values it takes. Better notations for this would be
(k=a,b,ck)2or(k{a,b,c}k)2.


Here the summation index is explicitly labeled k and it takes values a, b and c, so the sum is a+b+c.



The sum in the edit is even worse, I can't tell you what it means. I'd say it is just wrong. Summations should come with a summation index, always.







In the comments you mentioned that they call these summations cyclic expression, which does indeed help at guessing what it's supposed to be. Consider the summand (bc)(b+c) as an expression in a,b,c and then look at the same term for the cyclic permutations b,c,a and c,a,b. So I guess they want
a,b,c(bc)(b+c)=(bc)(b+c)+(ca)(c+a)+(ab)(a+b).


No comments:

Post a Comment

analysis - Injection, making bijection

I have injection f:AB and I want to get bijection. Can I just resting codomain to f(A)? I know that every function i...