1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Sliva [168]
3 years ago
7

What is the standard deviation of the following data set:

Engineering
1 answer:
EastWind [94]3 years ago
3 0

Answer:

See Explanation

Explanation:

The question is incomplete as the data set are missing. However, I'll use the following data to answer your question:

<em>5,12,3,18,6,8,2,10 </em>

Start by calculating the mean:

Mean = \frac{\sum x}{n}

Mean= \frac{5+12+3+18+6+8+2+10}{8}

Mean= \frac{64}{8}

Mean = 8

Standard deviation is calculated using:

SD = \sqrt{\frac{(x_i - Mean)^2}{n}}

This gives:

SD = \sqrt{\frac{(5 - 8)^2+(12 - 8)^2+(3 - 8)^2+(18 - 8)^2+(6 - 8)^2+(8 - 8)^2+(2 - 8)^2+(10 - 8)^2}{8}}

SD = \sqrt{\frac{(-3)^2+(4)^2+(- 5)^2+(10)^2+(-2)^2+(0)^2+( - 6)^2+(2)^2}{8}}

SD = \sqrt{\frac{9+16+25+100+4+0+36+4}{8}}

SD = \sqrt{\frac{194}{8}}

SD = \sqrt{24.25}

SD = 4.92

<em>Apply the above steps in the original question, then you will get your correct answer.</em>

You might be interested in
before adjusting drive-belt tension, technician a checks for proper pulley alignment. technician b looks up the specified belt t
Vsevolod [243]

Answer:

Technician b is correct

Explanation:

Before adjusting drive-belt tension, it is very important to check the vehicle workshop manual for specified belt tension, so that you can match your reading against the specification in the vehicle's service manual. If the tension reading you have matches the suggested reading in the vehicle's service manual and the belt is not damaged then you do not need to proceed any further. But if the reading does not match, then you can adjust the belt tension.

Therefore, technician b is correct.

5 0
3 years ago
What type of car engine is best for cold weather.
Komok [63]

Answer:Antifreeze/coolant

Explanation: keeps your engine cool in warm weather and keeps it from freezing up in the winter. A 50-50 mix of full strength coolant and water generally protects to around -30 degrees Fahrenheit. Make sure you check with the supplier or your owner's manual for the correct formulation

5 0
2 years ago
C++ - Green Crud Fibonacci programThe following program is to be written with a loop. You are to write this program three times
Fynjy0 [20]

Answer:

Below is the required code:

Explanation:

Using for loop

#include <iostream>

using namespace std;

int main()

{

    //Initial crud size

    int init = 0;

    int newCrud;

    int next=0;

    //Number of days to simulate

    int no_days;

    int day;

    cout << "Enter initial amount of green crud: ";

    cin >> newCrud;

    cout << "Enter number of days to simulate: ";

    cin >> no_days;

    for (day = 10; day<=no_days; day++)

    {

         if (day % 10 == 0)

         {

             next = newCrud + init;

         }

             newCrud = init;

             init = next;

    }

    if (no_days < 5)

    cout << "\nCrud reproduce only after 5 days minimum.Hence the current amount is "

    << newCrud << " pounds.";

    else

    cout << "On day " << no_days << " you have " << init

    << " pounds of green crud." << endl;

    cout << "\nWould you like to continue? (y or n): ";

    cin >> ans;

         return 0;

}

Output:

         Enter initial amount of green crud: 5

         Enter number of days to simulate: 220

    On day 220 you have 10485760 pounds of green crud.

Using while loop

Program:

#include <iostream>

using namespace std;

int main()

{

    char ans='y';

    while (ans == 'Y' || ans == 'y')

    {

         //Initial crud size

         int init = 0;

         int newCrud;

         int next=0;

         //Number of days to simulate

         int no_days;

         int day;

         cout << "Enter initial amount of green crud:

         ";

         cin >> newCrud;

         cout << "Enter number of days to simulate:

         ";

         cin >> no_days;

         for (day = 10; day<=no_days; day++)

         {

             if (day % 10 == 0)

             {

                  next = newCrud + init;

             }

                  newCrud = init;

                  init = next;

         }

         if (no_days < 5)

         cout << "\nCrud reproduce only after 5 days

         minimum.Hence the current amount is "

         << newCrud << " pounds.";

         else

         cout << "On day " << no_days << " you have "

         << init

         << " pounds of green crud." << endl;

         cout << "\nWould you like to continue? (y or

         n): ";

         cin >> ans;

    }

    return 0;

}

Output:

Enter initial amount of green crud: 5

Enter number of days to simulate: 220

On day 220 you have 10485760 pounds of green crud.

Would you like to continue? (y or n): y

Enter initial amount of green crud: 5

Enter number of days to simulate: 225

On day 225 you have 10485760 pounds of green crud.

Using do while loop

Program:

#include <iostream>

using namespace std;

int main()

{

    char ans;

    do

    {

         //Initial crud size

         int init = 0;

         int newCrud;

         int next=0;

         //Number of days to simulate

         int no_days;

         int day;

         cout << "Enter initial amount of green crud: ";

         cin >> newCrud;

         cout << "Enter number of days to simulate: ";

         cin >> no_days;

         for (day = 10; day<=no_days; day++)

         {

             if (day % 10 == 0)

             {

                  next = newCrud + init;

             }

                  newCrud = init;

                  init = next;

         }

         if (no_days < 5)

         cout << "\nCrud reproduce only after 5 days

         minimum.Hence the current amount is "

         << newCrud << " pounds.";

         else

         

         cout << "On day " << no_days << " you have " <<

         init << " pounds of green crud." << endl;

         cout << "\nWould you like to continue? (y or n):

         ";

         cin >> ans;

    } while (ans == 'Y' || ans == 'y');

    return 0;

}

Output:

Enter initial amount of green crud: 5

Enter number of days to simulate: 220

On day 220 you have 10485760 pounds of green crud.

Would you like to continue? (y or n): y

Enter initial amount of green crud: 5

Enter number of days to simulate: 225

On day 225 you have 10485760 pounds of green crud.

7 0
3 years ago
If a 2 1/8 inch diameter medium carbon steel rod is to be turned between centers to a 2 inch diameter using high speed cutting b
Crank

Answer:

I think 1 31/32

8 0
3 years ago
Methane gas is 304 C with 4.5 tons of mass flow per hour to an uninsulated horizontal pipe with a diameter of 25 cm. It enters a
Arada [10]

Answer:

a) h_c = 0.1599 W/m^2-K

b) H_{loss} = 5.02 W

c) T_s = 302 K

d) \dot{Q} = 25.125 W

Explanation:

Non horizontal pipe diameter, d = 25 cm = 0.25 m

Radius, r = 0.25/2 = 0.125 m

Entry temperature, T₁ = 304 + 273 = 577 K

Exit temperature, T₂ = 284 + 273 = 557 K

Ambient temperature, T_a = 25^0 C = 298 K

Pipe length, L = 10 m

Area, A = 2πrL

A = 2π * 0.125 * 10

A = 7.855 m²

Mass flow rate,

\dot{ m} = 4.5 tons/hr\\\dot{m} = \frac{4.5*1000}{3600}  = 1.25 kg/sec

Rate of heat transfer,

\dot{Q} = \dot{m} c_p ( T_1 - T_2)\\\dot{Q} = 1.25 * 1.005 * (577 - 557)\\\dot{Q} = 25.125 W

a) To calculate the convection coefficient relationship for heat transfer by convection:

\dot{Q} = h_c A (T_1 - T_2)\\25.125 = h_c * 7.855 * (577 - 557)\\h_c = 0.1599 W/m^2 - K

Note that we cannot calculate the heat loss by the pipe to the environment without first calculating the surface temperature of the pipe.

c) The surface temperature of the pipe:

Smear coefficient of the pipe, k_c = 0.8

\dot{Q} = k_c A (T_s - T_a)\\25.125 = 0.8 * 7.855 * (T_s - 298)\\T_s = 302 K

b) Heat loss from the pipe to the environment:

H_{loss} = h_c A(T_s - T_a)\\H_{loss} = 0.1599 * 7.855( 302 - 298)\\H_{loss} = 5.02 W

d) The required fan control power is 25.125 W as calculated earlier above

5 0
3 years ago
Other questions:
  • For a steel alloy it has been determined that a carburizing heat treatment of 15 h duration will raise the carbon concentration
    6·1 answer
  • A rectangular channel 2 m wide carries 3 m3 /s of water at a depth of 1.2 m. If an obstruction 40 cm wide is placed in the middl
    12·1 answer
  • An AX ceramic compound has the rock salt crystal structure. If the radii of the A and X ions are 0.137 and 0.241 nm, respectivel
    10·1 answer
  • Air at 2.5 bar, 400 K is extracted from a main jet engine compressor for cabin cooling. The extracted air enters a heat exchange
    14·2 answers
  • What engine does chrysler 300c have?​
    15·1 answer
  • I want to explain what 2000 feet looks like to young children so that they can imagine it in class
    12·1 answer
  • what is an example of an innovative solution to an engineering problem? Explain briefly why you chose this answer.
    14·1 answer
  • Thermodynamics fill in the blanks The swimming pool at the local YMCA holds roughly 749511.5 L (749511.5 kg) of water and is kep
    6·1 answer
  • How many meters per second is 100 meters and 10 seconds
    12·1 answer
  • I need help with this question
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!