Maple 16 Questions and Posts

These are Posts and Questions associated with the product, Maple 16

In the name God,

Hello all,

I'm a maple16-x64 user.

I am to solve a nonlinear 3-equation-system (Vector RO) for which I have It's exact solution up to 90 digits(Vector valued;)

http://bayanbox.ir/blog/hossayni/codes/RO.m?download

http://bayanbox.ir/blog/hossayni/codes/valued.m?download 

I would like to have Maple reproduce the well known result that the geometric power series with first term 1 and common ratio x, with |x|<1, converges to 1/(1-x). When I do:

 

sum(x^k,k=0..infinity);

 

I get - 1/(x-1). Which is okay, but is there a way to force Maple to produce 1/(1-x)?

 

Thanks!

Hello,

I was wondering if there is any function to represent matrices into linear equations. For an example,

if A=Matrix([[1,2],[2,3]]) , B=Matrix([[x[1]], [x[2]]]) and C=

Hello, I have a set of equations, and I want to solve it over the integers (mod 13). But msolve command fails. Here is my code:

eq:={a4*a1-11, a4*a2-12, a4*a3-6, a5*a1-3, a5*a2-8, a5*a3-4, a6*a1-2, a6*a2-1, a6*a3-7};
msolve(eq,13);

It fails, but I can solve it manually. Here is a solution:

a4*a1 = 11 => a4:=1 and a1:=11

a4*a2 = 12 => a2:=12

a4*a3 = 6 => a3:=6

a5*a1 = 3 => a5:=3/11 mod 13 = 5

a5*a2 = 8 => a2:=8/5 mod 13 = 12

In the name of God

 

Hello all,

Look at these instructions, entered in maple16(x64):

 

temp:=Matrix(25000):

--- Up to now, about 5 Gb's of my 8Gb memory is occupied and no problem

unassign('temp');

gc()

temp:=Matrix(25000):

Error, (in Matrix) Maple was unable to allocate enough memory to complete this computation. Please see

Hi,

 

Recently, I upgraded from Maple 13 to Maple 16.  I have been using Maple for 20 years --- Maple V Release 2 (1992) through Maple 16 (2012), and I participated in beta testing Maple V Release 4, which developed what we now call the Classic Interface.  The Classic Interface is amazing --- it was better than Mathematica in 1994 and it is still better than Maple's Standard Interface.  The Standard Interface is missing features that were...

1. a)given ∫(0..4)∫(√x..2) of sin(pi)*y^3 dydx, graph the region, R, in the xy plane.

b)Write double integral which reverses the order of integration and then evaluate.

 

2. Find centroid of cardioid of region enclosed by cardioid r=1-sin(theta)

 

3. a)Graph wedge cut from cylinder x^2+y^2=9, and by planes, z=-y, and z=0, and above the xy plane.

b)Write the integral which finds the volume of the wedge and evaluate it.

Hi all,

Is there a quicker way to find all unknows from an expression?

unknowns.mw

Say I want a list contains ALL parameters. In this case, it would return

[w1,w2,mu,tau[2],tan[3],tan[4],eta[1],eta[2]]


Is there a way to do this?

Thanks!

Casper

test.mw

Hi all,

Here is the problem, I will try my best to describe it:

 

Firstly of all,

 

log(p[j,c]/(1-p[j,c]))=mu+tau[j]+eta[c];

log(p[j,c]/(1-p[j,c]))=mu+tau[j]+eta[c]

In this system, the 'j' is a time varying parameter, and the...

Hi, I need help with graphing a certain logistics population model for an initial population size that is equal to 1.

dy/dt = k(1 - y/M)y  k=2 M(t)=10e^-t/5 +3(1-e^-t/5)

So far I've worked out the values to input, but I don't know how to write it in Maple.

I know all I have to replace is the M in the dy/dt equation with these 2 values.

M(0) = 10

M(t goes to infinity) = 3

 

Hello,

I have an interesting type of IC (alpha*(D@D)(f)(0)+beta*(D@D)(f)(0)^3=f2), but maple

is unable to recognize it. Need assistance in this regard.

ic.mw

Thanks

I would like to know if there is any way to coax maple into spitting out the solution (1,1,1) for the system of equations {x2+y2+z2=3, x+y+z=3}. So far all I have come up with is

with(RegularChains)[SemiAlgebraicSetTools]:
R:=PolynomialRing([x,y,z]);
Display(SamplePoints([x^2+y^2+z^2=3,x+y+z=3],R),R);

This produces

x=1
y=1
z=1

as desired, but I would like to accomplish this without specifying the polynomial...

I've tried using Maple Help within the Maple software, but it is not very user friendly. Nothing seems to match up when I type the commands that it tells me, I always get an error. How do I find the moment generating function from a probability density function (pdf)?

 

Thanks.

Hello,

I have defined a function(say fun) to do certain task, it works well when I call it from a script file(say script1). However, when I copy the complete script1 and paste onto another script file(say script2), the function, fun, doesn't execute. It's very peculiar as my project requires lot of modification, so I copy the old script and...

Hello every one,

I am gettting this error "unable to store HFloat", while solving a system of ODES numerically.

restart:

eq1:=n*(-diff(f(eta),eta$2))^(n-1)*diff(f(eta),eta$3)+(2*n/(n+1))*f(eta)*diff(f(eta),eta$2)

-diff(f(eta),eta$1)^2-M*diff(f(eta),eta$1)+M*epsilon+epsilon^2+lambda*f1(eta)=0;

eq2:=diff(f1(eta),eta$2)+P*(2*n/(n+1))*(f(eta)*diff(f1(eta),eta$1))=0;

bc:=f(0)=0,D(f)(0)=1,D(f1)(0)=1,D(f)(N)=epsilon,f1(N)=0;

First 26 27 28 29 30 31 32 Last Page 28 of 40