MaplePrimes Questions

I have the following variable

s1:=(1/2/Pi+Q*cos(k*phi))^3*cos(k*phi)/(1+beta^2*(1/2/Pi+Q*cos(k*phi))^2)^2;

 

and then I make a substitution as follows

s2:= subs(cos(k*phi)=((1-u^2) / (1+u^2)),sin(k*phi)=((2*u) / (1+u^2)), s1)*1/(1 + u^2);  -----(1)

 

Now if I set up a function f that maps u to the right hand side of (1) above as follows

f:=u->(1/2/Pi+Q*(1-u^2)/(1+u^2...

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...

I  used the DEtools package recently.

When working in a differential algebra with _Envdiffopdomain=[Dt,t] maple still returns something like Dt t^2. I would like him instead to assume, that Dt= dt/t and rewrite it as 2t + t^2 Dt. How can I achieve this behavior?

I want to change the direction of the tickmark labels.  As far as I know, only the axes title labels can be oriented with labeldirections=[horizontal,vertical]. 

Can the tickmark labels along the x axis be vertically oriented?

 

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 ?

Good afternoon.

I have a problem.

I want to evaluate that equations

> aux1 := tau1-c11*x2q1(t)-c12*x2q2(t)-c13*x2q3(t)-g1-fric1;
> aux2 := tau2-c21*x2q1(t)-c22*x2q2(t)-c23*x2q3(t)-g2-fric2;
> aux3 := tau3-c31*x2q1(t)-c32*x2q2(t)-c33*x2q3(t)-g3-fric3;
when the variable fric1, fric2 and fric3 are cero and other values.
I like to watch the result in the same plot.
I am using Ode.
i send my file

If for example

L := [3, 4, 6, 7, 2, 3, 5, 4, 6, 8, 20, 4, 5, 12, 0, 5, 5, 5, 3]:

b := ListTools:-Enumerate(L):
g := plot(CurveFitting:-Spline(b, v), v = 1 .. 19):
gp:=pointplot(b):

display(g,gp)

It is a nice curve but between points at x=12 and x=13 there exists a large dip, and there are a few other smaller...

Hello, I need help in integrating a procedure in Maple 10. I got a numerical solution of a 2nd order ODE as a procedure (using dsolve), and want to integrate it over x=0..1. I tried the recipe from Maple help, but it doesn't go, because I can't separate the solution from the procedure which is a triple - the argument x, the solution itself, and its x-derivative. What should I do? Thanks in advance!

First, here is my code (the last 3 lines are actually a single expression, despite being split over multiple lines below):

with(Statistics):
with(Student):
with(Student[NumericalAnalysis]):
Student[Calculus1][Roots]:
k := 8;
size:=5000;
h:=3.1;
Llimit := evalf((size-1)-10*sqrt(2*(size-1)));
Uplimit := evalf((size-1)+10*sqrt(2*(size-1)));
evalf(Int((Int(CDF(Normal(0, 1), h/sqrt((size-1)*(1/x+1/y)))*PDF(RandomVariable
(ChiSquare(size-1...

How do I update  Maple 5 version  files ( or programs)  to the Maple 14  version ? . I mean I've done a lot of programs in the  Maple 5 version many years ago and now ( using   Maple 14 version) I can't visualize my  complete equations and worst my graphics .Could you help me ?

Hi,

 

I am trying to export an array of complex numbers to MathML.

I would like the numbers to be formatted a.aa x 10aa + a.aa x 10aa i

Anybody know how to do this?

 

Regards.

Hi all,

I have this piecewise function:

Mr := theta->piecewise(theta>=0 and theta<=(Pi/(2*p))-(beta/2),0,theta>(Pi/(2*p))-(beta/2) and theta<=(Pi/(2*p))+(beta/2),Br/mu0,theta>(Pi/(2*p))+(beta/2) and theta<=((3*Pi)/(2*p))-(beta/2),0,theta>((3*Pi)/(2*p))-(beta/2) and theta<=((3*Pi)/(2*p))+(beta/2),-Br/mu0,theta>((3*Pi)/(2*p))+(beta/2) and theta<=2*Pi/p,0);

I want to calculate the Fourier serie of this function without giving...

I use a simple for loop below to illustrate. For each loop through the index value I want to add the result of that loop to a list h. This is how I tried to do it but I can't quite get it because the value in h1 gets updated for each step through the for loop.

 

for i from 1 to 10 do

u[i]:=2*i;

h:=[]; h1:=[u[i],op(h)]

end do;

So after the for loop is terminated I want to be left with a list h:= ...

 

The coefficient of determination also known as R^2 tells how good a fit is. If R^2=1 the fit is perfect an if R^2=0 it's useless. But Maple don't have a native function to calculate R^2. I seached and found this: 
http://www.mapleprimes.com/questions/40171-Determining-An-Equations-Accuracy

But it only describe how to calculate R^2 on a 

First 1865 1866 1867 1868 1869 1870 1871 Last Page 1867 of 2430