SlideShare a Scribd company logo
1 of 11
Innovation technology questions
1 Explain how computer-aided design and flexible
manufacturing technologies help create small niches in the
market place. Provide an example to illustrate your answer
Answer: Computer-aided design and flexible manufacturing
help create small niches in the marketplace by allowing firms to
develop and produce a greater number of versions of their
products. This means that companies can now tailor their
offerings to small niches in the marketplace. For example, in
2012, Toyota offered 16 different passenger vehicle lines under
the Toyota brand (e.g., Camry, Prius, Highlander, and Tundra).
Within each of the vehicle lines, Toyota also offered several
different models (e.g., Camry L, Camry LE, Camry SE) with
different features and at different price points. Students’
answers will vary.
Page: 1
2At a retreat by the Cleveland City Council, community leaders
held a discussion on attracting and developing new businesses
and increasing employment rates in the city. One leader
suggested that the city should consider sponsoring a business
incubator. Explain what an incubator is and how this might help
the city meet its goals. What other ideas should be considered
Answer: An incubator is an institution designed to nurture the
development of new businesses that might otherwise lack access
to funding or advice. It allows companies to share costs and
resources until they can stand on their own. If an incubator were
started in Salisbury, it would help new businesses to grow and
prosper. These businesses could then move out to locations of
their own and hire local residents as employees. The city would
not have to offer tax breaks or compete with other cities for the
location of existing companies, but would be growing their own
businesses.
Page: 29-31
3 How can the s-curves be used as a prescriptive tool? What
would be the limitations of this approach?
Answer: Managers can use the s-curve model as a tool for
predicting when a technology will reach its limits and as a
prescriptive guide for whether and when the firm should move
to a new, more radical technology. Firms can use data on the
investment and performance of their own technologies, or data
on the overall industry investment in a technology and the
average performance achieved by multiple producers. Managers
could then use these curves to assess whether a technology
appears to be approaching its limits or to identify new
technologies that might be emerging on s-curves that will
intersect the firm’s technology s-curve. Managers could then
switch s-curves by acquiring or developing the new technology.
However, there are many limitations to doing this. First, it is
rare that the true limits of a technology are known in advance,
and there is often considerable disagreement among firms about
what a technology’s limits will be. Second, the shape of a
technology’s s-curve is not set in stone. Unexpected changes in
the market, component technologies, or complementary
technologies can shorten or extend the life cycle of a
technology. Furthermore, firms can influence the shape of the s-
curve through their development activities. For example, firms
can sometimes stretch the s-curve through implementing new
development approaches or revamping the architecture design of
the technology.
Page: 55
4 Explain what factors characterize the technology trajectory.
Discuss the factors that determine the success of a new
technology, besides its quality and technical advantage. Include
a diagram showing the trajectory and the factor’s influence
Answer: Increasing returns to adoption also imply that
technology trajectories are characterized by path dependency,
meaning that relatively small historical events may have a great
impact on the final outcome. Though the technology’s quality
and technical advantage undoubtedly influence its fate, other
factors, unrelated to the technical superiority or inferiority, may
also play important roles. For instance, timing may be crucial;
early technology offerings may become so entrenched that
subsequent technologies, even if considered to be technically
superior, may be unable to gain a foothold in the market. How
and by whom the technology is sponsored may also impact
adoption. If, for example, a large and powerful firm
aggressively sponsors a technology (perhaps even pressuring
suppliers or distributors to support the technology), that
technology may gain a controlling share of the market, locking
out alternative
technologies.
Page: 72
5. Even though many aerospace manufacturing firms are very
profitable, there are very few upcoming firms. Explain the
reason using Porter's five-force model.
Answer: According to Porter’s five-force model, the threat of
potential entrants is influenced by both the degree to which the
industry is likely to attract new entrants (i.e., is it profitable,
growing, or otherwise alluring?) and the height of entry
barriers. Entry barriers can include such factors as large start-up
costs, brand loyalty, difficulty in gaining access to suppliers or
distributors, government regulation, threat of retaliation by
existing competitors, and many others. In the aerospace
manufacturing industry, this threat is relatively low because of
the entry barriers. The cost of starting an aerospace company is
high and the existing companies are well-established. These
companies are large, have the contacts, personnel, and skills
necessary to meet the market demand, making it almost
impossible for a new company to compete with them.
Page: 112
ME202 Dr. Charles Negus
Computer Programming Applications for Mechanical Engineers
Head GSI: Timmy Siauw H
HW06: Linear Algebra
1. (5 points) Do Problem 12.8 (myNumSols) in Siauw and
Bayen
2. (10 points) Write a function with the header [U, b2, L] =
myForwardSweep(A,b) which
performs systematic linear transformation on the augmented
matrix [A|b]. Note that this function
should return not only the transformed A and b, but also a
matrix containing -m(i, j) used in the
transformation but also with 1’s on its diagonal. Recall that
m(i, j) = -A(i, j) / A(j, j)
Since m will only populate with elements below the diagonal,
you should first initialize m with nxn
zeros.
Test Cases:
>> format short
>> A = [815 98 158 142 656;
906 279 971 422 36;
127 547 958 916 850;
914 958 486 793 934;
633 965 801 960 679];
>> b = [5333; 6245; 12009; 12130; 12201];
>> [U, b2, L] = myForwardSweep(A,b)
U =
1.0e+03 *
0.8150 0.0980 0.1580 0.1420 0.6560
0 0.1701 0.7954 0.2641 -0.6932
0.0000 0 -1.5535 0.0680 2.9154
0 0 0 -0.8436 -3.2086
0 0 0 0 -0.1374
b2 =
1.0e+04 *
0.5333
0.0317
1.0188
-1.9418
-0.0687
ME202 Dr. Charles Negus
Computer Programming Applications for Mechanical Engineers
Head GSI: Timmy Siauw H
L =
1.0000 0 0 0 0
1.1117 1.0000 0 0 0
0.1558 3.1268 1.0000 0 0
1.1215 4.9871 2.3545 1.0000 0
0.7767 5.2270 2.2395 0.8098 1.0000
>> L*U
ans =
815.0000 98.0000 158.0000 142.0000 656.0000
906.0000 279.0000 971.0000 422.0000 36.0000
127.0000 547.0000 958.0000 916.0000 850.0000
914.0000 958.0000 486.0000 793.0000 934.0000
633.0000 965.0000 801.0000 960.0000 679.0000
3. (10 points) An upper triangular matrix is a square matrix with
all zeros BELOW the diagonal elements.
Write a function with header [x] = myBackSub(U, b) which
solves Ax = b for x given an nxn
upper triangular matrix A and an nx1 vector b. Use nested for
loops, do not use built in Matlab
functions inv, pinv, .
Test Case:
>> x = myBackSub(U, b2)
x =
1.0000
2.0000
3.0000
4.0000
5.0000
4. (10 points) Write a function with the header [y] = mySub(L,
b) which solves Ly=b for y given an
nxn lower triangular matrix L and an nx1 vector b. Use nested
for loops, do not use built in Matlab
functions, inv, pinv, .
Test Case:
>> L
L =
1.0000 0 0 0 0
1.1117 1.0000 0 0 0
0.1558 3.1268 1.0000 0 0
1.1215 4.9871 2.3545 1.0000 0
0.7767 5.2270 2.2395 0.8098 1.0000
ME202 Dr. Charles Negus
Computer Programming Applications for Mechanical Engineers
Head GSI: Timmy Siauw H
>> bNew = [10666; 12490; 24018; 24260; 24402];
>> y = mySub(L, bNew)
y =
1.0e+04 *
1.0666
0.0633
2.0376
-3.8835
-0.1374
5. (5 points) Write a function with the header [x] = myLU(L, U,
b) which solves LUx=b for a
given lower triangular matrix L, upper triangular matrix U, and
right hand side vector b. The function
body should only have two lines of code consisting of calls to
two of the functions you wrote earlier.
Test Case:
>> x = myLU(L, U, bNew)
x =
2.0000
4.0000
6.0000
8.0000
10.0000
>> x = myLU(L, U, b)
x =
1.0000
2.0000
3.0000
4.0000
5.0000
Deliverables: Submit the above m-files (separately, not zipped)
onto Blackboard.
• Be sure that the functions are named exactly as specified,
including spelling and case.
• You will get zero credit for a function if it is named wrong,
even if it works.

More Related Content

Similar to Innovation technology questions1 Explain how computer-aided .docx

MBIT Graduate Project Presentation
MBIT Graduate Project PresentationMBIT Graduate Project Presentation
MBIT Graduate Project PresentationDimitris Kosmidis
 
IT 210 Milestone One Guidelines and Rubric Overview Th
IT 210 Milestone One Guidelines and Rubric  Overview ThIT 210 Milestone One Guidelines and Rubric  Overview Th
IT 210 Milestone One Guidelines and Rubric Overview ThTatianaMajor22
 
Om0018 – technology management
Om0018 – technology managementOm0018 – technology management
Om0018 – technology managementsmumbahelp
 
Case Study 2 Improving E-Mail Marketing ResponseDue Week 8 and .docx
Case Study 2 Improving E-Mail Marketing ResponseDue Week 8 and .docxCase Study 2 Improving E-Mail Marketing ResponseDue Week 8 and .docx
Case Study 2 Improving E-Mail Marketing ResponseDue Week 8 and .docxmoggdede
 
Om0018 technology management
Om0018  technology managementOm0018  technology management
Om0018 technology managementsmumbahelp
 
Information Technology for Management 11th Edition Turban Test Bank
Information Technology for Management 11th Edition Turban Test BankInformation Technology for Management 11th Edition Turban Test Bank
Information Technology for Management 11th Edition Turban Test BankBentonner
 
Demystifying Engineering Analytics
Demystifying Engineering AnalyticsDemystifying Engineering Analytics
Demystifying Engineering AnalyticsCognizant
 
introDUction there is a lot of new process technology .docx
introDUction  there is a lot of new process technology .docxintroDUction  there is a lot of new process technology .docx
introDUction there is a lot of new process technology .docxtarifarmarie
 
Lpp through graphical analysis
Lpp through graphical analysis Lpp through graphical analysis
Lpp through graphical analysis YuktaBansal1
 
Building The Future Workforce Nov 2008
Building The Future Workforce Nov 2008Building The Future Workforce Nov 2008
Building The Future Workforce Nov 2008pkostek
 
Using the Emerging Technology Analysis Canvas
Using the Emerging Technology Analysis CanvasUsing the Emerging Technology Analysis Canvas
Using the Emerging Technology Analysis CanvasMarc-Andre Leger
 
United States Bankruptcy Law And Java Methods Answers
United States Bankruptcy Law And Java Methods AnswersUnited States Bankruptcy Law And Java Methods Answers
United States Bankruptcy Law And Java Methods AnswersAmanda Burkett
 
Utility business model
Utility business modelUtility business model
Utility business modelJosh Gould
 
Supply Chain Management - Optimization technology
Supply Chain Management - Optimization technologySupply Chain Management - Optimization technology
Supply Chain Management - Optimization technologyNurhazman Abdul Aziz
 
Imagine that you are Matt Chapman. Prepare a memo that recommends .docx
Imagine that you are Matt Chapman. Prepare a memo that recommends .docxImagine that you are Matt Chapman. Prepare a memo that recommends .docx
Imagine that you are Matt Chapman. Prepare a memo that recommends .docxwilcockiris
 
Please follow the data and description 20)Information richness .pdf
Please follow the data and description 20)Information richness .pdfPlease follow the data and description 20)Information richness .pdf
Please follow the data and description 20)Information richness .pdfapexsports101
 
Running head CASE STUDY QUESTIONS 1CASE STUDY QUESTIONS7.docx
Running head CASE STUDY QUESTIONS 1CASE STUDY QUESTIONS7.docxRunning head CASE STUDY QUESTIONS 1CASE STUDY QUESTIONS7.docx
Running head CASE STUDY QUESTIONS 1CASE STUDY QUESTIONS7.docxhealdkathaleen
 
Quantitative management
Quantitative managementQuantitative management
Quantitative managementsmumbahelp
 

Similar to Innovation technology questions1 Explain how computer-aided .docx (20)

MBIT Graduate Project Presentation
MBIT Graduate Project PresentationMBIT Graduate Project Presentation
MBIT Graduate Project Presentation
 
IT 210 Milestone One Guidelines and Rubric Overview Th
IT 210 Milestone One Guidelines and Rubric  Overview ThIT 210 Milestone One Guidelines and Rubric  Overview Th
IT 210 Milestone One Guidelines and Rubric Overview Th
 
Om0018 – technology management
Om0018 – technology managementOm0018 – technology management
Om0018 – technology management
 
Case Study 2 Improving E-Mail Marketing ResponseDue Week 8 and .docx
Case Study 2 Improving E-Mail Marketing ResponseDue Week 8 and .docxCase Study 2 Improving E-Mail Marketing ResponseDue Week 8 and .docx
Case Study 2 Improving E-Mail Marketing ResponseDue Week 8 and .docx
 
Om0018 technology management
Om0018  technology managementOm0018  technology management
Om0018 technology management
 
Information Technology for Management 11th Edition Turban Test Bank
Information Technology for Management 11th Edition Turban Test BankInformation Technology for Management 11th Edition Turban Test Bank
Information Technology for Management 11th Edition Turban Test Bank
 
Demystifying Engineering Analytics
Demystifying Engineering AnalyticsDemystifying Engineering Analytics
Demystifying Engineering Analytics
 
introDUction there is a lot of new process technology .docx
introDUction  there is a lot of new process technology .docxintroDUction  there is a lot of new process technology .docx
introDUction there is a lot of new process technology .docx
 
Lpp through graphical analysis
Lpp through graphical analysis Lpp through graphical analysis
Lpp through graphical analysis
 
QEAD .docx
QEAD                                                        .docxQEAD                                                        .docx
QEAD .docx
 
Building The Future Workforce Nov 2008
Building The Future Workforce Nov 2008Building The Future Workforce Nov 2008
Building The Future Workforce Nov 2008
 
Using the Emerging Technology Analysis Canvas
Using the Emerging Technology Analysis CanvasUsing the Emerging Technology Analysis Canvas
Using the Emerging Technology Analysis Canvas
 
United States Bankruptcy Law And Java Methods Answers
United States Bankruptcy Law And Java Methods AnswersUnited States Bankruptcy Law And Java Methods Answers
United States Bankruptcy Law And Java Methods Answers
 
Utility business model
Utility business modelUtility business model
Utility business model
 
Supply Chain Management - Optimization technology
Supply Chain Management - Optimization technologySupply Chain Management - Optimization technology
Supply Chain Management - Optimization technology
 
Imagine that you are Matt Chapman. Prepare a memo that recommends .docx
Imagine that you are Matt Chapman. Prepare a memo that recommends .docxImagine that you are Matt Chapman. Prepare a memo that recommends .docx
Imagine that you are Matt Chapman. Prepare a memo that recommends .docx
 
Please follow the data and description 20)Information richness .pdf
Please follow the data and description 20)Information richness .pdfPlease follow the data and description 20)Information richness .pdf
Please follow the data and description 20)Information richness .pdf
 
Chapter 3
Chapter 3Chapter 3
Chapter 3
 
Running head CASE STUDY QUESTIONS 1CASE STUDY QUESTIONS7.docx
Running head CASE STUDY QUESTIONS 1CASE STUDY QUESTIONS7.docxRunning head CASE STUDY QUESTIONS 1CASE STUDY QUESTIONS7.docx
Running head CASE STUDY QUESTIONS 1CASE STUDY QUESTIONS7.docx
 
Quantitative management
Quantitative managementQuantitative management
Quantitative management
 

More from jaggernaoma

Attached is a joint letter to Capitol Hill to advocate for increased.docx
Attached is a joint letter to Capitol Hill to advocate for increased.docxAttached is a joint letter to Capitol Hill to advocate for increased.docx
Attached is a joint letter to Capitol Hill to advocate for increased.docxjaggernaoma
 
Attached is a copy of an interview done with a Tribal member regardi.docx
Attached is a copy of an interview done with a Tribal member regardi.docxAttached is a copy of an interview done with a Tribal member regardi.docx
Attached is a copy of an interview done with a Tribal member regardi.docxjaggernaoma
 
Attached Files Week 5 - trace IP Physical Location.rtf (38..docx
Attached Files Week 5 - trace IP Physical Location.rtf (38..docxAttached Files Week 5 - trace IP Physical Location.rtf (38..docx
Attached Files Week 5 - trace IP Physical Location.rtf (38..docxjaggernaoma
 
Attached here is a psychology article I need to be summarized. Pleas.docx
Attached here is a psychology article I need to be summarized. Pleas.docxAttached here is a psychology article I need to be summarized. Pleas.docx
Attached here is a psychology article I need to be summarized. Pleas.docxjaggernaoma
 
Attached Files News Analysis Sample.docxNews Analysis Sam.docx
Attached Files News Analysis Sample.docxNews Analysis Sam.docxAttached Files News Analysis Sample.docxNews Analysis Sam.docx
Attached Files News Analysis Sample.docxNews Analysis Sam.docxjaggernaoma
 
Attached Files  SOC-220_SOCIAL PROBLEMS PRESENTATION.docx
Attached Files     SOC-220_SOCIAL PROBLEMS PRESENTATION.docxAttached Files     SOC-220_SOCIAL PROBLEMS PRESENTATION.docx
Attached Files  SOC-220_SOCIAL PROBLEMS PRESENTATION.docxjaggernaoma
 
Attached below you will find the series of 4 questions. This assignm.docx
Attached below you will find the series of 4 questions. This assignm.docxAttached below you will find the series of 4 questions. This assignm.docx
Attached below you will find the series of 4 questions. This assignm.docxjaggernaoma
 
Attached below isWEEK 4 As always, include references. As alwa.docx
Attached below isWEEK 4 As always, include references. As alwa.docxAttached below isWEEK 4 As always, include references. As alwa.docx
Attached below isWEEK 4 As always, include references. As alwa.docxjaggernaoma
 
Attached are two articles in one document. Write thoughtful resp.docx
Attached are two articles in one document. Write thoughtful resp.docxAttached are two articles in one document. Write thoughtful resp.docx
Attached are two articles in one document. Write thoughtful resp.docxjaggernaoma
 
Attached are the instructions to the assignment.Written Assign.docx
Attached are the instructions to the assignment.Written Assign.docxAttached are the instructions to the assignment.Written Assign.docx
Attached are the instructions to the assignment.Written Assign.docxjaggernaoma
 
Attached are the instructions and rubric! Research Paper #2.docx
Attached are the instructions and rubric! Research Paper #2.docxAttached are the instructions and rubric! Research Paper #2.docx
Attached are the instructions and rubric! Research Paper #2.docxjaggernaoma
 
Attached are the guidelines for the Expertise Sharing Project. M.docx
Attached are the guidelines for the Expertise Sharing Project. M.docxAttached are the guidelines for the Expertise Sharing Project. M.docx
Attached are the guidelines for the Expertise Sharing Project. M.docxjaggernaoma
 
Attached are the documents needed to complete the assignment. The in.docx
Attached are the documents needed to complete the assignment. The in.docxAttached are the documents needed to complete the assignment. The in.docx
Attached are the documents needed to complete the assignment. The in.docxjaggernaoma
 
Attached are the 3 documents1. Draft copy submitted2. Sam.docx
Attached are the 3 documents1. Draft copy submitted2. Sam.docxAttached are the 3 documents1. Draft copy submitted2. Sam.docx
Attached are the 3 documents1. Draft copy submitted2. Sam.docxjaggernaoma
 
attached are directions needed to complete this essay! Please make s.docx
attached are directions needed to complete this essay! Please make s.docxattached are directions needed to complete this essay! Please make s.docx
attached are directions needed to complete this essay! Please make s.docxjaggernaoma
 
Attach is the checklist For this Assignment, write a 3 and half pa.docx
Attach is the checklist For this Assignment, write a 3 and half pa.docxAttach is the checklist For this Assignment, write a 3 and half pa.docx
Attach is the checklist For this Assignment, write a 3 and half pa.docxjaggernaoma
 
Attach and submit the final draft of your Narrative Essay. Remember .docx
Attach and submit the final draft of your Narrative Essay. Remember .docxAttach and submit the final draft of your Narrative Essay. Remember .docx
Attach and submit the final draft of your Narrative Essay. Remember .docxjaggernaoma
 
Atomic Theory Scientists and Their ContributionsScientist .docx
Atomic Theory Scientists and Their ContributionsScientist .docxAtomic Theory Scientists and Their ContributionsScientist .docx
Atomic Theory Scientists and Their ContributionsScientist .docxjaggernaoma
 
Atomic models are useful because they allow us to picture what is in.docx
Atomic models are useful because they allow us to picture what is in.docxAtomic models are useful because they allow us to picture what is in.docx
Atomic models are useful because they allow us to picture what is in.docxjaggernaoma
 
Atoms and Electrons AssignmentLook at these websites to he.docx
Atoms and Electrons AssignmentLook at these websites to he.docxAtoms and Electrons AssignmentLook at these websites to he.docx
Atoms and Electrons AssignmentLook at these websites to he.docxjaggernaoma
 

More from jaggernaoma (20)

Attached is a joint letter to Capitol Hill to advocate for increased.docx
Attached is a joint letter to Capitol Hill to advocate for increased.docxAttached is a joint letter to Capitol Hill to advocate for increased.docx
Attached is a joint letter to Capitol Hill to advocate for increased.docx
 
Attached is a copy of an interview done with a Tribal member regardi.docx
Attached is a copy of an interview done with a Tribal member regardi.docxAttached is a copy of an interview done with a Tribal member regardi.docx
Attached is a copy of an interview done with a Tribal member regardi.docx
 
Attached Files Week 5 - trace IP Physical Location.rtf (38..docx
Attached Files Week 5 - trace IP Physical Location.rtf (38..docxAttached Files Week 5 - trace IP Physical Location.rtf (38..docx
Attached Files Week 5 - trace IP Physical Location.rtf (38..docx
 
Attached here is a psychology article I need to be summarized. Pleas.docx
Attached here is a psychology article I need to be summarized. Pleas.docxAttached here is a psychology article I need to be summarized. Pleas.docx
Attached here is a psychology article I need to be summarized. Pleas.docx
 
Attached Files News Analysis Sample.docxNews Analysis Sam.docx
Attached Files News Analysis Sample.docxNews Analysis Sam.docxAttached Files News Analysis Sample.docxNews Analysis Sam.docx
Attached Files News Analysis Sample.docxNews Analysis Sam.docx
 
Attached Files  SOC-220_SOCIAL PROBLEMS PRESENTATION.docx
Attached Files     SOC-220_SOCIAL PROBLEMS PRESENTATION.docxAttached Files     SOC-220_SOCIAL PROBLEMS PRESENTATION.docx
Attached Files  SOC-220_SOCIAL PROBLEMS PRESENTATION.docx
 
Attached below you will find the series of 4 questions. This assignm.docx
Attached below you will find the series of 4 questions. This assignm.docxAttached below you will find the series of 4 questions. This assignm.docx
Attached below you will find the series of 4 questions. This assignm.docx
 
Attached below isWEEK 4 As always, include references. As alwa.docx
Attached below isWEEK 4 As always, include references. As alwa.docxAttached below isWEEK 4 As always, include references. As alwa.docx
Attached below isWEEK 4 As always, include references. As alwa.docx
 
Attached are two articles in one document. Write thoughtful resp.docx
Attached are two articles in one document. Write thoughtful resp.docxAttached are two articles in one document. Write thoughtful resp.docx
Attached are two articles in one document. Write thoughtful resp.docx
 
Attached are the instructions to the assignment.Written Assign.docx
Attached are the instructions to the assignment.Written Assign.docxAttached are the instructions to the assignment.Written Assign.docx
Attached are the instructions to the assignment.Written Assign.docx
 
Attached are the instructions and rubric! Research Paper #2.docx
Attached are the instructions and rubric! Research Paper #2.docxAttached are the instructions and rubric! Research Paper #2.docx
Attached are the instructions and rubric! Research Paper #2.docx
 
Attached are the guidelines for the Expertise Sharing Project. M.docx
Attached are the guidelines for the Expertise Sharing Project. M.docxAttached are the guidelines for the Expertise Sharing Project. M.docx
Attached are the guidelines for the Expertise Sharing Project. M.docx
 
Attached are the documents needed to complete the assignment. The in.docx
Attached are the documents needed to complete the assignment. The in.docxAttached are the documents needed to complete the assignment. The in.docx
Attached are the documents needed to complete the assignment. The in.docx
 
Attached are the 3 documents1. Draft copy submitted2. Sam.docx
Attached are the 3 documents1. Draft copy submitted2. Sam.docxAttached are the 3 documents1. Draft copy submitted2. Sam.docx
Attached are the 3 documents1. Draft copy submitted2. Sam.docx
 
attached are directions needed to complete this essay! Please make s.docx
attached are directions needed to complete this essay! Please make s.docxattached are directions needed to complete this essay! Please make s.docx
attached are directions needed to complete this essay! Please make s.docx
 
Attach is the checklist For this Assignment, write a 3 and half pa.docx
Attach is the checklist For this Assignment, write a 3 and half pa.docxAttach is the checklist For this Assignment, write a 3 and half pa.docx
Attach is the checklist For this Assignment, write a 3 and half pa.docx
 
Attach and submit the final draft of your Narrative Essay. Remember .docx
Attach and submit the final draft of your Narrative Essay. Remember .docxAttach and submit the final draft of your Narrative Essay. Remember .docx
Attach and submit the final draft of your Narrative Essay. Remember .docx
 
Atomic Theory Scientists and Their ContributionsScientist .docx
Atomic Theory Scientists and Their ContributionsScientist .docxAtomic Theory Scientists and Their ContributionsScientist .docx
Atomic Theory Scientists and Their ContributionsScientist .docx
 
Atomic models are useful because they allow us to picture what is in.docx
Atomic models are useful because they allow us to picture what is in.docxAtomic models are useful because they allow us to picture what is in.docx
Atomic models are useful because they allow us to picture what is in.docx
 
Atoms and Electrons AssignmentLook at these websites to he.docx
Atoms and Electrons AssignmentLook at these websites to he.docxAtoms and Electrons AssignmentLook at these websites to he.docx
Atoms and Electrons AssignmentLook at these websites to he.docx
 

Recently uploaded

Observing-Correct-Grammar-in-Making-Definitions.pptx
Observing-Correct-Grammar-in-Making-Definitions.pptxObserving-Correct-Grammar-in-Making-Definitions.pptx
Observing-Correct-Grammar-in-Making-Definitions.pptxAdelaideRefugio
 
ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH FORM 50 CÂU TRẮC NGHI...
ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH FORM 50 CÂU TRẮC NGHI...ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH FORM 50 CÂU TRẮC NGHI...
ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH FORM 50 CÂU TRẮC NGHI...Nguyen Thanh Tu Collection
 
TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT TOÁN 2024 - TỪ CÁC TRƯỜNG, TRƯỜNG...
TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT TOÁN 2024 - TỪ CÁC TRƯỜNG, TRƯỜNG...TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT TOÁN 2024 - TỪ CÁC TRƯỜNG, TRƯỜNG...
TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT TOÁN 2024 - TỪ CÁC TRƯỜNG, TRƯỜNG...Nguyen Thanh Tu Collection
 
Stl Algorithms in C++ jjjjjjjjjjjjjjjjjj
Stl Algorithms in C++ jjjjjjjjjjjjjjjjjjStl Algorithms in C++ jjjjjjjjjjjjjjjjjj
Stl Algorithms in C++ jjjjjjjjjjjjjjjjjjMohammed Sikander
 
Spring gala 2024 photo slideshow - Celebrating School-Community Partnerships
Spring gala 2024 photo slideshow - Celebrating School-Community PartnershipsSpring gala 2024 photo slideshow - Celebrating School-Community Partnerships
Spring gala 2024 photo slideshow - Celebrating School-Community Partnershipsexpandedwebsite
 
Spellings Wk 4 and Wk 5 for Grade 4 at CAPS
Spellings Wk 4 and Wk 5 for Grade 4 at CAPSSpellings Wk 4 and Wk 5 for Grade 4 at CAPS
Spellings Wk 4 and Wk 5 for Grade 4 at CAPSAnaAcapella
 
An overview of the various scriptures in Hinduism
An overview of the various scriptures in HinduismAn overview of the various scriptures in Hinduism
An overview of the various scriptures in HinduismDabee Kamal
 
The Story of Village Palampur Class 9 Free Study Material PDF
The Story of Village Palampur Class 9 Free Study Material PDFThe Story of Village Palampur Class 9 Free Study Material PDF
The Story of Village Palampur Class 9 Free Study Material PDFVivekanand Anglo Vedic Academy
 
SPLICE Working Group: Reusable Code Examples
SPLICE Working Group:Reusable Code ExamplesSPLICE Working Group:Reusable Code Examples
SPLICE Working Group: Reusable Code ExamplesPeter Brusilovsky
 
An Overview of the Odoo 17 Knowledge App
An Overview of the Odoo 17 Knowledge AppAn Overview of the Odoo 17 Knowledge App
An Overview of the Odoo 17 Knowledge AppCeline George
 
How to Send Pro Forma Invoice to Your Customers in Odoo 17
How to Send Pro Forma Invoice to Your Customers in Odoo 17How to Send Pro Forma Invoice to Your Customers in Odoo 17
How to Send Pro Forma Invoice to Your Customers in Odoo 17Celine George
 
How To Create Editable Tree View in Odoo 17
How To Create Editable Tree View in Odoo 17How To Create Editable Tree View in Odoo 17
How To Create Editable Tree View in Odoo 17Celine George
 
MOOD STABLIZERS DRUGS.pptx
MOOD     STABLIZERS           DRUGS.pptxMOOD     STABLIZERS           DRUGS.pptx
MOOD STABLIZERS DRUGS.pptxPoojaSen20
 
Graduate Outcomes Presentation Slides - English (v3).pptx
Graduate Outcomes Presentation Slides - English (v3).pptxGraduate Outcomes Presentation Slides - English (v3).pptx
Graduate Outcomes Presentation Slides - English (v3).pptxneillewis46
 
Andreas Schleicher presents at the launch of What does child empowerment mean...
Andreas Schleicher presents at the launch of What does child empowerment mean...Andreas Schleicher presents at the launch of What does child empowerment mean...
Andreas Schleicher presents at the launch of What does child empowerment mean...EduSkills OECD
 

Recently uploaded (20)

Observing-Correct-Grammar-in-Making-Definitions.pptx
Observing-Correct-Grammar-in-Making-Definitions.pptxObserving-Correct-Grammar-in-Making-Definitions.pptx
Observing-Correct-Grammar-in-Making-Definitions.pptx
 
ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH FORM 50 CÂU TRẮC NGHI...
ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH FORM 50 CÂU TRẮC NGHI...ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH FORM 50 CÂU TRẮC NGHI...
ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH FORM 50 CÂU TRẮC NGHI...
 
ESSENTIAL of (CS/IT/IS) class 07 (Networks)
ESSENTIAL of (CS/IT/IS) class 07 (Networks)ESSENTIAL of (CS/IT/IS) class 07 (Networks)
ESSENTIAL of (CS/IT/IS) class 07 (Networks)
 
Mattingly "AI & Prompt Design: Named Entity Recognition"
Mattingly "AI & Prompt Design: Named Entity Recognition"Mattingly "AI & Prompt Design: Named Entity Recognition"
Mattingly "AI & Prompt Design: Named Entity Recognition"
 
TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT TOÁN 2024 - TỪ CÁC TRƯỜNG, TRƯỜNG...
TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT TOÁN 2024 - TỪ CÁC TRƯỜNG, TRƯỜNG...TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT TOÁN 2024 - TỪ CÁC TRƯỜNG, TRƯỜNG...
TỔNG HỢP HƠN 100 ĐỀ THI THỬ TỐT NGHIỆP THPT TOÁN 2024 - TỪ CÁC TRƯỜNG, TRƯỜNG...
 
Mattingly "AI and Prompt Design: LLMs with NER"
Mattingly "AI and Prompt Design: LLMs with NER"Mattingly "AI and Prompt Design: LLMs with NER"
Mattingly "AI and Prompt Design: LLMs with NER"
 
Stl Algorithms in C++ jjjjjjjjjjjjjjjjjj
Stl Algorithms in C++ jjjjjjjjjjjjjjjjjjStl Algorithms in C++ jjjjjjjjjjjjjjjjjj
Stl Algorithms in C++ jjjjjjjjjjjjjjjjjj
 
Spring gala 2024 photo slideshow - Celebrating School-Community Partnerships
Spring gala 2024 photo slideshow - Celebrating School-Community PartnershipsSpring gala 2024 photo slideshow - Celebrating School-Community Partnerships
Spring gala 2024 photo slideshow - Celebrating School-Community Partnerships
 
Spellings Wk 4 and Wk 5 for Grade 4 at CAPS
Spellings Wk 4 and Wk 5 for Grade 4 at CAPSSpellings Wk 4 and Wk 5 for Grade 4 at CAPS
Spellings Wk 4 and Wk 5 for Grade 4 at CAPS
 
An overview of the various scriptures in Hinduism
An overview of the various scriptures in HinduismAn overview of the various scriptures in Hinduism
An overview of the various scriptures in Hinduism
 
The Story of Village Palampur Class 9 Free Study Material PDF
The Story of Village Palampur Class 9 Free Study Material PDFThe Story of Village Palampur Class 9 Free Study Material PDF
The Story of Village Palampur Class 9 Free Study Material PDF
 
SPLICE Working Group: Reusable Code Examples
SPLICE Working Group:Reusable Code ExamplesSPLICE Working Group:Reusable Code Examples
SPLICE Working Group: Reusable Code Examples
 
VAMOS CUIDAR DO NOSSO PLANETA! .
VAMOS CUIDAR DO NOSSO PLANETA!                    .VAMOS CUIDAR DO NOSSO PLANETA!                    .
VAMOS CUIDAR DO NOSSO PLANETA! .
 
An Overview of the Odoo 17 Knowledge App
An Overview of the Odoo 17 Knowledge AppAn Overview of the Odoo 17 Knowledge App
An Overview of the Odoo 17 Knowledge App
 
Including Mental Health Support in Project Delivery, 14 May.pdf
Including Mental Health Support in Project Delivery, 14 May.pdfIncluding Mental Health Support in Project Delivery, 14 May.pdf
Including Mental Health Support in Project Delivery, 14 May.pdf
 
How to Send Pro Forma Invoice to Your Customers in Odoo 17
How to Send Pro Forma Invoice to Your Customers in Odoo 17How to Send Pro Forma Invoice to Your Customers in Odoo 17
How to Send Pro Forma Invoice to Your Customers in Odoo 17
 
How To Create Editable Tree View in Odoo 17
How To Create Editable Tree View in Odoo 17How To Create Editable Tree View in Odoo 17
How To Create Editable Tree View in Odoo 17
 
MOOD STABLIZERS DRUGS.pptx
MOOD     STABLIZERS           DRUGS.pptxMOOD     STABLIZERS           DRUGS.pptx
MOOD STABLIZERS DRUGS.pptx
 
Graduate Outcomes Presentation Slides - English (v3).pptx
Graduate Outcomes Presentation Slides - English (v3).pptxGraduate Outcomes Presentation Slides - English (v3).pptx
Graduate Outcomes Presentation Slides - English (v3).pptx
 
Andreas Schleicher presents at the launch of What does child empowerment mean...
Andreas Schleicher presents at the launch of What does child empowerment mean...Andreas Schleicher presents at the launch of What does child empowerment mean...
Andreas Schleicher presents at the launch of What does child empowerment mean...
 

Innovation technology questions1 Explain how computer-aided .docx

  • 1. Innovation technology questions 1 Explain how computer-aided design and flexible manufacturing technologies help create small niches in the market place. Provide an example to illustrate your answer Answer: Computer-aided design and flexible manufacturing help create small niches in the marketplace by allowing firms to develop and produce a greater number of versions of their products. This means that companies can now tailor their offerings to small niches in the marketplace. For example, in 2012, Toyota offered 16 different passenger vehicle lines under the Toyota brand (e.g., Camry, Prius, Highlander, and Tundra). Within each of the vehicle lines, Toyota also offered several different models (e.g., Camry L, Camry LE, Camry SE) with different features and at different price points. Students’ answers will vary. Page: 1 2At a retreat by the Cleveland City Council, community leaders held a discussion on attracting and developing new businesses and increasing employment rates in the city. One leader suggested that the city should consider sponsoring a business incubator. Explain what an incubator is and how this might help the city meet its goals. What other ideas should be considered Answer: An incubator is an institution designed to nurture the development of new businesses that might otherwise lack access to funding or advice. It allows companies to share costs and resources until they can stand on their own. If an incubator were started in Salisbury, it would help new businesses to grow and prosper. These businesses could then move out to locations of their own and hire local residents as employees. The city would not have to offer tax breaks or compete with other cities for the location of existing companies, but would be growing their own
  • 2. businesses. Page: 29-31 3 How can the s-curves be used as a prescriptive tool? What would be the limitations of this approach? Answer: Managers can use the s-curve model as a tool for predicting when a technology will reach its limits and as a prescriptive guide for whether and when the firm should move to a new, more radical technology. Firms can use data on the investment and performance of their own technologies, or data on the overall industry investment in a technology and the average performance achieved by multiple producers. Managers could then use these curves to assess whether a technology appears to be approaching its limits or to identify new technologies that might be emerging on s-curves that will intersect the firm’s technology s-curve. Managers could then switch s-curves by acquiring or developing the new technology. However, there are many limitations to doing this. First, it is rare that the true limits of a technology are known in advance, and there is often considerable disagreement among firms about what a technology’s limits will be. Second, the shape of a technology’s s-curve is not set in stone. Unexpected changes in the market, component technologies, or complementary technologies can shorten or extend the life cycle of a technology. Furthermore, firms can influence the shape of the s- curve through their development activities. For example, firms can sometimes stretch the s-curve through implementing new development approaches or revamping the architecture design of the technology. Page: 55 4 Explain what factors characterize the technology trajectory. Discuss the factors that determine the success of a new technology, besides its quality and technical advantage. Include a diagram showing the trajectory and the factor’s influence
  • 3. Answer: Increasing returns to adoption also imply that technology trajectories are characterized by path dependency, meaning that relatively small historical events may have a great impact on the final outcome. Though the technology’s quality and technical advantage undoubtedly influence its fate, other factors, unrelated to the technical superiority or inferiority, may also play important roles. For instance, timing may be crucial; early technology offerings may become so entrenched that subsequent technologies, even if considered to be technically superior, may be unable to gain a foothold in the market. How and by whom the technology is sponsored may also impact adoption. If, for example, a large and powerful firm aggressively sponsors a technology (perhaps even pressuring suppliers or distributors to support the technology), that technology may gain a controlling share of the market, locking out alternative technologies. Page: 72 5. Even though many aerospace manufacturing firms are very profitable, there are very few upcoming firms. Explain the reason using Porter's five-force model. Answer: According to Porter’s five-force model, the threat of potential entrants is influenced by both the degree to which the industry is likely to attract new entrants (i.e., is it profitable, growing, or otherwise alluring?) and the height of entry barriers. Entry barriers can include such factors as large start-up costs, brand loyalty, difficulty in gaining access to suppliers or distributors, government regulation, threat of retaliation by existing competitors, and many others. In the aerospace manufacturing industry, this threat is relatively low because of the entry barriers. The cost of starting an aerospace company is high and the existing companies are well-established. These
  • 4. companies are large, have the contacts, personnel, and skills necessary to meet the market demand, making it almost impossible for a new company to compete with them. Page: 112 ME202 Dr. Charles Negus Computer Programming Applications for Mechanical Engineers Head GSI: Timmy Siauw H HW06: Linear Algebra 1. (5 points) Do Problem 12.8 (myNumSols) in Siauw and Bayen 2. (10 points) Write a function with the header [U, b2, L] = myForwardSweep(A,b) which performs systematic linear transformation on the augmented matrix [A|b]. Note that this function should return not only the transformed A and b, but also a matrix containing -m(i, j) used in the transformation but also with 1’s on its diagonal. Recall that m(i, j) = -A(i, j) / A(j, j)
  • 5. Since m will only populate with elements below the diagonal, you should first initialize m with nxn zeros. Test Cases: >> format short >> A = [815 98 158 142 656; 906 279 971 422 36; 127 547 958 916 850; 914 958 486 793 934; 633 965 801 960 679]; >> b = [5333; 6245; 12009; 12130; 12201]; >> [U, b2, L] = myForwardSweep(A,b) U = 1.0e+03 * 0.8150 0.0980 0.1580 0.1420 0.6560 0 0.1701 0.7954 0.2641 -0.6932
  • 6. 0.0000 0 -1.5535 0.0680 2.9154 0 0 0 -0.8436 -3.2086 0 0 0 0 -0.1374 b2 = 1.0e+04 * 0.5333 0.0317 1.0188 -1.9418 -0.0687 ME202 Dr. Charles Negus Computer Programming Applications for Mechanical Engineers Head GSI: Timmy Siauw H L =
  • 7. 1.0000 0 0 0 0 1.1117 1.0000 0 0 0 0.1558 3.1268 1.0000 0 0 1.1215 4.9871 2.3545 1.0000 0 0.7767 5.2270 2.2395 0.8098 1.0000 >> L*U ans = 815.0000 98.0000 158.0000 142.0000 656.0000 906.0000 279.0000 971.0000 422.0000 36.0000 127.0000 547.0000 958.0000 916.0000 850.0000 914.0000 958.0000 486.0000 793.0000 934.0000 633.0000 965.0000 801.0000 960.0000 679.0000 3. (10 points) An upper triangular matrix is a square matrix with all zeros BELOW the diagonal elements. Write a function with header [x] = myBackSub(U, b) which solves Ax = b for x given an nxn upper triangular matrix A and an nx1 vector b. Use nested for
  • 8. loops, do not use built in Matlab functions inv, pinv, . Test Case: >> x = myBackSub(U, b2) x = 1.0000 2.0000 3.0000 4.0000 5.0000 4. (10 points) Write a function with the header [y] = mySub(L, b) which solves Ly=b for y given an nxn lower triangular matrix L and an nx1 vector b. Use nested for loops, do not use built in Matlab functions, inv, pinv, . Test Case: >> L
  • 9. L = 1.0000 0 0 0 0 1.1117 1.0000 0 0 0 0.1558 3.1268 1.0000 0 0 1.1215 4.9871 2.3545 1.0000 0 0.7767 5.2270 2.2395 0.8098 1.0000 ME202 Dr. Charles Negus Computer Programming Applications for Mechanical Engineers Head GSI: Timmy Siauw H >> bNew = [10666; 12490; 24018; 24260; 24402]; >> y = mySub(L, bNew) y = 1.0e+04 * 1.0666 0.0633
  • 10. 2.0376 -3.8835 -0.1374 5. (5 points) Write a function with the header [x] = myLU(L, U, b) which solves LUx=b for a given lower triangular matrix L, upper triangular matrix U, and right hand side vector b. The function body should only have two lines of code consisting of calls to two of the functions you wrote earlier. Test Case: >> x = myLU(L, U, bNew) x = 2.0000 4.0000 6.0000 8.0000 10.0000 >> x = myLU(L, U, b)
  • 11. x = 1.0000 2.0000 3.0000 4.0000 5.0000 Deliverables: Submit the above m-files (separately, not zipped) onto Blackboard. • Be sure that the functions are named exactly as specified, including spelling and case. • You will get zero credit for a function if it is named wrong, even if it works.