Maple Questions and Posts

These are Posts and Questions associated with the product, Maple

how can i draw a polygon with labeled vertex by numbers which are inside of that polygon§

I have Maple 15.

I used one of the "Assistants" to solve a problem.

It offered me the command line code that would have solved the problem without the Assistant.

I saved that code to a file, and later tried to paste it into a new Worksheet.

It won't execute.  I can't convert it to anything that executes.

I assume Maple is viewing it as text, and not something that is executable.

sol1 := dsolve([diff(x(t),t) = y(t), diff(y(t),t) = -x(t), x(0) = 0, y(0) = 1...

L include kinetic energy

when F = diff( diff( L, dx), t) - diff(L,x)

i need to diff L with respect to dx, however, there is no dx in maple, how to do above equations?

with(DifferentialGeometry):
DGsetup([x],M):
ExteriorDerivative(x^2);

invalid frame: DGframe_data[0][1][2]

how to diff x^2 to get 2*x*dx with above command?

How come that I don't have a Maple Questioner Badge? 2886 people question Maple and I trust it unquestionably?

Even adiban who didn't post anything on this site, has it (as well as 10 other badges and a reputation of 1000).

I have a Pupil badge, which I couldn't get without asking a question - so I've asked at least 1 question.

Let's see if I get it after asking this question.

Alec

1.at parse(sprintf("%.3f",subs(x=1, pdf))); it error said number expected for floating point format

i need to copy the whole formula to pdf := something then it can calculate

2. also it can not plot

%%%% copyright by Martin Lee 2011%%%%%%%

l := [12, 14, 27, 35, 46, 49];
sl := gfun[listtoseries](l, x, egf);
g := convert(sl, ratpoly);
g := g - subs(x=0, g);
g := g/subs(x=1, g);
parse(sprintf("%.3f",subs(x=1, g)));
parse(sprintf("%.3f",subs(x=0.9, g)));

How to reserve dx when diff a formula

when i diff x^2 , need to be 2*x*dx but it only 2*x

How to reserve dx?

How do I create a symbolic sequence with a variable number of elements, so that later I can come back and set the number of elements to an integer? Maple has inert forms for many functions (e.g. Sum and sum), but there does not appear to be anything like "Seq" which would be the inert analogue of "seq".

Here are some of my attempts

  Ls:='seq'(a[j],j=2..p);
eval(Ls,p=5);
subs(p=5,Ls);
Ls:=seq(a[j],j=2..5);
Ls:='seq'(a[j],j=2..5);

Hi,

I have this problem when I use assume and assign a value to an assumed parameter.

Example:

restart:assume(beta>0):

g:=int(Sum(5*sin(n*beta*x),n=1..5),x) ;

beta:=1;

g;

Normaly beta:=1 is replaced into g. The result obtained is function of beta and beta:=1 is not replaced.

Why beta:=1 is not replaced in g ?

Thanks for suggestion

 

Following Christopher2222 request, I wrote the following procedures for "exact" cubic Hermite spline interpolation,

p:=proc(x0,p0,m0,x1,p1,m1,x)
local t,d;
d:=x1-x0;
t:=(x-x0)/d;
p0+(d*m0+(3*(p1-p0)-d*(2*m0+m1)+(2*(p0-p1)+d*(m0+m1))*t)*t)*t
end:

pb:=proc(x0,p0,x1,p1,m1,x)
local t,d;
d:=x1-x0;
t:=(x-x0)/d;
p0+(2*(p1-p0)-d*m1+(p0-p1+d*m1)*t)*t
end:

pe:=proc(x0,p0,m0,x1,p1,x...

Hello friends, help, I created a symmetric matrix whose graph is 17 * 17, but in trying to apply

I'm trying to compute the determinant of a 19x19 matrix, each with entries consisting of multivariate polynomials (polys in 6 vars, of degree at most 8).  Specifically I want to factor the determinant.  Running this on Maple 15 quickly gives an "object too large" error in the determinant function, after using only 700 MB of RAM in about 2 minutes.  My machine has 3GB of RAM, so I am confused as to why this object is "too large". 

 

I...

It looks like maple uses the "builtin" `*` for multiplying polynomials.

I am trying to write a new function `&*` that will multiply polynomials with non-commutative coeficients. I was wondering how I could start by looking at how the "builtin" `*` works.

Hi,

F1(S):=1/(R*S-S+1);

G:=R3*k*(1-R1)/(C*Peci);

F(S):=F1(S)*(1-R*S*G);

I want to find, whether F(S) is postive or nagetive considering the following

1. if R3>0 and Peci>0 then F(S)>0 or <0 ?

2. if R3>0 and Peci<0 then F(S)>0 or <0 ?

3. if R3<0 and Peci>0 then F(S)>0 or <0 ?

First 1697 1698 1699 1700 1701 1702 1703 Last Page 1699 of 2224