Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.soft-sys.math.maple > #306
| Date | 2012-01-13 12:14 -0800 |
|---|---|
| From | "Thomas D. Dean" <tomdean@speakeasy.org> |
| Newsgroups | comp.soft-sys.math.maple |
| Subject | How do I Show Equal |
| Message-ID | <Ws2dnew8z-o5DY3SnZ2dnUVZ_oSdnZ2d@megapath.net> (permalink) |
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
Back to comp.soft-sys.math.maple | Previous | Next — Next in thread | Find similar | Unroll thread
How do I Show Equal "Thomas D. Dean" <tomdean@speakeasy.org> - 2012-01-13 12:14 -0800 Re: How do I Show Equal Axel Vogt <&noreply@axelvogt.de> - 2012-01-14 09:31 +0100
csiph-web