Grafy.mw

> with(plots):
 

Určete definiční obor funkce a zakreslete jej do roviny. 

ln(x+y) 

funkce 

> f1:=(x,y)->ln(x+y);
 

</COMMENT>Browser's Java Plug-in not enabled. (1.1)
 

definiční obor 

> implicitplot(x+y>0,x=-3..3,y=-3..3,filledregions=true);
 

Plot_2d
 

vrstevnice 

> implicitplot([f1(x,y)=-1,f1(x,y)=0,f2(x,y)=1], x=-5..5, y=-5..5,gridrefine = 2, grid=[10,10], color=[red,green,blue]);
 

Plot_2d
 

průsečnice s rovinami x=0 a y=0 

> plot(f1(0,y),y=-5..5, labels=[y, z]); plot(f1(x,0),x=-5..5, labels=[x, z]);
 

 

Plot_2d
Plot_2d
 

graf 

> plot3d(f1, -5..5, -5..5, labels=[x, y, z]);
 

Plot_2d
 

>
 

 

sqrt(1-x^2)+sqrt(y^2-1) 

 

funkce 

> f2:=(x,y)->sqrt(1-x^2)+sqrt(y^2-1);
 

</COMMENT>Browser's Java Plug-in not enabled. (2.1)
 

definiční obor 

> inequal( {1-x^2>=0,y^2-1>=0}, x=-2..2, y=-2..2, color=red);
 

Plot_2d
 

vrstevnice 

> implicitplot([f2(x,y)=1,f2(x,y)=2], x=-1..1, y=-5..5,gridrefine = 2, color=[red,green]);
 

Plot_2d
 

průsečnice s rovinami x=0 a y=0 

> plot(f2(0,y),y=-5..5, labels=[y, z]); plot(f2(x,0),x=-5..5, labels=[x, z]);
 

 

 

Plot_2d
Warning, unable to evaluate the function to numeric values in the region; complex values were detected
Plot_2d
 

graf 

> plot3d(f2, -5..5, -5..5, labels=[x, y, z]);
 

Plot_2d
 

>
 

sqrt(1-x^2-y^2) 

 

funkce 

> f3:=(x,y)->sqrt(1-x^2-y^2);
 

</COMMENT>Browser's Java Plug-in not enabled. (3.1)
 

definiční obor 

> inequal( {1-x^2-y^2>=0}, x=-2..2, y=-2..2, color=red);
 

Plot_2d
 

vrstevnice 

> implicitplot([1-x^2-y^2=0.75^2,1-x^2-y^2=0.5^2], x=-3..3, y=-3..3,gridrefine = 2, color=[red,green]);
 

Plot_2d
 

průsečnice s rovinami x=0 a y=0 

> plot(f3(0,y),y=-5..5, labels=[y, z]); plot(f3(x,0),x=-5..5, labels=[x, z]);
 

 

Plot_2d
Plot_2d
 

graf 

> plot3d(f3, -5..5, -5..5,numpoints=10^5, labels=[x, y, z]);
 

Plot_2d
 

>
 

Určete a zakreslete do roviny vrstevnice funkce a její průsečnice s rovinami x=0 a y=0. 

|x|+|y| 

 

funkce 

> f4:=(x,y)->abs(x)+abs(y);
 

</COMMENT>Browser's Java Plug-in not enabled. (4.1)
 

vrstevnice 

> implicitplot([f4(x,y)=1,f4(x,y)=2], x=-3..3, y=-3..3,gridrefine = 2, color=[red,green]);
 

Plot_2d
 

průsečnice s rovinami x=0 a y=0 

> plot(f4(0,y),y=-5..5, labels=[y, z]); plot(f4(x,0),x=-5..5, labels=[x, z]);
 

 

Plot_2d
Plot_2d
 

graf 

> plot3d(f4, -5..5, -5..5, labels=[x, y, z]);
 

Plot_2d
 

>
 

sqrt(x^2+y^2) 

 

funkce 

> f5:=(x,y)->sqrt(x^2+y^2);
 

</COMMENT>Browser's Java Plug-in not enabled. (5.1)
 

vrstevnice 

> implicitplot([f5(x,y)=1,f5(x,y)=2], x=-3..3, y=-3..3,gridrefine = 2, color=[red,green]);
 

Plot_2d
 

průsečnice s rovinami x=0 a y=0 

> plot(f5(0,y),y=-5..5, labels=[y, z]); plot(f5(x,0),x=-5..5, labels=[x, z]);
 

 

Plot_2d
Plot_2d
 

graf 

> plot3d(f5, -5..5, -5..5, labels=[x, y, z]);
 

Plot_2d
 

>
 

x^2+y^2 

 

funkce 

> f6:=(x,y)->x^2+y^2;
 

</COMMENT>Browser's Java Plug-in not enabled. (6.1)
 

vrstevnice 

> implicitplot([f6(x,y)=1,f6(x,y)=2], x=-3..3, y=-3..3,gridrefine = 2, color=[red,green]);
 

Plot_2d
 

průsečnice s rovinami x=0 a y=0 

> plot(f6(0,y),y=-5..5, labels=[y, z]); plot(f6(x,0),x=-5..5, labels=[x, z]);
 

 

Plot_2d
Plot_2d
 

graf 

> plot3d(f6, -5..5, -5..5, labels=[x, y, z]);
 

Plot_2d
 

>
 

x^2-y^2 

 

funkce 

> f7:=(x,y)->x^2-y^2;
 

</COMMENT>Browser's Java Plug-in not enabled. (7.1)
 

vrstevnice 

> implicitplot([f7(x,y)=1,f7(x,y)=-1], x=-3..3, y=-3..3,gridrefine = 2, color=[red,green]);
 

Plot_2d
 

průsečnice s rovinami x=0 a y=0 

> plot(f7(0,y),y=-5..5, labels=[y, z]); plot(f7(x,0),x=-5..5, labels=[x, z]);
 

 

Plot_2d
Plot_2d
 

graf 

> plot3d(f7, -5..5, -5..5, labels=[x, y, z]);
 

Plot_2d
 

>
 

exp(x) 

 

funkce 

> f8:=(x,y)->exp(x);
 

</COMMENT>Browser's Java Plug-in not enabled. (8.1)
 

vrstevnice 

> implicitplot([f8(x,y)=exp(-1),f8(x,y)=1,f8(x,y)=exp(1)], x=-3..3, y=-3..3,gridrefine = 2,color=[red,green,blue]);
 

Plot_2d
 

průsečnice s rovinami x=0 a y=0 

> plot(f8(0,y),y=-5..5, labels=[y, z]); plot(f8(x,0),x=-5..5, labels=[x, z]);
 

 

Plot_2d
Plot_2d
 

graf 

> plot3d(f8, -5..5, -5..5, labels=[x, y, z]);
 

Plot_2d
 

>
 

1-x-y 

funkce 

> f9:=(x,y)->1-x-y;
 

</COMMENT>Browser's Java Plug-in not enabled. (9.1)
 

vrstevnice 

> implicitplot([f9(x,y)=-1,f9(x,y)=0,f9(x,y)=1,f9(x,y)=2], x=-3..3, y=-3..3, color=[red,green,orange,blue]);
 

Plot_2d
 

průsečnice s rovinami x=0 a y=0 

> plot(f9(0,y),y=-5..5, labels=[y, z]); plot(f9(x,0),x=-5..5, labels=[x, z]);
 

 

Plot_2d
Plot_2d
 

graf 

> plot3d(f9, -5..5, -5..5, labels=[x, y, z]);
 

Plot_2d
 

>
 

Určete definiční obor funkce 

sqrt(1-sqrt(x^2+y^2)-z)+sqrt(1-sqrt(x^2+y^2)+z) 

> implicitplot3d([1-sqrt(x^2+y^2)-z=0,1-sqrt(x^2+y^2)+z=0], x=-2..2, y=-2..2, z=-1..1, grid = [25,25,25], color=[red,green], labels=[x, y, z]);
 

Plot_2d
 

Definičním oborem je "káča", prostor tvořený průnikem dvou kuželů.