Maple Questions and Posts

These are Posts and Questions associated with the product, Maple

Although unfinished, this project I had left idle for a while and just thought to share with the community.  Not fancy by any means, no graphs or anything, was just having fun creating a worksheet on mortgages but then ran out of free time to work on things as usual, anywyas.  I skipped the derivation for the formula after n payments at the end and just provided the formula and dove right into an example.  For interest, my applications usually have numbers after...

Hello all,

I have the state-space form of a dynamics sytem:

X_dot = AX+B.U

Y= C X,

The initial conditions of the outputs (Y0) are also given.

A is 7x7 known matrix,

C is 14x7 known matrix,

B = 0;

The problem is that it's too long to write down every equations (14+7 eqns) and variables in "dsolve" function

Would you please show me the shorter way to solve a very large state-space system?

I really appreciate your help.

Hi all,

I have the following equation: A.X = Y

A is a 14x7 known matrix, Y is a 14x1 known matrix, and X is a 7x1 unknown matrix Would you please how to find the solution X of this equation in Maple.

Thank you so much,

STH

PS: I attached matrices A and Y in this post
A.txt
Y.txt

Dear friends, I recently answered a query concerning the action of the automorphism group of the Petersen graph on its edges at math.stackexchange.com. The algorithm that I present is quite naive, but it does produce the desired result. I thought I would share it here because it makes a nice Maple programming exercise e.g. for a talented student at high school level. (I have always thought that Polya counting and permutation groups belong into the high school curriculum.) It makes extensive use of Maple's internal hash function for compound objects to efficiently compare them during the computation. It is quite interesting to observe how Maple does work hard for several minutes to do this computation and then comes up with the correct answer. (Obviously the core computation needs to be done only once.) Enjoy!

Best regards, Marko Riedel

If you come up with a better algorithm then please do share it at the stackexchange link.

Important update Mar 24 2016. The algorithm at the above post is middling to say the least, but can perhaps serve as an example of Maple computational techniques. There is an efficient algorithm including Maple code here at math.stackexchange.com.

Dear Maple Users,

I do need to find the intersection of two surfaces which defined by two equations eq1 and eq2, (see attached file).

There was similar question on the MP: 
http://www.mapleprimes.com/questions/127821-How-To-Plot-The-Intersection-Of-Three-Surfaces

, but that doesn't work in my case. And I can't understand why....

 

 

 

 

Hello everyone,

I am trying to execute a procedure but its not giving me the desired output.

Please have a look.

Ad_proc.mw

Thanks

I'm using maple 14 on a win7 2.8gHz 4gb laptop and over the past 2 days my maple has fallen appart, i'm trying to print a worksheet that is only 5 pages and not especialy complicated but maple's memeroy usage is exploding up to 400mb, or 1.3gb if i actually run the code. I need to print the work sheet and it just spent half an hour "spooling" i don't know what is causing maple to go haywire

hi frndz...i want to generate a matrix of order n x n in maple through loops..for example if equation is 
rUi-1,j+1 -2rUi,j+1 +rUi+1,j+1 = rUi-1,j -2rUi,j +rUi+1,j

then how to write code that it generates n x n matrix for above equation if at jth level values are known and j+1 level vaules are unknown...

Hi,

After upgrading to Maple 16.02, the Maple code:

eqn3:=diff(y(x),x)=x+sin(y(x));
IC3:=[y(0)=2,y(3)=0];
DEplot(eqn3,[y(x)],x=-5..5,IC3,y=-5..5,arrows=comet,linecolor=BLACK);

produces the directions field but fails to produce the solution curves.

I have tried the same code on two different machines running Maple 16.02 with identical results.  I have also tried the code on Maple 16.01.  In this case the solution curves are produced.

How to find the integral
int((ln(sin(x)^2+1)-ln(cos(x)^2+1))/(-cos(2*x)), x = 0 .. (1/2)*Pi)
in closed form with Maple?

hi all;

my orginal function is :

f(x)=(29/2)*x^2-(899/24)*x^4+(26941/720)*x^6+...

i want plot pade approximation and orginal function in the maple 14, i wrote command as follows:

is my command  Correct?    

> with(numapprox);
> f := (29/2)*x^2-(899/24)*x^4+(26941/720)*x^6;
> e := pade(f, x, [5, 4]);
> with(plots);
> P := plot(f, x = 0 .. 1, style = point, color = "SteelBlue");

Why does Maple put space after a new string?

How to prevent Maple from doing that?

Screenshot

A plot command with the only argument of

sqrt(75-3*x^2)

used to work (up through version 15).  With 16.02 Maple produces nothing but axes.  It is still smart enough to use its default range for the x-axix and to figure out an appropriate range for the y-axis, but it cannot (will not) draw the curve.

If I were a student wanting to...

hi,

I am trying to make a custom on maple but when i get an error on dynamicSystems saying:

> sys := DynamicSystems[AlgEquation](eq, inputvariable = [Altura(t)], outputvariable = [Teste(t)]);
Error, (in DynamicSystems:-AlgEquation) algebraic equations cannot depend on past/future values of the input/output

But if i change AlgEquation to diffEquation i get no error. I dont have any diff equation on the system. This is happening with one of the "equations":

Hello Everybody!
I am working on an interesting problem right now. Please read it and let me know what you think.

Lets assume there is some function f(v) where v is argument-vector with fixed length. It is known, that the function is a rational type of function with integer coefficients from the vector v.

It is required to find analytic expression for this function.

In other words, we can compute...

First 1510 1511 1512 1513 1514 1515 1516 Last Page 1512 of 2224