Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!aioe.org!.POSTED!not-for-mail From: clicliclic@freenet.de Newsgroups: comp.soft-sys.math.maple,sci.math.symbolic Subject: Re: How to I get Maple to spit out 1? Date: Thu, 14 Jul 2011 22:30:16 +0200 Organization: Aioe.org NNTP Server Lines: 40 Message-ID: <4E1F51D8.C16B7F4A@freenet.de> References: <987jtmF301U1@mid.individual.net> NNTP-Posting-Host: 3P1tn8Mc++mMQ5MMWiO6FQ.user.speranza.aioe.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Complaints-To: abuse@aioe.org X-Mailer: Mozilla 4.75 [de] (Win98; U) X-Accept-Language: de X-Notice: Filtered by postfilter v. 0.8.2 Xref: x330-a1.tempe.blueboxinc.net comp.soft-sys.math.maple:213 Axel Vogt schrieb: > On 14.07.2011 01:27, Salmon Egg wrote: > > > > I already know the answer. > > > > If I get to an expression > > > > z := x*exp(-(1/2)*x)/(2*sinh((1/2)*x))*((exp(x)-1)/x) > > > > How do I get Maple to spit out 1? simplify does not do it. > > > > [...] > > For guessing I often just plot as a first step ... > > Difficult to say, though I would expect that Maple would try > to convert hyperbolics to exp, as we would do, since other > exp terms are present. > > [...] Derive 6.10 handles this automatically. Here is the stepwise simplification: x*EXP(-1/2*x)/(2*SINH(1/2*x))*((EXP(x)-1)/x) " SINH(z) -> #e^z/2-#e^(-z)/2 " x*#e^(-x/2)*(#e^x-1)/(2*x*(#e^(x/2)/2-#e^(-x/2)/2)) " e^(z)*#e^(w) -> #e^(z+w) " (x*#e^(x/2)-x*#e^(-x/2))/(2*x*(#e^(x/2)/2-#e^(-x/2)/2)) " one final step " 1 Martin.