adel-00

135 Reputation

9 Badges

14 years, 20 days

MaplePrimes Activity


These are questions asked by adel-00

Hi Mapke experts,Here is my try to solve the integration

int(x-t)^(-alpha)*a(t-bln(t+b/b),t from 0 to x)

I found it complicated to solve it symbolic, so \i try this:

restart:
assume(t,real):
x[0]:=0:a:=-0.1:alpha:=0.5:h:=0.001:b:=Gamma(2-alpha)/((1-alpha)*Gamma(1-alpha)):
for n from 0 to 0 do
t[n]:=n*h:
vo:=a*(x[n]-b*(ln((x[n]+b)/b))):
uo:=a*(t[n]-b*(ln((t[n]+b)/b))):
u1:=(int((x[n]-t[n])^(-alpha)*uo,t[n]=0..x[n])):
S[n]:=vo+u1:
od:

data:=[seq([t[n],S[n]],n=0..100)]:

Here the code for BVP, but there is a singularity how to avoid it

a:=-0.1:alpha:=0.1:
dsys:={diff(u(r),r,r)+(1-alpha)/r+r^(alpha-2)*diff(u(r),r)=a};

res1:=dsolve(dsys union {u(-1)=0,u(1)=0},numeric,output=listprocedure);

plots[odeplot](res1,[[r,(u(r))]],-5..5,axes=boxed,tickmarks = [3, 2], color = black, thickness = 1, linestyle = solid, titlefont = [Helvetica, roman, 18], labeldirections = [horizontal, vertical], labelfont = [Helvetica, roman, 24]);

 

here is my try

for ploting points of data ( d(n(, sum(n))

new.mw

Here is my try to integrate the expression L with trapozoid or simpson 

numerical_int.mw

Here is my code:

 

t := 6*Pi; lambda := .1; N := 5; M := sqrt(N(N+1))*exp(I*phi); omegap := 1

eq1:=-2*(n(phi,delta)-N)+(u(phi,delta)-M)*exp(-2*I*omegap*t/lambda)+((z(phi,delta)-conjugate(M))*exp(2*I*omegap*t/lambda)):
eq2:=-2*(1-I*delta)*u(phi,delta)+2*(n(phi,delta)-N)*exp(2*I*omegap*t/lambda)+2*M:
eq3:=-2*(1+I*delta)*z(phi,delta)+2*(n(phi,delta)-N)*exp(-2*I*omegap*t/lambda)+2*conjugate(M):
convert(eq1, rational); convert(eq2, rational); convert(eq3, rational);

f1:=evalc(eq1);f1:=evalc(eq2):f3:=evalc(eq3)
f1 := solve{f1, f2, f3};
with(plots); Impliciplot3([n(phi,delta)], delta = -10 .. 10, phi = 0 .. 2*Pi);

 

1 2 3 4 5 6 7 Last Page 3 of 13