Қалмахан Лейла

You might also like

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

Қожа Ахмет Ясауи атындағы Халықаралық қазақ-түрік университеті

БӨЖ

Орындаған: Қалмахан Лейла


Тобы: ЖМК-011
Қабылдаған: Еркишева Жазира

Түркістан 2023 жыл


8-апта
> restart;
> u1:=x^2+y^2+3*x-y=0;

> u2:= 3*x^2+2*x+y=0;

> z:=x^2-y^2;

> plot3d[x^2-y^2,{x,-5,5},{y,-5,5},Mesh->False,ViewPoint->{-
2.809,-3.237,1.467}];

> implicitplot3d(x^2/5+y^2/4=6*z,x=-4..4,y=-16..16,z=-1..1);

> plot3d( 2*x^2+y^2, x=-2..2, y=-3..3, axes=normal,view=0..8 );


> restart;
> with(plots);

> implicitplot(4*x^2+9*y^2=25, x=-25..25,y=-25..25);


> implicitplot3d(x^2/5+y^2/4=6*z,x=-4..4,y=-16..16,z=-1..1);

> implicitplot3d(x^2/12+y^2/4+z^2/3=1,x=-2..2,y=-12..12,z=-
1..1);
> implicitplot3d(x^2/81+y^2/36-z^2/9=1,x=-9..9,y=-6..6,z=-3..3);

> implicitplot3d(x^2/25+y^2-z^2/9=1,x=-1..1,y=-5..5,z=-1..1);
> plot3d( {4-x^2-2*y^2, 6-4*y}, x=-4..4, y=-3..3 );

> plot3d( 2*x^2+y^2, x=-2..2, y=-3..3, axes=normal,view=0..8 );


> plot( [3*cos(1/t), 2*sin(1/t), t=-0.1..0.1], axes=framed,
scaling=constrained,color= grey);

> plot( sin(4*theta), theta=0..2*Pi, coords=polar,


scaling=constrained );
> plot3d( x^2/4 - y^2/9, x=-3..3, y=-6..6, view=-1..1,
axes=boxed );

> implicitplot3d(2*x^2/100+3*y^2/9-z^2/9=1,x=-10..10,y=-3..3,z=-
3..3);
> implicitplot3d(5*x^2/25+y^2-z^2=25,x=-4..4,y=-5..5,z=-1..1);

> implicitplot3d(x^2/4+y^2/9-z^2/2+2,x=-55..55,y=-55..55,z=-
55..55);
> plot3d( theta*sqrt(1-z), theta=0..2*Pi, z=0..1,
coords=cylindrical, axes=normal );
> plot3d(cos(x*y)*sin(x*y),x=-2..2,y=-2..2);

> plot3d(sin(x^2+y^2)*x^2,x=-2..2,y=-2..2,style=hidden,
color=red);
> cylinderplot( [sin(s-t), s*t, s+t], s=0..Pi, t=0..Pi,
numpoints=1200 );
> plot3d( [s, t, s^2+t^2], s=-1..1, t=0..2*Pi,
coords=cylindrical, axes=normal );
9-апта
> restart;
> f(x)=x^2*sqrt(4-x^2);

> I1:=int((x^2*sqrt(4-x^2),x));

> f(x)=(3*sqrt(x)+4*x^2-5)/(2*x^2);

> I1:=int((3*sqrt(x)+4*x^2-5)/(2*x^2),x);

> f(x)=((1+x)^2)^(1/3);

> I1:=int(((1+x)^2)^(1/3),x);

> f(x)=(1/(2-3*x));
> I1:=int(1/(2-3*x),x);

> f(x)=sin(5-3*x);

> I1:=int(sin(5-3*x), x);

> f(x)=(1/(9*x^2+3));

> I1:=int(1/(9*x^2+3),x);

> f(x)=(3*x)/(4*x^2+1);

> I1:=int((3*x)/(4*x^2+1),x);

> f(x)=(1/(7*x^2-3)^(1/3));

> I1:=int(1/(7*x^2-3)^(1/3),x);

> f(x)=exp^(2-3*x);

> I1:=int(exp^(2-3*x),x);

> f(x)=(x^2/(x^2+1));

> I1:=int((x^2/(x^2+1)),x=0..1);

> f(x)=(x*cosx);
> I1:=int((x*cosx),x=0..Pi/2);

> f(x)=((x+2)/(x^2*(x-1)));

> I1:=int((x+2)/(x^2*(x-1)),x=2..3);

> f(x)=((sqrt(x^2-9))/x^4);

> I1:=int(((sqrt(x^2-9))/x^4),x=3..6);

> f(x)=(sin^3(x));

> I1:=int(sin^3(2*x),x=0..Pi/4);

> restart;
> f(x):=ln(x+5)/((x+3)^(1/4));

> Limit(f(x),x=0)=limit(f(x),x=0);

> f1(x):=(2^ln(x)-x)/(x-1);

> Limit(f1(x),x=infinity)=limit(f1(x),x=infinity);

> f2(x):=ln(x)/x^(1/3);

> Limit(f2(x),x=infinity)=limit(f2(x),x=infinity);

> f3(x):=exp(x)/x^5;

> Limit(f3(x),x=infinity)=(f3(x),x=infinity);
> I1:=Int(exp(2*x-7),x)=int(exp(2*x-7),x);

> plot(exp(2*x-7),x=-1..1,y=0..1);

> f(x):=2*x/(5-4*x^2);

> I2:=int(2*x/(5-4*x^2),x);

> f1(x):=x^3*(1+x^2)^(1/3);

> I3:=int(x^3*(1+x^2)^(1/3),x=0..1,output=steps);

> I4:=int(cos(x)/(1+cos(x)),x=0..Pi/4);

> f5(x):=1/(x^2+1);

> I5:=int(f5(x),x=4/3..3/4);
> f6(x):=1/(25+3*x)^(1/2);

> I6:=int(f6(x),x=-3..0);

> f7(x):=x^3/(x^4+4)^(1/2);

> I7:=int(f7(x),x=0..2);

> f8(x):=(1+ln(x))/x;

> I8:=int(f8(x),x=1..exp);

> f(z):=z^3/(z^8+1);

> I9:=int(f(z),z=0..1);

> I10:=int((3*x^4+3*x^2+1)/(x^2+1),x=0..1);

> I11:=int((2*x^4-5*x^2+3)/(x^2+1),x=2..3);

> I12:=int((1/(((x-1)^2)*(x+1)),x=3..5));

> f13(x):=1/(x^4+x^2);

> I13:=int(f13(x),x=1..sqrt(3));

> f14:=1/(x^3+1);

> I14:=int(f14,x=1..2);
> with(Student[MultivariateCalculus]):
> MultiInt(xy,y=1..2,x=1..2,output=steps);

> Int(Eval(xy*y,y = 1 .. 2),x = 1 .. 2);

> MultiInt(x^2+xy+2*y^2,x=0..1-x,y=0..1,output=steps);

> MultiInt(1/(3-x)^(5/3),x=1..3);
Error, (in Student:-MultivariateCalculus:-MultiInt) expected at least 3
arguments, got 2

>

You might also like