Maple Questions and Posts

These are Posts and Questions associated with the product, Maple

 

 

let us consider the series

 

y = a_0 - sum(a_i,i=1..n)

 

here the terms a_i are defined recurrsively as follows

 

a_i = (a_(i-1) -4*ln(x)/ln(10) + 4/10 + 4*ln(a_(i-1)) )/ ( 1+ 4/(a_(i-1) * ln(10)))

 

a[n] := (a[n-1]-4*ln(x)/ln(10)+4*(1/10)+4*ln(a[n-1]))/(1+4/(a[n-1]*ln(10)))

 

how can i program this in maple. so i can...

 

what is the general sum formula for the following seires (we may notice from these few terms it has a pattern)

 

f:=x->x^3:
y[1]:=0.5:
y[3]:=subs(x=y[1],f(x)):
i := 2:
y[i] := y[i-1]-(y[1]-y[2+1])*(1/2):
i:=1:
g[i] := (y[i+1]-y[i+2])*x/(y[i]-y[i+1])+(y[i+2]*y[i]-y[i+1]*y[i+1])/(y[i]-y[i+1]):
g[i] := unapply(g[i], x):
h[i] := unapply(solve(y = g[i](x), x), y):
for i from 2 by 1 to 7 do
g[i]:=(f@h[i-1])(x);
g[i]:=unapply(g[i],x);
y[i+2]:=subs(x=y[i+1],g[i](x));
s:=solve(z=g[i](x),x);
h[i]:=unapply(s[1],z);
end do:

for i from -1 by -1 to -8 do

 Hello,

I am trying to use a worksheet developed by Professor Batista [ritz06.mws] for calculating plate vibration frequencies using the Ritz method, which is available from the Applications directory - Mechanical Engineering folder.  The worksheet was developed using Maple 12 and I am using Maple 11; a careful reading of the file didn't show any commands that were incompatible across the two versions and yet I am not able to solve the worksheet using the default inputs provided in the worksheet.  I have attached a PDF output of the file with the error message.  Any assistance that could be offered would be greatly appreciated.

Please send your response to wayne.bell@fpl.com.

Kind regards,

Symbolic_integral.mw

Thanks in advance



Friends,

 

I am very beginner of Maple softs, in order to proceed with my project i need to model a simple Human Knee joint and  to do its simulation, Somebody please help on this, otherwise i cant able to proceed with my project.

 

Waiting for a solution

Vinil

Hey!

I'm really new on using maple 14 and I need help please.

I want to either connect maple 14 software with an oscilloscope for data acquisition or import the data captured by the oscilloscope to maple 14 and manipulate this data with the software for dynamic system analysis so I was wondering if anyone knows a programming code or a command to do this please =( I'm stuck

 

Thanks for your attention...

Hi,

I would like to define the following exceptions:

0/0 should be equal with 0, but any other x/0 should be infinity, if x>0 or -infinity, if x<0.

In the following example, I show what I achieved, however, I also would like to have equation (8) to be infinity.

BR,

Zoltan Faigl

 



Hello,

I have got a question. I have an Hamiltonianfunctionand want to differentiate this function to all variables. There is no problem with most of the variables, but one doesn't work. The error above occures, when I use the button "execute the entire worksheet". When I just press Enter, the errror does not occure and the right results are presented. But I am not abel to use the results.

Has anyone an idea how I can solve this problem?

Thanks in advance.

dear all,

          i have a simple optimization problem. the objective function is like A*X + B = E and the constraints are 100 <E < 8000 and 10<X<600. I want to find the Min and Max ranges of A and B such that Amin*Xmin+Bmin=Emin and analogous for maximum. I am not sure about the correctness of my modeling. Please guide me to proceed. Thanks.

How to interpolate in terms of any form of algebra in maple?

For example, to interpolate a time series in terms of exponential or mixed with cos and sin?

I would like to know how to find an extreme (max) point of function of two variables:

and how to manage with this error

"Warning, solutions may have been lost

                                                  ...

How to solve a set or a system of differential equations in maple for motion with Schwarzchild metric?

 

************** Schwarzchild metric *****************
with(tensor):
coord := [t, r, theta, Phi]:

g_compts:=array(symmetric,sparse,1..4,1..4):

g_compts[1,1]:=1 - 2*G*M/(r*c^2):
g_compts[2,2]:=-(1 - 2*G*M/(r*c^2))^(-1):
g_compts[3,3]:=-r^2:
g_compts[4,4]:=-(r^2)*sin(theta)^2:

g1 := create([-1,-1], eval(g_compts)):

I have a nonlinear partial diff eq which I am sure has been categorized.  How do I go about finding literature on the eq & the approach to solve it.  I have visited various websites that have catalogs of nonlinear partial diff eq's.  The problem is notation is so NONSTANDARD I have no IDEA what I am reading.  I have included a PDF eq_of_choice.pdf with my notation which I am familiar with. ...

First 262 263 264 265 266 267 268 Last Page 264 of 2219