Thomas D. Dean
unread,Jan 13, 2012, 3:14:28 PM1/13/12You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
I am trying to duplicate a Maxima proof.
#######################################
# Theorum
# for any real k,a,b
# integrate(exp(x)*x^k,x=a..b)
# =exp(1)^(-I*Pi*k)*(gamma_incomplete(k+1,-b)
# - gamma_incomplete(k+1,-a))
# maxima proof
# S:'integrate(exp(x)*x^k,x)';
# S1:ev(S, nouns);
# subst(-x=exp(%i*pi)*x,S1);
# /* From Newton-Leibnitz formula S is equal */
# subst(x=b,%)-subst(x=a,%);
# radcan(%);
# subst(pi=%pi,%);
restart;
S:=integrate(exp(x)*x^k,x); # this seems to include the ev(S, nouns)
soln:=exp(1)^(-I*Pi*k)*(GAMMA(k+1,-b)-GAMMA(k+1,-a));
# from I should be able to reduce to soln
subs(x=b,S) - subs(x=a,S);
But, my lack of Maple expertise prevents reduction of this expression to
soln.
How do I do this?
Tom Dean