gkokovidis

2335 Reputation

13 Badges

20 years, 299 days
Draeger Medical Systems, Inc.

 

 

Regards,
Georgios Kokovidis
Dräger Medical

MaplePrimes Activity


These are answers submitted by gkokovidis

You have two sets of sets.  ?list for more details.  The attached worksheet manually converts each set into a list and then using commands from the ListTools package, arrives at your final desired result.  There are probably other, more elegant ways to do this.   

Download 221_set_list_sort.mws

 

Regards,
Georgios Kokovidis
Dräger Medical

While not a "proof", by inspection it looks equivalent.

>restart:

>eq:=4*cos(theta)^3-3*cos(theta);

>combine(eq);

 

Regards,
Georgios Kokovidis
Dräger Medical

Take a look at the help files for the select command.

?select

>restart:

>L:=[1,2,3,2,4,6,5,0,9,0,3,4,4];

>select(x->x<=3 and x>1,L);

>nops(%);

In one line:

>nops(select(x->x<=3 and x>1,L));

The syntax for the select command used above was taken from the following document:

www.mast.queensu.ca/~math418/m418oh/maple.pdf

 

Regards,
Georgios Kokovidis
Dräger Medical

I is the built in root of x^2 = -1, that is why you are getting an error.  You can change this using the line below at the beginning of your worksheet.  Then I[pk]:=10
will work. 

interface(imaginaryunit=j):

?interface for more help on this topic

 

Regards,
Georgios Kokovidis
Dräger Medical

The above code, using cut and then paste into v12 works fine.

 

Regards,
Georgios Kokovidis
Dräger Medical

restart:

plot(x^4 + 6*x^3 + 3*x^2 + 6,x=-6..1);

solve(x^4 + 6*x^3 + 3*x^2 + 6,x);

evalf(%);

This will give all solutions, including the complex ones.

fsolve(x^4 + 6*x^3 + 3*x^2 + 6,x=-6..-1);

This will return just the x values that result in y=0.  The range was chosen

after looking at the output of the plot command.  Look at the help files for

each of the solve commands (fsolve and solve) for more details. 

 

Regards,
Georgios Kokovidis
Dräger Medical

replace e with exp and look at the help pages for the solve command. Each of the commands below will bring up the help pages.  There are examples there that you can use.

?exp

?solve

 

Regards,
Georgios Kokovidis

I think this is what is meant:

ln(exp(1));

                 1

As Axel points above this, "e" does not have any particular meaning in Maple.

Regards,
Georgios Kokovidis
Dräger Medical

verify(sin(x)/cos(x),tan(x),'testeq');

works as well.

 

 

Regards,
Georgios Kokovidis
Dräger Medical

restart: with(plots):

implicitplot(x^2 + y^2 <= 4, x=-2..2, y=-2..2,filled=true,numpoints=1000);

For more help on this, ?implicitplot

The following link to the Maple Applications Center might be usefull to you.

Regards,
Georgios Kokovidis
Dräger Medical

?plottools[ellipse]  will get you started.

 

Regards,
Georgios Kokovidis
Dräger Medical

This site has a similar example that you can open in Maple and examine yourself.

Scroll 2/3 of the way down the page and open the file titled FITODES2.MWS

Regards,
Georgios Kokovidis
Dräger Medical

restart:

Q := x* 2500/(2+3*6^(1/2))^2/(3*6^(1/2)-2)^2;

simplify(%,[radical]);

I asked a similar question on comp.soft-sys.math.maple.  The square brackets "expand" the expression first, and then simplification occurs, w.r.t. radicals.  You can replace "radical" with "sqrt" and it will work as well.  This is not an explanation, but it will force a solution.  I have not seen any documentation on this.  If anybody has a link where this is documented, I would like to see it.

 

Regards,
Georgios Kokovidis
Dräger Medical

Correct.  That is the difference between it working and not working.  The rest is up to you.

Regards,
Georgios Kokovidis
Dräger Medical

 What happens if you change your last line to:

LineInt(VectorField(<x^2*y, x^3, x*y>), Path(<sin(t), cos(t), 1/4* (sin(t)^2 - cos(t)^2)>,t=0..2*Pi));

Do you get the answer that you are expecting?

 

Regards,
Georgios Kokovidis
Dräger Medical

First 29 30 31 32 33 34 35 Last Page 31 of 75