MaplePrimes Questions

Hello,

I have a maple code, which some expressions have more that 80000 terms and I need to double integrate them. The terms have sine, cossine trigonometric functions.

I tried to used de MAP command, it works for the first expressions but, after a while, Maple displays an error message related to too large expression.

Do you know how to handle large expressions ?

Thank you.

 

Hi, I'm trying to reproduce the code book Burden Faires (Poisson Equation Finite-Difference. Buden Faires book Numerical Analysis 9th) page 720, algorithm 12.1., But I do not get the exact calculations of Example 2 from page 722. Under the code in maple. Regards.

CODIGO.mw

Hello people in mapleprimes,

I have a question about how Int does.

The following function spy returns 0, of course, with a side effect of listing the value of x one by one to secrets.

secrets := NULL:

spy:=proc(x::{name,numeric})
  global secrets;
  if type(x,name) then
    return 'procname'(args)
  else
  secrets:=x,secrets;
  return 0;
  end if;
end proc;

 

And, with this function, calculation of the Int, that is, following brings a sequence of numbers:

evalf(Int(spy,0..1));

secrets;

.7506605773, .2493394227, .9118140517, 0.881859483e-1, .9970470440, 0.29529560e-2, 1.0000000000, 2.2449529449*10^(-11), .5000000000

 

The question I have is why the number of this sequence is not from smaller( or greater) to greater (smaller) in order,

but in random order. And, numerical calculation of Int can be done with only 9 points extracted?

 

Best wishes.

taro

 

 

 

 

 

Dear all,

 

I am tryong to use the density plot for the first time.

Following maple instructions in maplsoft, I type 

densityplot(xex2y2,x=2..2,y=2..2,colorscheme=["𝙱𝚕𝚞𝚎","𝙶𝚛𝚎𝚎𝚗","𝙾𝚛𝚊𝚗𝚐𝚎"])

but I get the error below:

Error, (in plot/options2d) unexpected option: colorscheme =["𝙱𝚕𝚞𝚎","𝙶𝚛𝚎𝚎𝚗","𝙾𝚛𝚊𝚗𝚐𝚎"])

It actually works with one color, but not with colorscheme!

 

Nonzero complex numbers a, b, and c are such that every pair of the polynomials ( in x )
a*x^11+b*x^4+c, b*x^11+c*x^4+a, c*x^11+a*x^4+b has a common root. How to prove or disprove with Maple that all the three polynomials have a common root? I am aware of the resultant command in Maple.

http://www.mapleprimes.com/posts/38019-Calling-Out-To-C-From-Maple#

if i can use maple to call c# function such as AForge.QLearning

how to set some tasks for it to guess some system of polynomials to fit hibert series criteria?

how to set a game for it to run itself to discover itself?

Hello,

I have a worksheet that makes 38 Mo. I find it a bit huge because my code is only composed by 20 code lines. I guess that Maple has saved a important volume of data which makes the file very heavy.

I would like to reduce the size of my worksheet so as to be able to send it to colleagues.

How can I remove all the data save in a file?

I find how to display only the inputs but the data in term of size seems to be still present.

Thanks a lot for your help

what is the reason for negative value is displayed on the table? 

thank you for helping>>>>>mapel_prime.mw

Good evening,

I am trying to solve the following sum equation:

 

sum((factorial(n)/factorial(2*n))^n, n = 1 .. infinity)

 

but I require the step-by-step solution as to how it is done, but can't seem to find that option. 

 

If anone could help me out, that would be great.

 

Kind regards,

A

Dear, need help about Implicit finite difference method 

plz reply as soon as possible

Thanks

Hi,

Need help in plotting the function in the attached file. m, h and k are parameters.

 

Thanks

 

Bessel_Function.mw

> restart;
> u := -3*sqrt(mu)*tanh*(A+sqrt(-mu)*(x-(1/2)*mu*t))/sqrt(6*a)+3*sqrt(mu)*sech*(A+sqrt(-mu)*(x-(1/2)*mu*t))/sqrt(-6*a);

>
> mu := .5;
0.5
> lambda := 1;
1
> a := 0.5e-1;
0.05
> A := 1.5;
1.5
> plot3d([abs(u)], x = -3 .. 3, t = -3 .. 3);

Hello guys and gals!

I'm not strong enough with maple to get what the result I want.

It seems that it's because I'm asking for two lenths, and not a lenth and an angle, but I have no Idea how to tackle it diferently.

If you know a trick, please share it!

 

Here's an image:

http://imgur.com/xavAUoB

And here's the maple file attached (I think)

 complex_problem_from_the_internet.mw

Thanks,

Happy new year!

Hi,

 

  I think similar question has been asked by several people, but I did not find a suitable thread. My question is, suppose I have a probablity distirubtion function like

  p(x,y) = exp(-alpha (x+y) ) x^2 y^2 / |x-y|  , alpha>0

 x,y goes from - \infty to + \infty. This function is normalizable but unbounded, which makes the rejection algorithm a bit difficult(?).

 

  How to generate samping points from this type of probability distribution function?

 

Thank you very much!

 

hi. i am tottaly new to the maple and i have a problem.

consider function f with variables x & y which are not independent. x & y are functions of t and the relation is unknown.

for example i wanna to the below job:

define f as f=x^2+y^2

differentiate it with respect to t : diff(f,t) which should give me 2(dx/dt)x+2(dy/dt)y

i've googled it alot and i couldn't find anything usefull.

(the problem is how to set x as a function of t with unknown relation and use it in another function and then differentiate it with respect to t)

thanks alot :)

 

First 1184 1185 1186 1187 1188 1189 1190 Last Page 1186 of 2434