MaplePrimes Questions

Hi,

Suppose i have 2 dimensional array of size (10,3), and what i need is to plot , first column with respect to second or third column. I dont know whehter it is possible or not. Please help me.

Thanx and regards

Sunit

I tried to install Maple 17 on my MacBook Pro 13" early 2011 w. Mountain Lion 10.8.5.
It always freezes, I can't press anything but the button animation is slowly blinking.

I'm stuck on the "Installation Setup".

Can someone help me solving this?

Hi,

I am trying to solve equation in the form of

We are writing object oriented packages, so we have various objects containing static export'ed methods, as recommended in Maple OO docs.  But if foo is an object, exports(foo) only shows the non-static exports, which is not very useful.  How can a user discover the static exports that are available for an object?

Thanks,

Tracy.

We are developing Maple packages for symmetries of DEs, the Maple packages are Maple-object-oriented, meaning that each package contains Maple objects and almost all methods are within objects (i.e. as static exports). Object and its methods are the main part of the package, package exports are mostly either Object-Names or Object-Constructor-Methods, so that our code has minimal footprint in the name space when loaded. 

We are now trying to write/organise Maple...

Good morning sir,

 

I request you to help me out to solve the equations by using Muller Method & Horner's method using Maple.

 

With thanks & regards

 

M.Anand

Hi all,

I am doing some rather complicated four-vector manipulations, which I would like to do with maple using the Physics package.  My problem is this: I can't figure out how to define a specific four-vector.  For example, one of my four-vectors is (p,0,0,p), while another is (p cos(theta), 0, p sin(theta), p).  Here's my attempt:

with(Physics);

Coordinates(X,quiet);

Define(P1[mu](p,0,0,p));

**Checking the components using e.g. P1[1...

I have to solve this question

Find d^2y/d^2x and d^3y/d^3x if y is defined implicitly by y+sin(y)=x

 

So far I have 

f:=y+sin(y)=x;

implicitdiff(f,y,x$2);

and

implicitdiff(f,y,x$3);

 

both of them spit out answers, but am I doing that right for the question that is asked?

Hey, how do I find the maximum/minimum values of f(x) on maple?

Hi,

I want to solve a small system of quadratic equations using Maple. There are 4 unknowns and 4 equations.

The solve function has a problem with that kind of a system (I'm sure that this system has a solution).

Is there a method of solving that kind of systems of equations in Maple ?

Thanks in advance.

In my maple 16 the following is returning FAIL. Why ? and what is the correct way to do the following.

restart:

assume(n::posint):

is(n^2<=2^n);

 

Regards!

I want to be able to check an answer using Maple. Say perhaps I have a question such as "Find d,e,f such that f(x)=dx2+ex+f has the properties f(0)=4, f(3)=7, f(-2)=18".

The question is completely theoretical as I don't want to use the same question that I have been given myself and be accused of cheating, maybe the particular features that I have chosen are completely absurd.

My question is how would I go about using Maple to find/check that I have the correct values of d,e and f?

Find a(n)of sequence3,9,18,54,63,...   (n=1,2,3,4,...) ,

Having a recurrence relation of the form:

f(n)*c_{n+1} + g(n)*c_n + h(n)*c_{n-1}=0

with coefficient functions f,g,h is it possible to convert this into a matrix of dimension N+1

thus if the sequences c_n are the coefficients of a series sum_{n=0}^{infinity} c_n x^n I'm only interested up to order N of the series

e.g. N=2

n=0: f(0)*c_{1} + g(0)*c_0 =0

n=1: f(1)*c_{2} + g(1)*c_1 + h(1)*c_{0}=0

n=2: g(2)*c_2 + h(2)*c_{1}=0

I need help coding the insertion sort algorithm in maple 17. So far, I have the following ..

First 1529 1530 1531 1532 1533 1534 1535 Last Page 1531 of 2430