Design Process
Statistics and Data Analysis
Programming
MATLAB
Hands-on
100

Coming up with a list of ideas or problems for a new product.

What is brainstorming?

100

A part of the population

What is sample size?

100

Algorithm

What is the process or set of rules to be followed in calculations or other problem-solving operations?

100

Matrix Laboratory

What does MATLAB stand for?

100

What are the basic steps of the engineering design process?

Need finding, problem statement, concept evaluation, concept selection, prototype, communication.

200

Identifying and researching a need.

What is the first step of the engineering design process?

200

The average number; found by adding all data points and dividing by the number of data points.

What is mean?

200

Integer

What is the variable data type used to store a whole number that does not contain a decimal?

200

clear

What command clears all variables in workspace browser?

200

Find the standard deviation of the following set of numbers: 10,15,19,35,27,44.  Round your answer to the nearest tenth.

To find the standard deviation of a set of numbers, first find the mean (average) of the set of numbers:

 10+15+19+35+27+446=25

Second, for each number in the set, subtract the mean and square the result:

(10−25)2+(15−25)2+(19−25)2+(35−25)2+(27−25)2+(44−25)2=826 

Then add all of the squares together and find the mean (average) of the squares, like this:  

8266=137.67 

Finally, take the square root of the second mean: 

137.7‾‾‾‾‾√=11.7.  

300

An iterative process.

What is the engineering design process?

300

Standard deviation

What is the square root of the variance?

300

Flowchart

What is the diagrammatic representation of an algorithm?

300

pi

How to input the value of π (pi or 3.145...) in MATLAB?

300

Which command do you use to solve this function?

f=exp(x)/x + sqrt(x)

400

It is a restriction.

What is a constraint?

400

Mean, median, and mode.

What are fundamental mathematical concepts to understand when determining statistics? (OR What are measurements of central tendency?)

400

Floating point

What variable data type is used to represent noninteger fractional numbers?

400

For

What is the command that allows you to write a loop that needs to execute a specific number of times?

400

Given the 2xN array, x=[1 2 3 4 5; 1 2 3 4 5]. How do you create a 2-D line plot of the first row against second row?

plot(x(1,:), x(2,:))

500

Test and evaluate a prototype.

Which step of the engineering design process distinguishes an engineer from a technician?

500

68%

What is the population percentage within 1 standard deviation of the mean?

500

Debugging

What is the process of identifying and removing errors from software?

500

10 * rand(1, 10)

Which command creates a row vector of 10 random numbers from the open interval (0, 10)?

500

Type this matrix into a MATLAB Script File to carry out the following instructions:𝐀 = [ −5 9 10 6 13 8 15 5 4]

a. Use MATLAB to create a vector 𝐵⃗ using the elements from the first row of matrix 𝐀.

b. Use MATLAB to create a vector 𝐶 using the elements from the third column of matrix 𝐀.

A = [-5 9 10; 6 13 8; 15 5 4]

B = A(1,:)

C = A(:,3)