Questions tagged [maple]

Programming questions related to the computer algebra system Maple.

Maple is an interactive engineering and scientific programming environment, as well as a high level programming language, from Maplesoft, Inc. It is also the computational engine behind MapleSim.

The following links can be useful:

636 questions
-2
votes
2 answers

how to construct sub-expressions with only two variables and one arithmatic operation from complex Expression Maple/Matlab?

let the Symbolic expression is as below. y = s + (a/b)*log((a+c)/(b*a)); %# it can be any type of expression how can I get all possible sub-expressions with two variables and one operator between them. subExpression1 = b*a; subExpression2 =…
Rohithsai Sai
  • 468
  • 4
  • 17
-2
votes
1 answer

Finding the error in this code

I keep receiving error,';' unexpected in this piece of maple code. I have looked and looked and just can't seem to find where I'm going wrong. Can anyone spot it? QSFactorization := proc (n::(And(posint, odd)), mult::nonnegint := 0, {…
savleavas
  • 19
  • 4
-2
votes
1 answer

I need to write a Maple procedure that finds every solution to the following inequalities:

I have the two inequalities y<=-1/2 * x and y>= -2/5 * x, subject to the constraint -20 <= x <= 0. Does anyone have an idea how I'd get maple to display (or better yet, count) all the solutions to these inequalities? Thanks for reading.
Bliebervik
  • 101
  • 2
-3
votes
1 answer

How should you calculate partial derivative ∂f/∂x using first the chain rule & directly in MAPLE?

If f(u,v) = vsinu+v^2, u(x,y)=tan^−1(y/x), v=sqrt(x^2 + y^2) Calculate using chain rule and directly substituting for u(x,y), v(x,y).
zae
  • 1
-3
votes
1 answer

find the smallest solution of an inequality function in maple

an =(5 − 77 sin(n) + 8n^2)/(1 − 4n^2), L=-2 For ε =1/500, use Maple to find the smallest N such that |aN − L| < ε. which command should I use? I have tried that: an:=(5 − 77 sin(n) + 8n^2)/(1 − 4n^2) solve(an+2=1/500) and this came out a really…
-4
votes
2 answers

need a Maple program

Write a Maple code in order to find all the at most three digits Pythagorean triples (a, b, c), for a, b, c > 0. We say that an integer triple(a, b, c) is a Pythagorean triple if a^2+b^2=c^2. Hint: You might need to use the command…
Tima
  • 1
1 2 3
42
43