Gerencia de proyectos
Enviado por kellymartinez • 8 de Octubre de 2015 • Informe • 363 Palabras (2 Páginas) • 101 Visitas
Ejercicio 9.5
a1=int (input ('digite el valor de x1:'))
b1=int (input ('digite el valor de y1:'))
a2=int (input ('digite el valor de x2:'))
b2=int (input ('digite el valor de y2:'))
a3=int (input ('digite el valor de x3:'))
b3=int (input ('digite el valor de y3:'))
m1= (b2-b1)/(a2-a1);
m2= (b3-b1)/(a3-a1);
if m1==m2:
print ("pertenece a la recta")
else:
print ("no estan en la misma recta")
Ejercicio 9.6
a1=input('digite la longitud del lapiz 1')
a1=float(x1)
a2=input('digite la longitud del lapiz 2')
a2=float(x2)
a3=input('digite la longitud del lapiz 3')
a3=float(x3)
if x1**2== x2**2+x3**2 or x2**2== x1**2+x3**2 or x3**2== x1**2+x2**2:
print('forman un triangulo rectangulo')
else:
print('no forman un triangulo rectangulo')
Ejercicio 9.8
a1=int(input ('digite el valor de x1:'))
b1=int(input ('digite el valor de y1:'))
a2=int(input ('digite el valor de x2:'))
b2=int(input ('digite el valor de y2:'))
a3=int(input ('digite el valor de x3:'))
b3=int(input ('digite el valor de y3:'))
a4=int(input ('digite el valor de x4:'))
b4=int(input ('digite el valor de y4:'))
p1= (a1-b1)
p2= (a2-b2)
p3= (a3-b3)
p4= (a4-b4)
if p1==p2 and p3==p4 or p1==p3 and p2==p4 or p1==p3 and p2==p4:
print ('forman un rectangulo')
else:
print ('no forman un triangulo rectangulo')
Ejercicio 9.9
a1=int(input ('digite el valor de x1:'))
b1=int(input ('digite el valor de y1:'))
a2=int(input ('digite el valor de x2:'))
b2=int(input ('digite el valor de y2:'))
a3=int(input ('digite el valor de x3:'))
b3=int(input ('digite el valor de y3:'))
a4=int(input ('digite el valor de x4:'))
b4=int(input ('digite el valor de y4:'))
a5=int(input ('digite el valor de x5:'))
b5=int(input ('digite el valor de y5:'))
a6=int(input ('digite el valor de x6:'))
b6=int(input ('digite el valor de y6:'))
d1= (a4-a1)
d2= (a5-a2)
d3= (a6-a3)
d4= (b4-b1)
d5= (b5-b2)
d6= (b6-b3)
if d1==d2 and d1==d3 and d4==d5 and d5==d6:
print ('es una traslacion')
else:
print ('no es una traslacion')
Ejercicio 9.10
opcion=input ('esta lloviendo?, digite s si si o n si no:')
if opcion=='s':
print ('esperemos a que escampe')
...