Thinking Like an Engineer: An Active Learning Approach (4th Edition)
Thinking Like an Engineer: An Active Learning Approach (4th Edition)
4th Edition
ISBN: 9780134639673
Author: Elizabeth A. Stephan, David R. Bowman, William J. Park, Benjamin L. Sill, Matthew W. Ohland
Publisher: PEARSON
bartleby

Videos

Textbook Question
Book Icon
Chapter 15, Problem 4RQ

Assume four row vectors named Prod10, Prod11, Prod12 and Prod13' contain data on production of various electronic devices at your company during the four years 2010, 2011, 2012, and 2013, respectively. The corresponding elements in each represent the number of a specific part manufactured during that year. For example, the first element might contain the number of 2N3904 transistors produced during each year, whereas the fifth element might contain the number of IC555 timer chips produced. You may assume all four vectors contain the same number of elements, corresponding to the same produced items.

Write a single line of code to answer each of the following questions. You may use the results of any question to answer subsequent questions if desired. Note that your solutions should work regardless of the number of elements in the four vectors.

  1. a. Create a new vector AvgProd that contains the total number of each item produced during the four-year period. Note that TotalProd will have the same number of elements as the original four vectors.
  2. b. Create a new vector AvgProd that contains the average number produced per year of each item during the four-year period. Note that AvgProd will have the same number of elements as the original four vectors.
  3. c. Create a four-element column vector YearProd that contains the total number of all units produced during each year, 2010 production should be in the first (top) element.
  4. d. Determine the maximum number of any type of device produced during each year and place the results in a four-element column vector MaxProd.
  5. e. Determine the maximum number of any device produced during any year and place the result in the scalar OverallMax.
  6. f. If your company makes a profit of one-fifth of one cent on each device produced, regardless of type, determine the total profit made during this four-year period and place the result in Profit. Your result should be in dollars.
Blurred answer
Students have asked these similar questions
A triangular distributed load of max intensity w acts on beam AB. The beam is supported by a pin at A and member CD, which is connected by pins at C and D respectively. Determine the largest load intensity, Wmax, that can be applied if the pin at D can support a maximum force of 18000 N. Also determine the reactions at A and C and express each answer in Cartesian components. Assume the masses of both beam and member ✓ are negligible. Dwas шал = A BY NC SA 2016 Eric Davishahl C D -a- Ур -b- X B W Values for dimensions on the figure are given in the following table. Note the figure may not be to scale. Variable Value a 6.6 m b 11.88 m C 4.29 m The maximum load intensity is = wmax N/m. The reaction at A is A = The reaction at C is = i+ Ĵ N. ĴN. 12 i+
The beam is supported by a pin at B and a roller at C and is subjected to the loading shown with w =110 lb/ft, and F 205 lb. a.) If M = 2,590 ft-lb, determine the support reactions at B and C. Report your answers in both Cartesian components. b.) Determine the largest magnitude of the applied couple M for which the beam is still properly supported in equilibrium with the pin and roller as shown. 2013 Michael Swanbom CC BY NC SA M ру W B⚫ C F ka b Values for dimensions on the figure are given in the following table. Note the figure may not be to scale. Variable Value a 3.2 ft b 6.4 ft C 3 ft a.) The reaction at B is B = The reaction at C is C = ĵ lb. i+ Ĵ lb. b.) The largest couple that can be applied is M ft-lb. == i+
The beam ABC has a mass of 79.0 kg and is supported by the rope BDC that runs through the frictionless pulley at D . The winch at C has a mass of 36.5 kg. The tension in the rope acts on the beam at points B and C and counteracts the moments due to the beam's weight (acting vertically at the midpoint of its length) and the weight of the winch (acting vertically at point C) such that the resultant moment about point A is equal to zero. Assume that rope segment CD is vertical and note that rope segment BD is NOT necessarily perpendicular to the beam. a.) Compute the tension in the rope. b.) Model the two forces the rope exerts on the beam as a single equivalent force and couple moment acting at point B. Enter your answer in Cartesian components. c.) Model the two forces the rope exerts on the beam as a single equivalent force (no couple) and determine the distance from A to the point along the beam where the equivalent force acts (measured parallel to the beam from A ). Enter your answer…

Chapter 15 Solutions

Thinking Like an Engineer: An Active Learning Approach (4th Edition)

Ch. 15.3 - a. Write a single MATLAB command that will create...Ch. 15.4 - a. Create the matrix CCM1=[180.34.11017] using a...Ch. 15.4 - Write single MATLAB statements to perform each of...Ch. 15.4 - Write single MATLAB statements to perform each of...Ch. 15.4 - Write single MATLAB statements to perform each of...Ch. 15.4 - Write single MATLAB statements to perform each of...Ch. 15.4 - For each of the following questions, write a...Ch. 15.5 - a. Create a variable named MTS containing the text...Ch. 15.6 - Assume a cell array named CA has three cells in a...Ch. 15.6 - Prob. 21CCCh. 15.7 - Create a structure array named Resistors...Ch. 15.7 - Use the data stored in MetalData to answer the...Ch. 15.7 - The structure array named Hdwr has the following...Ch. 15 - Which of the following are not valid MATLAB...Ch. 15 - Prob. 2ICACh. 15 - For the following questions, assume that the...Ch. 15 - For each calculation described below, write a...Ch. 15 - For each calculation described below, write a...Ch. 15 - For each of the vectors described below, write a...Ch. 15 - Assume the following vectors are already defined:...Ch. 15 - For each of the following sequences, write a...Ch. 15 - Modify the following statements so that they are...Ch. 15 - Assume you have three equal-length row vectors....Ch. 15 - Write the MATLAB code necessary to create the...Ch. 15 - For each of the following problems, write a single...Ch. 15 - Assume you have two equal-length row vectors IV1...Ch. 15 - Write the MATLAB code necessary to create the...Ch. 15 - Assuming t = [9 10; 11 12] and v = [2 4;6 8;10 12]...Ch. 15 - Determine solutions to the following problems a....Ch. 15 - For each of the following problems except part...Ch. 15 - Assume you have an N M matrix named Gonzo For...Ch. 15 - For each of the following tasks. write a single...Ch. 15 - Determine the contents of the variables created or...Ch. 15 - For each of the following tasks, write a single...Ch. 15 - For each of the following problems, write a single...Ch. 15 - Each of the following questions contains a...Ch. 15 - Prob. 25ICACh. 15 - Assume a cell array CA1 has already been defined....Ch. 15 - Prob. 27ICACh. 15 - You are setting up a structure array named client...Ch. 15 - You have three temperature values [C] stored in...Ch. 15 - You have N temperature values [C] stored in the...Ch. 15 - Assume four row vectors named Prod10, Prod11,...Ch. 15 - You have a 2 N matrix named GasData. The first...Ch. 15 - Assume the matrix M99 has at least two rows and at...Ch. 15 - Assume a matrix named Prod contains data on...Ch. 15 - You are studying the effects of climate change on...Ch. 15 - You are studying the properties of tiny spheres...Ch. 15 - Assume you have a four-column matrix named...Ch. 15 - One very old method of sending secret messages is...Ch. 15 - Prob. 13RQCh. 15 - Prob. 15RQCh. 15 - Refer to the specifications for Review Questions...
Knowledge Booster
Background pattern image
Mechanical Engineering
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, mechanical-engineering and related others by exploring similar questions and additional content below.
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
Elements Of Electromagnetics
Mechanical Engineering
ISBN:9780190698614
Author:Sadiku, Matthew N. O.
Publisher:Oxford University Press
Text book image
Mechanics of Materials (10th Edition)
Mechanical Engineering
ISBN:9780134319650
Author:Russell C. Hibbeler
Publisher:PEARSON
Text book image
Thermodynamics: An Engineering Approach
Mechanical Engineering
ISBN:9781259822674
Author:Yunus A. Cengel Dr., Michael A. Boles
Publisher:McGraw-Hill Education
Text book image
Control Systems Engineering
Mechanical Engineering
ISBN:9781118170519
Author:Norman S. Nise
Publisher:WILEY
Text book image
Mechanics of Materials (MindTap Course List)
Mechanical Engineering
ISBN:9781337093347
Author:Barry J. Goodno, James M. Gere
Publisher:Cengage Learning
Text book image
Engineering Mechanics: Statics
Mechanical Engineering
ISBN:9781118807330
Author:James L. Meriam, L. G. Kraige, J. N. Bolton
Publisher:WILEY
Heat Transfer – Conduction, Convection and Radiation; Author: NG Science;https://www.youtube.com/watch?v=Me60Ti0E_rY;License: Standard youtube license