digerdiga

385 Reputation

8 Badges

12 years, 154 days

MaplePrimes Activity


These are questions asked by digerdiga

Doing a pointplot([x1,...,xn],[y1,...yn]) is no problem but I have lists [y11,...y1n] [y21,...,y2n] ... [ym1,...ymn] each be plottet at [x1,...,xm] in 1 plot.

That means:

plotting 

[y11,...y1n] at x1

[y21,...,y2n] at x2

.

.

.

[ym1,...ymn] at xm

What is the easiest way to implement this?

Now I have written this for loop just intuitively but unfortunately it doesnt work:

x(0):=0.5

for N from 1 to 100 do

x:=proc(n) option remember; eval(r*x(n-1)*(1-x(n-1)),r=4/(100)*N) end proc;

l(N):=[seq(x(n),n=20..100)]

end:

What's the specific problem maple has?

 

Edit: problem solved: 

for N from 1 to 100 do

x:=proc(n) option remember; eval(r*x(n-1)*(1-x(n-1)),r=4/(100)*N) end proc;

following expression doesn't simplify to 1

conjugate(1/sqrt(I*t*lambda+m))*sqrt(lambda^2*(t^2)+m^2)*(1/sqrt(I*t*lambda+m))

Now I did use assumptions on any variable

specifically: assume(lambda>0,t>0,m>0)

Then I tried radnormal, simplify, evalc, combine(expr,radical)

But none of these work.

Can maple use a Differential Operator somehow in the following sense?

Instead of expanding (D-p)^n where p is a constant and D the differential operator and n an integer and then in each term writing D^n(f) for some function can I just leave the expression as it is like

(D-p)^n and acting on everything on the right?

First 18 19 20 21 22 23 24 Page 20 of 25