Maple 16 Questions and Posts

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

Dear friends.

How can i increasing or removing the software limits for maple 16.

Hi!

How to solve attached equation in Maple?

Is there a possiblity to solve using units?

 

 

wzel

 

PS

Solution was done in Mathcad

 

 

Hello every one,

I have a question about summing data from an ode.

ode:=diff(T(x),x$2)-T(x)^2=0;

bc:=T(0)=1,T(n)=0;

n:=3:

 

Thanks

Hi every one

I was wondering whether is it possible to make a subzone plot with in a zone or not?

some thing like this

 Thanks

Hello everybody,

I just realised Maple is allowed for my upcoming exam after New Year.

My plan is to have templates of the most common math problems, I might encounter for quick solutions.

Anyway, I have run into a problem with Laplace shifted data, particularly initial value problems. I have been searching for HOURS, and feel like I have look up everything on google, maplesoft and other sites without succes.

I hope some of you are able to help me. The exercise is:

Hey guys,

I installed the 64 bit version of Maple 16, but it's still running as "maple.exe*32"? There is a similar quesion somewhere here...but this hasnt solved my issue...

There is no more Maple-software installed on the notebook. The other maple-tasks (mserver.exe) are running in 64bit-mode...

some specs: Thinkpad W520, i7-processor, 8GB RAM, Win7 (64bit)

Merry Christmas! :)

 

 

Hello everyone,

I have data in Excel sheet. I want to make the data smooth using cubic spline. 

My try can be found in the attached maple sheet. In my try, i was unable to see the

difference bewteen the exact data and the interpolated data. Please have a look and

help to smooth the given data in the attached Excel sheet.

Cubic_spline_smoothi.mw

This example was reported to me after a Calculus II student encountered this ridiculous result:

f := (k+5)/sqrt(k^7+k^2):
Int( f, k=1..infinity ):
% = value( % );
/infinity
| k + 5
| -------------- dk = -infinity
| (1/2)
/1 / 7 2\
\k + k /

In the name of God,

 

Hello dear experts,

I have a nonlinear multivariate system. By running fsolve and with the same initial values, 2 times, at the first time it yields the result but at the second time it doesn't solve. All of the settings in the both fsolve executions are the same.

Do you have any idea?

 

Best regards,

 

Hi all,

I read the help on using parameters, then I tried to modify the example


f := proc(a, b, c)

    if _params['b','c'] = NULL then
    a
    elif _params['c'] = NULL then
    a + b
    else
    a + b + c

    end if

end proc:

I can't really spot where it went wrong, but it just wouldnt execute as I would expect...

Hi all,

A := [[1,2],[3,4]];

A1:=convert(A, Matrix);

 

I am very happy with conversion between Matrices and Vectors.

However, I does not seem to be able to do this backwards to [row] or [column] Vectors???

Say how do I get back to A from A1???

 

I tried to use

convert(A1,Vector);

convert(A1,Vector[row]);

convert(A1,Vector[row],2);

 

And many others...

Hi all,

 

Toy example

myproc:=proc(a,b,c) a*b*c; end proc;

myproc(1,3,4);

myproc(2,3,4);

myproc(5,2,1);


is there a way to input all these together? say myproc({1,3,4},{2,3,4},{5,2,1});

and then get an ouput in the end (list, Vector, array or whatever sensible format)

I remember seeing an example of doing that somewhere, but couldnt find it again...

 

Thanks!

 

Casper

Hi all,

Is there an easy way to find first and last entries of a vector which is non zero?

 

fa:=proc(x)
local i;
while x[i]<>1 do
i:=i+1;
end do;
end proc;

 

fa(<1|0|0|1|0|0>);

 

That does not work. I have also tried to use

while 'x'[i]<>1 do

 

keeps getting error saying: Error, (in fa) bad index into Vector

 

What's the best way to get result 1 (in this case...

Hi,

I know all the necessary computational steps to create a Linear Regression line, but I am having trouble making it into a succient procedure. I have to make a 3 procedures for three methods, minimizing Vertical distance, Horizontal, and lastly, Diagonal. 

I uploaded an example of my work to compute a linear regression line, minizming vertical distance. I have all the necessary steps for horizontal and diaganol as well. 

 

 

I have to write a procedure that finds four positve numbers with a two decimail digits such that their sum and product is equal to 7.11. i.e a+b+c+d=a*c*b*d=7.11

I know i have to use loops but I have no idea how to start

please help , my deadline is near

First 24 25 26 27 28 29 30 Last Page 26 of 40