MaplePrimes Questions

How can I activate my maple 13?

I have no activatIon left but installed maple

once

My purchase Code is BNN7VMT4BPFN7ESG

Thank. You 

Hi,

Is there any one can tell me how to plot a curve(e.g f(x,1)=2x^2-x-1) by the command spacecurve?

Thanks in advance!

Hello,

Attached is my code where the output of interest is the variable X. What I am trying to do is replace anywhere in this expression that I see "sqrt((nx^2+ny^2+nz^2)c^2) by the variable phi in order to make the expression easier to look at and interpret. This should be a relatively easy thing to accomplish, however I have had problems with doing this. Ive tried using algsubs etc. but nothing seems to work. Could anyone show me how to do this? Is there an easy method that works for doing this for similar problems in the future? I have run across this problem before so I would love to know how to solve it for the future. Thanks in advance.

Also pretty new to maple so thanks for your patience.

 

 

I would like to compute the function 

                       f(x) := exp(x) * HeunC(2*x, 1/2, -1/2, -x^2, 1/8, 99/100)

for very large real values of x. However, in the following plot it can be seen that there are already strong numerical instabilities for x>33. What can I do to reach more stability for large x? Or, does somebody know how to get a closed form asymptotic expression for large x?

 

I am working on a simple set of notes for students. Much of the on-line stuff is either out-of-date or too complex.

Here is the problem I wish to show

A corpse was found in a room with an ambient temperature of 64°F. The body temperature on finding the corpse was 75°F; one hour later it was 73°F. Use Newtons Law of cooling to find the time of death.

Here is my solution. I realise the assignment to variable cool is not used. Please tell me any suggestions for improvements.

many thanks


Hi,


When you do this a := plot(1/x, x=0..1);  the figure contains a "smart" graph which extends roughly from 0 to 30 in the vertical direction.
(no discont=true nor smartview=false used here, numpoints set to its default falue)

If you use plottools:-getdata(a); you find that the vertical range is about  0..1800.
It seems to mean that smartview=true (the default setting) overrides the range determined from the values of discont and numpoints?
 

My question is: Is it possible to retrieve the vertical range that plot uses when it displays the graph?
 

Dear all,

I need your help to compute the multiplicative  group generated by the following two matrices.

A :=  Matrix(2, 2, [[2, 0], [0, 1]]) ;

B := Matrix(2, 2, [[1, 1], [0, 1]]) ;

 such that A.B different to B.A

many thanks

 

Hello Dr/Pof/Colleague

Please help me on the ODE BVP problem

my target i want RUN double loop


 

restart

with(plots)

b := 0; c := 0; k[1] := 1; k[2] := 0; Un := 0; d := 0

Eq1 := (101-100*lambda)*(1+a*phi(eta))*(diff(f(eta), `$`(eta, 3)))+(diff(f(eta), `$`(eta, 2)))*(f(eta)+g(eta)+a*(diff(phi(eta), eta)))-(diff(f(eta), eta))^2+k[2]+Un*(k[2]-(1/2)*eta*(diff(f(eta), `$`(eta, 2)))-(diff(f(eta), eta))) = 0

(101-100*lambda)*(1+a*phi(eta))*(diff(diff(diff(f(eta), eta), eta), eta))+(diff(diff(f(eta), eta), eta))*(f(eta)+g(eta)+a*(diff(phi(eta), eta)))-(diff(f(eta), eta))^2 = 0

(1)

Eq2 := (101-100*lambda)*(1+a*phi(eta))*(diff(g(eta), `$`(eta, 3)))+(diff(g(eta), `$`(eta, 2)))*(f(eta)+g(eta)+a*(diff(phi(eta), eta)))-(diff(g(eta), eta))^2+k[2]+Un*(k[2]-(1/2)*eta*(diff(g(eta), `$`(eta, 2)))-(diff(g(eta), eta))) = 0

(101-100*lambda)*(1+a*phi(eta))*(diff(diff(diff(g(eta), eta), eta), eta))+(diff(diff(g(eta), eta), eta))*(f(eta)+g(eta)+a*(diff(phi(eta), eta)))-(diff(g(eta), eta))^2 = 0

(2)

NULL

Valpha := [0, .1, .2]; Va := [0, 0]

etainf := 100

bcs := (D(f))(0) = k[1], (D(g))(0) = alpha, f(0) = 0, g(0) = 0, (D(f))(etainf) = k[2], (D(g))(etainf) = k[2]

(D(f))(0) = 1, (D(g))(0) = alpha, f(0) = 0, g(0) = 0, (D(f))(100) = 0, (D(g))(100) = 0

(3)

dsys := {Eq1, Eq2, bcs}

for j to 2 do for i to 3 do a := Va[j]; alpha := Valpha[i]; dsol[j][i] := dsolve(dsys, numeric, continuation = lambda); print(alpha); print(a); print(dsol[j][i](0)) end do end do

Error, incorrect number of arguments to _Inert_FORFROM

"for j from 1 to 2 do   for i from 1 to 3 do a:=Va[j]; alpha:=Valpha[i];  dsol[j][i]:=dsolve(dsys,numeric, continuation=lambda);  print(alpha);    print(a);  print(dsol[j][i](0));  od  end"

 

NULL

 


 

Download 3DAKc2alpha.mw

Hi all,

I need any help for the following question:

restart;
H :=n ->sum(1/k, k = 1 .. n) ;

If you computational devices has only 16 decimal points of accuracy, does computing H(n) for n greater than 10^16 give  any information about the series;

Many thanks

Hi,

     I am new to Maple and my task is to find an analytical solution of Lateral Vibrations of Beams. Even though I referred this forum to get an idea about solving a fourth order ODE bvp,I still couldn't find the solution. Although a non trivial solution exists for this case, Maple is still returning a trivial output(i.e the determinant is not returning zero). I need to find the value of constants C1 to C4 but I am unable to understand what the error is. I have attached the file containing my current solution below.

SOP2.mw

Any help will be appreciated,

Kind Regards,

Ajay

 

 

how can i determain the drawing dimensions ( length and width), if i want to draw two graphs of the same dimensions?

let
expression := {{a*x}, {{(b*y)}/3}, {a*b}, {log(x+y)}, {3*x}};

I would like to convert the above expression as
 

requiredForm :={a*x, (b*y)/3, a*b, log(x+y), 3*x};

I observed that the function convert can do some convertion but have to use second argument + or *. which causes unstable results.

One method I found is to convert the expression to string and remove "{}" using StringTools:-Remove function.
I would like to know if its possible to do with out converting to String.

result:= convert(expression, `+`);

                                    /1      \              
  
result:= {a b} + {a x} + {3 x} + { - {b y} } + {ln(x + y)}
                                    \3      /            
  

is there anyway I can get the requiredForm

I wanted to investigate this sum. can someone please help me identify why my code is producing the erroraneous output of 1/2 for every number, despite everything aside from the final computation being as expected.

 



Maple Worksheet - Error

Failed to load the worksheet /maplenet/convert/MAPLEHELP.mw .
 

Download MAPLEHELP.mw

With(group)

a:=[[seq(I,i=0..5)],[seq(I,i=6..8)]]

mulperms(a,a)

array out of range 

according to book, is this calculation?

how to calculate like the book do?

 

i use function 

https://www.maplesoft.com/applications/view.aspx?sid=154192&view=html

but not work

A list must have only 7 one and 50 zeros

length of list is fixed and equal 57

how to list all combination above?

First 777 778 779 780 781 782 783 Last Page 779 of 2433