beginner question



How do I make maxima convert something like 

sum( x(k) + alpha*k,k,1,n )

to 

sum(x(k)) + alpha*k*(k+1)/2;

i.e. I want it to split the sum and simplify each term.

Thanks!