Fórmulas

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 9

> restart;with(plots):

Grupo 4: Raúl Fortes, Diego Calixto,Pablo Fernandez


>
implicita circunferencia
> implicitplot((x-2)^2+(y-3)^2-16,x=-3..7,y=-2..8,numpoints=500,co
lor=blue,axes=frame,labels=[x,y],thickness=2,scaling=constrained
);

explicita
> plot([3+sqrt(16-(x-2)^2),3-sqrt(16-(x-2)^2)],x=-2..6,color=[brow
n,green],axes=frame,labels=[x,y],thickness=2,scaling=constrained
);

Page 1
parametrica
> plot([2+4*cos(t),3+4*sin(t),t=0..2*Pi],color=magenta,axes=frame,
labels=[x,y],thickness=2,scaling=constrained);

( x2 )2 ( y3 )2

1 implicita elipse
25 4
> implicitplot((x-2)^2/25+(y-3)^2/4-1,x=-3..7,y=-2..8,numpoints=50
0,color=blue,axes=frame,labels=[x,y],thickness=2,scaling=constra
Page 2
ined);

explicita elipse
> plot([3+sqrt(4-(4*(x-2)^2/25)),3-sqrt(4-(4*(x-2)^2/25))],x=-5..9
,color=[brown,green],axes=frame,labels=[x,y],thickness=2,scaling
=constrained);

parametrica elipse
> plot([2+5*cos(t),3+2*sin(t),t=0..2*Pi],color=magenta,axes=frame,
Page 3
labels=[x,y],thickness=2,scaling=constrained);

( x2 )2
parabola y3
4
implicita, explicita y parametrica parabola
> implicitplot(y-3-(x-2)^2/4,x=-6..10,y=0..10,color=blue,labels=[x
,y],thickness=2,scaling=constrained);

> plot([3+((x-2)^2/4)],x=-6..10,y=0..10,color=green,labels=[x,y],t
Page 4
hickness=2,scaling=constrained);

> plot([2+t,3+1/4*t^2,t=-infinity..infinity],x=-6..10,y=0..10,colo
r=magenta,labels=[x,y],thickness=2,scaling=constrained);

representación ejercicios de superficies: hiperboloide, cilindro


hiperbólico e hiperboloide
> implicitplot3d((x+1)^2 - 9/4*y^2 + 1/4*z^2
-1,x=-5..10,y=-5..10,z=-5..10,labels=[x,y,z],scaling=constrained
Page 5
);

> plot3d([sqrt(4/9*(x+1)^2 + 1/9*z^2 -4/9),(-sqrt(4/9*(x+1)^2 +


1/9*z^2
-4/9))],x=-5..10,y=-5..10,z=-5..10,labels=[x,y,z],style=patchnog
rid,scaling=constrained,grid=[100,100]);
Error, (in plot3d) first argument must be either in standard or parametric form
>
> implicitplot3d(x^2 - 4*y^2 + (z-2)^2
,x=-5..10,y=-5..10,z=-5..10,labels=[x,y,z],scaling=constrained);

Page 6
> implicitplot3d(8*x^2 - 2*(z-1)^2 +
4,x=-7..7,y=-7..7,z=-7..7,labels=[x,y,z],scaling=constrained);

( x2 )2 ( y3 )2
  1 implicita hiperbola
9 4
> implicitplot(-(x-2)^2/9+(y-3)^2/4-1,x=-5..10,y=-2..10,numpoints=
500,color=green,labels=[x,y],thickness=2,scaling=constrained);
Page 7
explicita hiperbola
> plot([3+sqrt(4+(4*(x-2)^2/9)),3-sqrt(4+(4*(x-2)^2/9))],x=-5..9,c
olor=[brown,green],axes=frame,labels=[x,y],thickness=2,scaling=c
onstrained);

parametricas hiperbola
> plot({[2+3/cos(t),3+2*tan(t),t=-Pi/2..Pi/2],[2+3/cos(t),3+2*tan(
t),t=Pi/2..3*Pi/2]},color=magenta,axes=frame,labels=[x,y],thickn
Page 8
ess=2,scaling=constrained);

>

Page 9

You might also like