Maple

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 5

> plot(x,x=-infinity..

infinity,color=green);

> plot(x^2,x=-infinity..infinity,color=yellow);
> plot([x,x=-infinity..infinity,color=green,x,x^2,x=-
infinity..infinity,color=yellow],x);

> with (plots):


implicitplot(5*x^2*y^3-4*y=3,x=-5..5,y=-5..5);
> implicitplot3d(z=x+2*y,x=-10..10,y=-10..10,z=-
10..10);

> implicitplot3d(x^3+2*y-z^2=5,x=-5..5,y=-5..5,z=-
5..5);
> limit(sqrt(x^2-5*x+3)-sqrt(x^2+2*x-1),x=infinity);
-7
2

> diff(5*ln(x)-sin(x)*cos(x)+4*x*exp(x^2-1),x);
5 2 2 (x 2 - 1) 2
2 (x - 1)
- cos(x) + sin(x) + 4 e +8x e
x

> int(x^5*exp(-x)-tan(x),x=0..1);
(-1)
-326 e + ln(cos(1)) + 120

> a:=<<1 | 2 | 3>, <4 | 5 | 6>, <7 | 8 | 9>>;


é1 2 3ù
ê ú
a := ê 4 5 6ú
ê ú
ê ú
ë7 8 9û

> det(a);
0

> with(LinearAlgebra):
a:=<<1,4,7>|<2,5,8>|<3,6,8>>;
é1 2 3ù
ê ú
a := ê 4 5 6ú
ê ú
ê ú
ë7 8 8û

> Transpose(a);
é1 4 7ù
ê ú
ê2 5 8ú
ê ú
ê ú
ë3 6 8û
> adj(a);
é -3 6 -3ù
ê ú
ê 6 -12 6ú
ê ú
ê ú
ë -3 6 -3û

> B := <<1,4,7>|<2,5,8>|<3,6,8>>:
MatrixInverse(B, method=subs);
é -8 8 ù
ê -1ú
ê 3 3 ú
ê ú
ê 10 -13 ú
ê 2ú
ê 3 3 ú
ê ú
ê ú
ë -1 2 -1û

You might also like