Investigación de operaciones
UNIVERSIDAD AUTONOMA DE COAHUILA
FACULTAD DE SISTEMAS
TAREA
PRESENTADO PARA ACREDITAR PRIMER PARCIAL DE LA ASIGNATURA DE:
“INVESTIGACION DE OPERACIONES”
ELABORADOPOR:
ANA LOURDES GARCÍA VÁSQUEZ
RAÚL GARCÍA LÓPEZ
JUAN JOSÉ RODRÍGUEZ BARRIOS
SERGIO GONZALEZ
ARMANDO CONTRERAS LÓPEZ
MAESTRO: MIGUEL ANGEL MENDOZA ZAMORA
ARTEAGA, COAHUILA27 DE SEPTIEMBRE DE 2013
1. Sugarco produce tres tipos de barras de caramelo. Cada barra está hecha totalmente de azúcar y chocolate. En la tabla se muestran las composiciones decada barra y la utilidad obtenida con cada barra.
Se dispone de 50 onzas de azúcar y 100 onzas de chocolate. Después de definir xi como el número de tipo i producida, Sugarco tendría que resolverel PL siguiente
>> A=[1 -3 -7 -5 0 0 0;
0 1 1 1 1 0 50;
0 2 3 1 0 1 100;]
A =
1 -3 -7 -5 0 0 0
0 1 1 1 1 0 50
0 23 1 0 1 100
>> A(3,:)=(1/A(3,3))*A(3,:)
A =
1.0000 -3.0000 -7.0000 -5.0000 0 0 0
0 1.0000 1.0000 1.0000 1.0000 050.0000
0 0.6667 1.0000 0.3333 0 0.3333 33.3333
>> A(2,:)=-(A(2,3))*A(3,:)+A(2,:)
A =
1.0000 -3.0000 -7.0000 -5.0000 0 0 00 0.3333 0 0.6667 1.0000 -0.3333 16.6667
0 0.6667 1.0000 0.3333 0 0.3333 33.3333
>> A(1,:)= -(A(1,3))*A(3,:)+A(1,:)
A =
1.0000 1.66670 -2.6667 0 2.3333 233.3333
0 0.3333 0 0.6667 1.0000 -0.3333 16.6667
0 0.6667 1.0000 0.3333 0 0.3333 33.3333
>>A(3,:)=(1/A(3,3))*A(3,:)
A =
1.0000 1.6667 0 -2.6667 0 2.3333 233.3333
0 0.3333 0 0.6667 1.0000 -0.3333 16.6667
0 0.6667...
Regístrate para leer el documento completo.