Está en la página 1de 7

LABORATORIO MATEMATICAS: SECCIONES CONICAS

Y TRANSFORMACIONES DE LA FUNCION
Ana Orjuela, Andrés Bruce, Diego González
EJEMPLO 1
CIRCUNFERENCIA:
subplot (2,2,1);
ezplot('(x-3) ^2+(y-4) ^2=9’, [-1 8 0 8])
title('circunferencia')
grid on

PARABOLA
subplot (2,2,2)
ezplot('(y-2)^2+4*(x-3)=0',[-10 5 -15 15 ])
grid on
title ('parábola')
ELIPSE
subplot(2,2,3)
ezplot('(x-2)^2/9+(y-2)^2/4=1',[-3 5 -1 5 ])
grid on
title('elipse')

HIPERBOLA
subplot(2,2,4)
ezplot('(x-1)^2/16-(y-3)^2/9=1',[-25 25 -25 25 ])
grid on
title('hipérbola')
EJEMPLO 2

syms x
figure
subplot (2,2,1)
ezplot('(x+3) ^2’, [-7 1 0 10])
axis ([-7 0.5 0 10])
title ('Traslación Horizontal')
grid on %
subplot (2,2,2)
ezplot ('(1/4) *(x+3) ^2',[-15 15 0 10])
axis ([-15 15 0 10])
grid on
title('contracción vertical')
subplot(2,2,3)
ezplot('(-1/4)*(x+3)^2',[-15 15 -10 0])
axis([-15 15 -10 0])
title ('Reflexión vertical')
grid on
subplot(2,2,4)
ezplot('2-(1/4)*(x+3)^2',[-15 15 -10 3])
axis([-15 15 -10 3])
title('Traslación Vertical')
grid on
EJEMPLO 3
 %Literal a:¿Qué tan lejos de la base del acantilado alcanza el proyectil su
%maxima altura?
syms x a b
x=-b/(2*a)
subs(x,a,(-8/625))
x1=(625*b)/16
subs(x1,b,1)
ans =
625/16
%Rta literal a: 625/16 pies aproximadamente 39 pies

 Literal B:encuentre la altura maxima del proyectil.


syms x h
h=(-8/625)*x^2+x+200
subs(h,x,(625/16))
ans =
7025/32
%Rta literal b:7025/32 pies aproximadamente 219.5 pies

 %Literal C:¿Que tan lejos de la base del acantilado chocará el proyectil


%con el agua?
syms x
eqn = (-8/625)*x^2+x+200= 0
solve(eqn)
%RTA LITERAL C: h1=625/16-(125*281^(1/2))/16
h2=(125*281^(1/2))/16+625/16
% h1=-91,8989 y h2= 170.0239 Se toma la distancia positiva
% h2= 170.0239 pies

 %Literal d:¿Cuando la altura del proyectil es 100 pies arriba del nivel del
%agua.¿Que tan lejos esta del alcantilado?
syms x
eqn = (-8/625)*x^2+x+200==100
solve(eqn)
%Rta literal d: d1=6625/16-(375*17^(1/2))/16 y d2=(375*17^(1/2))/16+ 625/16
% d1=-91.8989 y d2= 170.0239 Se toma la distancia positiva
% d2, d2=170.0239 pies

 %Literal e: Graficar la función h 0<x<200


x=0:0.1:200;
y= (-8/625) *x.^2+x+200
plot (x, y)

EJERCICIOS PROPUESTOS
1.A Elipse
syms x
figure
subplot(2,2,1)
ezplot('x^2/9+(y+5)^2/2=1',[-4 4 -7 -3])
title 'Punto 1A'
grid on

B. HIPERBOLA
syms x
figure
subplot(2,2,4)
ezplot('(x-1)^2/5-(y-2)^2/5/4=1',[-25 20 -20 20])
title 'Punto 1B'
grid on

C.PARABOLA
syms x y z
subplot(2,2,3)
ezplot('-4*(x*1/2)^2=y',[-10 10 -25 5])
grid on
title ('Punto 1C')

D. HIPERBOLA

syms x y z
subplot(2,2,4)
ezplot('(y-1)^2/5^2-(x+3)^2=1',[-25 25 -25 25 ])
grid on
title('Punto 1D')

2.
3.
4.
5. Deberá vender 100 unidades para tener un
ingreso máximo de 4000 dólares
syms x y z
ezplot('80*x-0.4*(x^2)',[-1 210 0 4500])
grid on
title ('Punto 5')

ANALISIS DE DATOS Y RESULTADOS


Conclusiones

Las dificultades presentadas en el desarrollo de la guía fueron mas que todo, algunos
comandos de Matlab ya que a veces se presentaba un error y por no saber como usar bien
Matlab no los identificábamos de la manera más rápida
En la parte de la práctica que permitió aclarar nuestras dudas fue mas que todo las de
graficar ya que siempre una ayuda visual es mejor que solo formulas

También podría gustarte