7 Pages

solutions6

Course: MATH 171A, Spring 2012
School: UCSD
Rating:
 
 
 
 
 

Word Count: 1419

Document Preview

171A: Math Linear Programming Instructor: Philip E. Gill Winter Quarter 2011 Homework Assignment #6 Due Friday February 18, 2011 Starred exercises require the use of Matlab. Exercise 6.1. (a) Consider the matrix of active constraints -1 -8 4 -7 -3 -4 2 0 4 -2 . Aa = -6 0 -3 3 5 0 0 5 2 7 Use solve.m to construct a direction p along which the residual of the third constraint increases, but all the other...

Register Now

Unformatted Document Excerpt

Coursehero >> California >> UCSD >> MATH 171A

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
171A: Math Linear Programming Instructor: Philip E. Gill Winter Quarter 2011 Homework Assignment #6 Due Friday February 18, 2011 Starred exercises require the use of Matlab. Exercise 6.1. (a) Consider the matrix of active constraints -1 -8 4 -7 -3 -4 2 0 4 -2 . Aa = -6 0 -3 3 5 0 0 5 2 7 Use solve.m to construct a direction p along which the residual of the third constraint increases, but all the other residuals remain the same. If the rows of Aa are labeled 1 through 4, what are the indices of the active set after a positive step along this direction? >> format compact >> Aa = [ -1 -8 -4 2 -6 0 0 0 >> e3 = [ 0 0 >> rank(Aa) ans = 4 4 0 -3 5 1 -7 -3 4 -2 3 5 2 7 ]; 0 ]'; The equation Aa p = e3 is guaranteed to be compatible (do you recall why?) >> p=solve(Aa,e3) p = -0.06484375000000 -0.06328125000000 -0.09296875000000 0 0.06640625000000 >> Aa*p ans = 0.00000000000000 0.00000000000000 1.00000000000000 0 >> diary off 2 Mathematics 171A Based on the components of the vector Aa p, we deduce that constraints 1, 2 and 4 have constant residual along p, whereas constraint 3 has increasing residual along p. This means that taking a small positive step along p will move us off constraint 3 but leave us on constraints 1, 2 and 4. Therefore the active set changes from {1, 2, 3, 4} to {1, 2, 4}. (b) Repeat part (a) for the vertex 0 9 0 Aa = -3 3 -8 -1 3 6 -5 -4 1 6 -4 5 1 6 -5 -4 -4 -5 3 2 . 5 -6 3 2 -3 0 7 -1 0 0 0 0 Comment on your results. Is the vertex degenerate or nondegenerate? >> Aa = [ 0 9 0 -3 3 -8 -1 >> rank(Aa) ans = 5 3 1 1 -4 5 -3 0 6 6 6 -5 -6 0 0 -5 -4 -5 3 3 7 0 -4 5 -4 2 2 -1 0 ]; The active constraint matrix has full column rank, but has more columns than rows. In this situation, the equations Aa p = e3 are unlikely to be compatible, which turns out to be the case. >> p=solve(A,e3) The equations Ax = b are incompatible. p = [] >> diary off Since the active constraint matrix has rank n, we are at a vertex. Since more than n constraints are active, the vertex is degenerate (see Page 59 of the Class Text). The incompatibility of the equations Aa p = e3 implies that we cannot move off constraint 3 while staying on the other constraints. Exercise 6.2. Let Aa be a nonzero m n matrix, and let CN denote the normal cone CN = {w : w = AT , a (a) Show that CN is a convex set. If w1 and w2 are any two vectors in CN , then w1 = AT 1 and w2 = AT 2 for nonnegative a a 1 and 2 . Given any [0, 1], it holds that w = (1 - )w1 + w2 = (1 - )AT 1 + AT 2 a a = AT (1 - )1 + 2 . a (6.1) Clearly (1 - )1 + 2 0 since 1 0 and 2 0. Hence w CN . As w1 and w2 are arbitrary and (6.1) holds for 0 1, we conclude that CN is a convex set. 0}. Homework #6 (b) Is CN a subspace of Rn ? Explain why or why not. 3 The normal cone CN is a subspace if w1 + w2 CN for all w1 , w2 CN . If CN = Rn (see, e.g., Exercise 6.3 below), then it is trivially a subspace because Rn is a subspace of itself. However, if CN Rn , then given any y CN , the vector -y CN . Hence, CN is not a subspace in general. Exercise 6.3. Suppose that the objective vector of a linear program is c = (-1, -2)T , and that the matrix of active constraints at a feasible point x is 1 1 1 -2 Aa = 1 -3 . 1 2 -1 0 (a) Is x a vertex? If so, is it degenerate or nondegenerate? Explain your answer. The point x is a vertex since Aa has rank n, i.e., rank(Aa ) = 2. Since more than two constraints are active (Aa is 5 2), the vertex is degenerate. (b) Graph the normal cone. Use your graph to either verify that x is optimal or find a direction p such that cT p < 0 and Aa p 0. a4 a1 a5 a2 a3 5 The normal cone is the whole plane R2 since every vector can be written as a nonnegative combination of the rows of Aa . This implies that every vector c satisfies c CN and there is no direction p such that cT p < 0 and Aa p 0. It follows that x is optimal. Exercise 6.4. Consider the linear program minimize subject to x1 ,x2 ,x3 3x1 - x2 + 2x3 - 2x1 + 4x2 + 4x3 x1 + 4x2 + x3 - 2x1 + x2 + 2x3 2x1 - 2x2 - 3x2 + x3 x1 x2 x3 6 5 1 0 -2 0 0 0, 4 Mathematics 171A and the point x = (1, 1, 1)T . Find the active set at x and determine if the point x is optimal. If x is not optimal, find a direction p such that cTp < 0 and Aa p 0. We use the m-file constraintValues.m to calculate the constraint values. >>type constraintValues >> function [r,feasible,infeasible]=constraintValues(x,A,b,tol) % [r,feasible,infeasible]=constraintValues(x,A,b,tol) % % Given a point x and a set of linear inequality constraints % Ax >=b, constraintValues computes the residual vector % r = Ax - b and the indices of the feasible and % infeasible constraints at x. % % On entry, x is the point at which feasibility is being tested. % A is the matrix for the inequalitues Ax >= b. % b is the right-hand side vector for Ax >= b. % On exit, r is the vector of constraint values. % feasible is the number of feasible constraints. % infeasible is the number of infeasible constraints. % This version dated 14-Jan-2007. if nargin < 4 tol = 10*eps; % Allows for rounding error when computing r; end r = A*x - b; feasible = length( find( r >= -tol ) ); infeasible = length( find( r < -tol ) ); >> >> A = [ -2 4 4 1 4 1 -2 1 2 2 -2 0 0 -3 1 1 0 0 0 1 0 0 0 1 ]; >> b = [ 6 5 1 0 -2 0 0 0 ]'; >> c = [ 3 -1 2 ]'; >> xbar = [ 1 1 1 ]'; >> [r,feas,infeas] = constraintValues(xbar,A,b) r = 0 1 0 0 0 Homework #6 5 1 1 1 feas = 8 infeas = 0 >> active = [1 3 4 5]; Aa = -2 4 4 -2 1 2 2 -2 0 0 -3 1 >> rank(Aa) ans = 3 Aa = A(active,:) Since Aa has full column rank but not full row rank, we conclude that x is a degenerate vertex. To check for optimality, we must find all the basic solutions of AT = c. There are a at most four (i.e., "4 choose 3") basic sets. >> basic = [ 1 2 3 ]; rank(Aa(basic,:)) ans = 3 >> lambda = solve(Aa(basic,:)',c) lambda = 0.7500 -0.5000 1.7500 This multiplier vector has a negative component, so we have to press on. >> basic = [ 1 2 4 ]; rank(Aa(basic,:)) ans = 3 >> lambda = solve(Aa(basic,:)',c) lambda = 1.7222 -3.2222 1.5556 >> basic = [ 1 3 4 ]; rank(Aa(basic,:)) ans = 3 >> lambda = solve(Aa(basic,:)',c) lambda = 0.5714 2.0714 -0.2857 So far, every basic solution has a negative component. One more basic solution to check. >> basic = [ 2 3 4 ]; rank(Aa(basic,:)) 6 Mathematics 171A ans = 3 >> lambda = solve(Aa(basic,:)',c) lambda = 1.6000 3.1000 -1.2000 Every basic solution has a negative component, so we can conclude that x is not optimal. To find a feasible descent direction, we use the solutions generated in the first part and attempt to move off constraints with a negative Lagrange multiplier. The multipliers will be recalculated as needed. >> basic = [1 2 3]; lambda = solve(Aa(basic,:)',c) lambda = 0.7500 -0.5000 1.7500 Since the second multiplier is negative, a move off of the second constraint in the active set (which is the third constraint of A) is a descent direction for the objective function. >> e2 = [ 0 1 0 ]'; p = -0.5000 -0.5000 0.2500 p = solve(Aa(basic,:),e2) We must see if p is a feasible direction, i.e., we must check if Aa p 0. >> format long >> Aa*p ans = -0.00000000000000 1.00000000000000 0 1.75000000000000 Good enough for government work! This means that we have a feasible direction with respect to the matrix of active constraints. We know that p is a descent direction, but let's check it anyway. >> c'*p ans = -0.50000000000000 If p had not been a feasible direction, then it would have been necessary to continue calculating a p corresponding to each of the three remaining basic sets until a feasible descent direction is found. In each case, the p must be defined so that it moves off of the constraint with a negative multiplier. Can you explain why this strategy is guaranteed to work? Homework #6 7 Exercise 6.5. Consider the linear program minimizexRn cTx subject to Ax b. Suppose that the objective vector is c = (0, 2, 2)T , and that at a vertex x, the active constraint matrix is given by 1 2 3 0 2 1 0 0 1 . Aa = 1 2 -1 0 -1 0 (a) Is x a degenerate or nondegenerate vertex? Explain your answer. The vertex is degenerate since more than n = 3 constraints are active at x. This tells us that the Lagrange multipliers associated with the vertex are not unique. 1 (b) Verify that = ( 4 , 1, 0, - 1 , 0)T is a vector of Lagrange multipliers at x. Is x optimal? 4 Explain your answer. The product AT is given by: a 1 0 AT = 0 a 1 0 1 2 3 4 0 2 1 1 0 1 0 = 2 = c. 2 2 -1 - 1 4 -1 0 0 Hence is a Lagrange multiplier. As the fourth component of is negative, does not is not unique. A short survey imply optimality. But from part (a), we know that of the basic solutions of the equation AT = c reveals that = (0, 1, 1, 0, 0)T is a a Lagrange multiplier also. As 0, we conclude that x is optimal.
Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

UCSD - MATH - 171A
Math 171A: Linear ProgrammingInstructor: Philip E. GillWinter Quarter 2011Homework Assignment #7 Due Friday February 25, 2011 Starred exercises require the use of Matlab. Exercise 7.1. Consider the linear program of minimizing cTx subject to the genera
UCSD - MATH - 171A
Math 171A: Linear ProgrammingInstructor: Philip E. GillWinter Quarter 2011Homework Assignment #8 Due Friday March 4, 2011 The second midterm exam will be held in class on Wednesday, March 2. Starred exercises require the use of Matlab. Exercise 8.1. Co
UCSD - MATH - 171A
Math 171A: Linear ProgrammingInstructor: Philip E. GillWinter Quarter 2011Homework Assignment #9 Due Friday March 11, 2011 The final will be held Friday, March 18, 11:30am-2:30pm. Starred exercises require the use of Matlab. Exercise 9.1. Let a denote
UCSD - MATH - 171A
Math 171A: Mathematical ProgrammingInstructor: Philip E. GillWinter Quarter 2011Homework Assignment #1 Due Friday January 14, 2011 I know that you are all aware of the importance of doing the homework assignments. This is the best way to keep up with t
UCSD - MATH - 171A
Math 171A: Linear ProgrammingInstructor: Philip E. GillWinter Quarter 2011Homework Assignment #2 Due Friday January 21, 2011 The starred exercises require the use of Matlab. Remember that it is necessary to do all the Matlab assignments to obtain credi
UCSD - MATH - 171A
Math 171A: Linear ProgrammingInstructor: Philip E. GillWinter Quarter 2011Homework Assignment #3 Due Friday January 28, 2011 Remember that the first midterm exam will be held in class on Wednesday, January 26. Starred exercises require the use of Matla
UCSD - MATH - 171A
Math 171A: Linear ProgrammingInstructor: Philip E. GillWinter Quarter 2011Homework Assignment #4 Due Friday February 4, 2011 Starred exercises require the use of Matlab. Exercise 4.1. Suppose that the constant vector c is such that cTp 0 for all p such
UCSD - MATH - 171A
Math 171A: Linear ProgrammingInstructor: Philip E. GillWinter Quarter 2011Homework Assignment #5 Due Friday February 11, 2011 Starred exercises require the use of Matlab. Exercise 5.1. Consider the set of inequality constraints Ax b, where 1 1 4 0 3 1
UCSD - MATH - 171A
Math 171A: Linear ProgrammingInstructor: Philip E. GillWinter Quarter 2011Homework Assignment #6 Due Friday February 18, 2011 Starred exercises require the use of Matlab. Exercise 6.1. (a) Consider the matrix of active constraints -1 -8 4 -4 2 0 Aa = -
UCSD - MATH - 171A
Math 171A: Linear ProgrammingInstructor: Philip E. GillWinter Quarter 2011Homework Assignment #7 Due Friday February 25, 2011 Starred exercises require the use of Matlab. Exercise 7.1. Consider the linear program of minimizing cTx subject to the genera
UCSD - MATH - 171A
Math 171A: Linear ProgrammingInstructor: Philip E. GillWinter Quarter 2011Homework Assignment #8 Due Friday March 4, 2011 The second midterm exam will be held in class on Wednesday, March 2. Starred exercises require the use of Matlab. Exercise 8.1. Co
UCSD - MATH - 171A
Math 171A: Linear ProgrammingInstructor: Philip E. GillWinter Quarter 2011Homework Assignment #9 Due Friday March 11, 2011 The final will be held Friday, March 18, 11:30am-2:30pm. Starred exercises require the use of Matlab. Exercise 9.1. Let a denote
Cal Poly - MCB - 32
1. The Cori cycle involves formation of glucose made by gluconeogenesis in the liver from lactic acid produced by fermentation in skeletal muscles. True False 2. Skeletal muscle contains glucose 6-phosphatase to produce free glucose from glucose 6phosphat
Cal Poly - MCB - 32
Chapter 15 - Defense Mechanisms I. Nonspecific defense: barriers to penetration of body/ A. Antigens large, complex, and foreign molecules internal defenses. B. Antigenic determinant sites stimulate production of diff. A. Phagocytic cells engulf invading
Cal Poly - MCB - 32
Glomerular Filtration I. Filtrate from plasma in glomerulusbasement mem of glom cap/ thru slits in processes of podocytes (inner layer of Bowman's capsule) A. Glomerular ultrafiltrate, formed under force of bp, low [protein] net filtration pressure = 10 m
Cal Poly - MCB - 32
AdrenergicEpinephrine, norepinephrine - Sympathetic &quot;fight or flight&quot; - Effects = stimulation of heart, vasoconstriction of skin, bronchodilation, glycogenolysis - alpha and beta (both have 2 subtypes) Nerve endings that release acetylcholine as a neurot
Cal Poly - MCB - 32
Number and Name I Olfactory II Optic III Oculomotor IV Trochlear V Trigeminal Mandibular Division VI Abducens VII Facial VIII Vestibulocochlear IX Glossopharyngeal X Vagus XI Accessory XII Hypoglossal Endocrine Gland Adipose Tissue Adrenal Cortex Adrenal
Cal Poly - MCB - 32
Number and Name I Olfactory II Optic III Oculomotor IV Trochlear V Trigeminal Mandibular Division VI Abducens VII Facial VIII Vestibulocochlear IX Glossopharyngeal X Vagus XI Accessory XII Hypoglossal Endocrine Gland Adipose Tissue Adrenal Cortex Adrenal
Cal Poly - MCB - 32
Guided Reading The Study of Body Function I 1. Blood plasma and interstitial fluid are separated from each other and there is little communication and exchange between these fluids. True False 2. The secretion of many hormones is regulated through negativ
Cal Poly - MCB - 32
Guided Reading - Enzymes and Energy I 1. Regulation of a metabolic pathway by the final product of the pathway is termed A. allosteric inhibition. B. end-product inhibition. C. negative feedback. D. Both end-product inhibition and negative feedback are co
Cal Poly - MCB - 32
Guided Reading - Cells and the Extracellular Environment I 1. Which of the following is a function of the steep Na+/K+ gradient across the cell membrane? A. provides energy for coupled transport B. creates electrochemical impulses C. maintains osmotic pre
Cal Poly - MCB - 32
Guided Reading - Cell Respiration and Metabolism I1. _ is the opposite of glycogenesis. A. Glycolysis B. Glyconeogenesis C. Glycogenolysis D. Gluconeogenesis 2. The process of fat formation from acetyl CoA is called A. lipogenesis. B. lipolysis. C. beta-
Cal Poly - MCB - 32
Guided Reading - Cell Respiration and Metabolism II1. Which of the following is a superoxide radical? A. an oxygen molecule with an extra, unpaired electron B. an oxygen molecule with two paired electrons C. hydrogen peroxide D. All of these choices are
Cal Poly - MCB - 32
Guided Reading - Cell Respiration and Metabolism II1. Which of the following is a superoxide radical? A. an oxygen molecule with an extra, unpaired electron B. an oxygen molecule with two paired electrons C. hydrogen peroxide D. All of these choices are
Cal Poly - MCB - 32
Guided Reading - Cell Respiration and Metabolism III1. Glycolysis converts glucose into two _ molecules. A. glycogen B. lactic acid C. acetyl CoA D. pyruvic acid2. Beta-oxidation of an 18 carbon fatty acid will yield _ acetyl CoA molecules. A. 9 B. 6 C.
Cal Poly - MCB - 32
Guided Reading - Cell Respiration and Metabolism III1. Glycolysis converts glucose into two _ molecules. A. glycogen B. lactic acid C. acetyl CoA D. pyruvic acid2. Beta-oxidation of an 18 carbon fatty acid will yield _ acetyl CoA molecules. A. 9 B. 6 C.
Cal Poly - MCB - 32
Guided Reading - Cell Structure and Genetic Control I1. Cells actively involved in secreting proteins would contain large numbers or quantities of A. lysosomes. B. peroxisomes. C. rough endoplasmic reticulum. D. smooth endoplasmic reticulum.2. Release o
Cal Poly - MCB - 32
Guided Reading - Cell Structure and Genetic Control I1. Cells actively involved in secreting proteins would contain large numbers or quantities of A. lysosomes. B. peroxisomes. C. rough endoplasmic reticulum. D. smooth endoplasmic reticulum.2. Release o
Cal Poly - MCB - 32
Guided Reading - Cell Structure and Genetic Control II1. Which of the following is NOT a molecular motor used to move substances along the cytoskeleton? A. melanin B. kinesin C. myosin D. dynein2. Which of the following locations have ciliated cells? A.
Cal Poly - MCB - 32
Guided Reading - Cell Structure and Genetic Control II1. Which of the following is NOT a molecular motor used to move substances along the cytoskeleton? A. melanin B. kinesin C. myosin D. dynein2. Which of the following locations have ciliated cells? A.
Cal Poly - MCB - 32
Guided Reading - Cell Structure and Genetic Control III1. The movement of chromosomes during mitosis is due to A. spindle fibers. B. telomeres. C. chromatids. D. actin and myosin.2. Small RNA and protein regions are joined together to make functional mR
Cal Poly - MCB - 32
Guided Reading - Cell Structure and Genetic Control IV1. The main function of the peroxisome is to release energy from food molecules and transform the energy into usable ATP. True False 2. Microtubules and microfilaments are the primary components of th
Cal Poly - MCB - 32
Guided Reading - Cells and the Extracellular Environment I1. Which of the following is a function of the steep Na+/K+ gradient across the cell membrane? A. provides energy for coupled transport B. creates electrochemical impulses C. maintains osmotic pre
Cal Poly - MCB - 32
Guided Reading - Cells and the Extracellular Environment II 1. Edema will result if a person has an abnormally low concentration of plasma proteins. True False 2. Osmoreceptors are involved in the regulation of blood volume. True False 3. Ion channels tha
Cal Poly - MCB - 32
Guided Reading Cells and the Extracellular Environment III1. The resting membrane potential is closest to the equilibrium potential for A. sodium ions. B. chloride ions. C. calcium ions. D. potassium ions.2. The transport maximum is related to the prope
Cal Poly - MCB - 32
Guided Reading - Cells and the Extracellular Environment IV 1. Which of the following is NOT a primary active transport pump? A. GLUT4 B. calcium pump C. sodium/potassium pump D. proton pump 2. What cofactor do matrix metalloproteinases need to be functio
Cal Poly - MCB - 32
Guided Reading - Chemical Composition of the Body I1. Molecules with polar covalent bonds are hydrophobic. True False2. How many single bonds can a carbon atom form if it is double-bonded to an oxygen atom? A. 1 B. 2 C. 3 D. 43. The ionized form of the
Cal Poly - MCB - 32
Guided Reading - Chemical Composition of the Body II1. Steroids are derived from cholesterol. True False 2. A blood pH of 7.6 is A. indicative of acidosis. B. indicative of alkalosis. C. in the normal physiological range. D. indicates effective buffering
Cal Poly - MCB - 32
Guided Reading - Chemical Composition of the Body III1. Lipids containing glycerol would include _ and _. A. triglycerides, steroids B. prostaglandins, phospholipids C. triglycerides, phospholipids D. steroids, prostaglandins2. The base that is NOT foun
Cal Poly - MCB - 32
Guided Reading - Enzymes and Energy I1. Regulation of a metabolic pathway by the final product of the pathway is termed A. allosteric inhibition. B. end-product inhibition. C. negative feedback. D. Both end-product inhibition and negative feedback are co
Cal Poly - MCB - 32
Guided Reading - Enzymes and Energy II1. Isomers are different forms of an enzyme. True False 2. During oxidation, a molecule or atom A. gains protons. B. loses protons. C. gains electrons. D. loses electrons. 3. Oxidized nicotinamide adenine dinucleotid
Cal Poly - MCB - 32
Guided Reading - Enzymes and Energy III1. Catalysts increase reaction rates by lowering the activation energy of a reaction. True False2. An enzyme elevated in the plasma of men with prostate cancer is A. alkaline phosphatase. B. catalase. C. creatine k
Cal Poly - MCB - 32
Guided Reading The Study of Body Function I1. Blood plasma and interstitial fluid are separated from each other and there is little communication andexchange between these fluids.True False2. The secretion of many hormones is regulated through negativ
Cal Poly - MCB - 32
Guided Reading - The Study of Body Function II1. Which of the following is NOT a major organ of the circulatory system?A. spleenB. heartC. lymphatic vesselsD. blood vessels2. Endocrine gland secretion is often controlled by the nervous system.True
Cal Poly - MCB - 32
Guided Reading - The Study of Body Function III1. Enamel, which is harder than bone or dentin, cannot be regenerated. True False2. Aristotle is considered the father of physiology because he attempted to apply physical laws to the study of human functio
Cal Poly - MCB - 32
Guided Reading - The Autonomic Nervous System I - Key1. Damage to the autonomic motor nerves would probably result in A. no change in muscle tone. B. muscle atrophy. C. flaccid paralysis. D. increased skeletal muscle contraction.Blooms Level: 2. Underst
Cal Poly - MCB - 32
Guided Reading - The Autonomic Nervous System I 1. Damage to the autonomic motor nerves would probably result in A. no change in muscle tone. B. muscle atrophy. C. flaccid paralysis. D. increased skeletal muscle contraction. 2. Damage to the thoracic and
Cal Poly - MCB - 32
Guided Reading - Blood, Heart, and Circulation I 1. Endogenously applied _ or tissue plasminogen activator (TPA) can induce blood clot dissolution. A. albumin B. streptokinase C. thromboxane A2 D. penicillin 2. What type of cell found in the blood produce
Cal Poly - MCB - 32
Guided Reading - Cardiac Output, Blood Flow, and Blood Pressure I 1. The type of shock resulting from lipopolysaccharides is termed A. hypovolemic shock. B. cardiogenic shock. C. septic shock. D. neurogenic shock. 2. Hypotension could be induced by A. exc
Cal Poly - MCB - 32
Blood, Heart, and Circulation Key101. Which anticoagulant and its action is NOT correctly matched? A. aspirin - inhibits prostaglandin production and platelet aggregation B. heparin - inhibits action of thrombin C. coumadin - inhibits tissue thromboplast
Cal Poly - MCB - 32
Guided Reading - The Central Nervous System I 1. _% of total blood flow to the body per minute goes to the brain. A. 15 B. 20 C. 25 D. 30 2. The neural tube and neural crest cells are of endodermal origin. True False 3. Ataxia is often associated with A.
Cal Poly - MCB - 32
Guided Reading - Endocrine Glands I 1. What is the function of prolactin in females? A. stimulates milk production in the mammary glands B. regulates the gonadotropins C. regulates water and electrolyte balance in the kidneys D. All of the choices and cor
Cal Poly - MCB - 32
Guided Reading - Blood, Heart, and Circulation I1. Endogenously applied _ or tissue plasminogen activator (TPA) can induce blood clot dissolution. A. albumin B. streptokinase C. thromboxane A2 D. penicillin2. What type of cell found in the blood produce
Cal Poly - MCB - 32
Guided Reading - Blood, Heart, and Circulation II1. Which vessels are most important for controlling resistance to blood flow? A. elastic arteries B. venules C. capillaries D. arterioles2. The lymphatic system can help cancer _ since cancer cells may en
Cal Poly - MCB - 32
Guided Reading - Blood, Heart, and Circulation III1. Myocardial cells exhibit a plateau phase instead of quickly repolarizing. This is due to A. inward diffusion of calcium through slow Ca2+ channels. B. inward diffusion of sodium through fast Na+ channe
Cal Poly - MCB - 32
Guided Reading - Blood, Heart, and Circulation IV1. What is the role of serotonin in blood clotting? A. causes platelets to become sticky B. enhances the platelet release reaction C. causes vasoconstriction of blood vessels to slow loss of blood D. conve
Cal Poly - MCB - 32
Guided Reading - Blood, Heart, and Circulation V1. Which anticoagulant and its action is NOT correctly matched? A. aspirin - inhibits prostaglandin production and platelet aggregation B. heparin - inhibits action of thrombin C. coumadin - inhibits tissue
Cal Poly - MCB - 32
Guided Reading - Cardiac Output, Blood Flow, and Blood Pressure III1. The sounds heard during the first phase of blood-pressure measurement are A. murmurs. B. snapping sounds. C. thumping sounds. D. muffled thumping sounds.2. Blood volume would be incre
Cal Poly - MCB - 32
Guided Reading - Cardiac Output, Blood Flow, and Blood Pressure I1. The type of shock resulting from lipopolysaccharides is termed A. hypovolemic shock. B. cardiogenic shock. C. septic shock. D. neurogenic shock.2. Hypotension could be induced by A. exc
Cal Poly - MCB - 32
Guided Reading - Cardiac Output, Blood Flow, and Blood Pressure II1. Sympathetic stimulation promotes an overall increase in blood flow resistance. True False2. At rest, most blood is within the venous system. True False3. The effect of acetylcholine b
Cal Poly - MCB - 32
Guided Reading - Cardiac Output, Blood Flow, and Blood Pressure IV1. The ability to distend with pressure increases is called A. chronotropism. B. oncotism. C. inotropism. D. compliance. 2. Angiotensin-converting enzyme (ACE) inhibitors like captopril bl