djc

576 Reputation

13 Badges

18 years, 298 days
Technical professional in industry or government
Budapest, Hungary

MaplePrimes Activity


These are questions asked by djc

I have found this problem somewhere in a math forum: somebody wanted to simplify this expression ( I write it in maple syntax:, this was not a maple forum):

a:=(1253*sqrt(2)-963*sqrt(3))^(1/3)+(26209+10500*sqrt(6))^(1/4);

They tried with the simplify command of maple, but it didn't work, and they tried with Fullsimplify command of the other famous math program , and it worked. ( I haven't tried it.) The conclusion was that Maple couldn't do this job.

Actually Maple can do this job with radnormal:

radnormal(a);

14*2^(1/2)

 

I have found this free library for Maple. It has got a lot of new or improved commands.

http://www.download.com/Aladjev-s-Library-for-Maple/3000-2070_4-10716687.html

 

Hi,

I am trying to convert tan(z) to sum form using the convert(...,Sum) command and using some information from FunctionAdvisor.
The second operand of FunctionAdvisor( sum_form, tan) gives me the domain of validity.
I would like to use this info during the conversion as assumption, but it doesn't work for me.
(Of course, the first operand is the required sum form, I am just playing with maple).
Here is my problem:

In this case there is a singularity at t=0, but the command singular() does not give it: singular(1/cos(1/t)); {t = 2/(Pi*(1+2*_Z1))} With the numeric range option it gives the correct answer: singular(1/cos(1/t), -1 .. 1); {t = 0}, {t = -2/(39*Pi)}, {t = -2/(37*Pi)}, {t = -2/(35*Pi)} etc. The command discont also gives the correct answer: discont(1/cos(1/t),t); {0, 2/(Pi*(1+2*_Z2))} I have maple 11.
I am trying to use the Mean command of the Statistics package to calculate the arithmetic mean of a transformed random variable symbolically. I am using Maple 10. In my case the Mean command gives an incorrect answer. First a simple example, which gives me a correct result symbolically: restart;with(Statistics): X:=RandomVariable(Uniform(-Pi, Pi)); Mean(X+a);#it gives a, it is ok. #and here is my more complicated problem: restart;with(Statistics):X:=RandomVariable(Uniform(-Pi, Pi)); assume(Gt::RealRange(Open(0),Open(1)),Gr::RealRange(Open(0),Open(1))); Mean(abs(1-Gt*Gr*exp(-I*X)));
5 6 7 8 Page 7 of 8