4

I found out that,it is INCREDIBLY(like 100 times) faster to use Dot instead of Sum,to perform long sums. But I have not been able to use this alternative to perform the following sum:

a={{b,c},{d,e}};

a[[1]]+a[[2]]

I want to get this output:

{b,c}+{d,e}={b+d,c+e}

I tried:

a.{1,1}

but did not work.

The easy way to do it is:

Sum[a[[i]],{i,1,2}];

But I want to avoid this slow way. Any faster alternative?

Szabolcs
  • 234,956
  • 30
  • 623
  • 1,263
Mencia
  • 1,324
  • 12
  • 26

2 Answers2

21

Sum is meant for working with symbolic sums (check the examples in the docs to see what I mean). What you are looking for here is Total:

Total[a]

(* ==> {b+d,c+e} *)

Before we had this shorthand, we used Plus with Apply:

Plus @@ a

(* ==> {b+d,c+e} *)

The most important difference between using Total and Plus is that Total is optimized for performance. Plus will always do compensated summation while this needs to be explicitly turned on in Total using Method -> CompensatedSummation.

Both can be used at various levels or ranges of levels. Compare Total[a, {2}] with Apply[Plus, a, {1}].

Szabolcs
  • 234,956
  • 30
  • 623
  • 1,263
7

Or, in keeping with the request to use Dot, you can restate it as a vector/matrix product

{1, 1}.a

{b+d,c+e}
bill s
  • 68,936
  • 4
  • 101
  • 191