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
jeyben [28]
4 years ago
14

Researchers compared protein intake among three groups of postmenopausal women: (1) women eating a standard American diet (STD),

(2) women eating a lacto-ovo-vegetarian diet (LAC), and (3) women eating a strict vegetarian diet (VEG).GroupMean protein intake (mg)SDnSTD75910LAC571310VEG47176a.Without using MATLAB ANOVA functions, determine if there is a significant difference in mean protein intake between these groups.
Engineering
1 answer:
Shtirlitz [24]4 years ago
5 0

Answer:

see explaination

Explanation:

The statistical procedure for comparing the 3 groups was the F test with 2 degrees of freedom in the numerator (groups - 1) and 23 df in the denominator (N total - groups)

It is calculated as SSB/2/(SSW/23) = 10.22754

As Fcrit =

from Excel, finv(.05,2,23) = 3.4221, we can reject the null hypothesis of no difference between groups.

SSW = the sum of std i ^ 2 * (n i - 1)

SSB = the sum of ni (mean i - mean)^2

2. From Excel, we get the pvalue from fdist(10.22754,2,23) = .000664

3. For LSD, we calculate (mean 1 - mean 2)/(s * sqrt(1/n1+1/n2))

This is the pooled s = sqrt(SSW/23)

Then, we found t crit from tinv(.05,23) = 2.068

Making use of the chart i made, We found significant differences between std and lac as well as std and veg, but no significant difference between lac and veg.

You might be interested in
Tech A says that in some cases, the electronic brake control module can be programmed with a new tire size to restore proper ele
Vlad [161]

Answer:

Both Techs A and B

Explanation:

Electronic braking systems are controlled by the electronic brake control module. It is a microprocessor that processes information from wheel-speed sensors and the hydraulic brake system to determine when to release braking pressure at a wheel that's about to lock up and start skidding  and activates the anti lock braking system or traction system when it detects it is necessary.

Some electronic brake control modules can be programmed to the size of the vehicle's new tires to restore proper electronic brake control performance. While others may require replacing the module to match the module's programming to the installed tire size. So, both technicians A and B are correct.

3 0
3 years ago
Two balanced Y-connected loads in parallel, one drawing 15kW at 0.6 power factor lagging and the other drawing 10kVA at 0.8 powe
NemiM [27]

Answer:

(a) attached below

(b) pf_{C}=0.85 lagging

(c) I_{C} =32.37 A

(d) X_{C} =49.37 Ω

(e) I_{cap} =9.72 A and I_{line} =27.66 A

Explanation:

Given data:

P_{1}=15 kW

S_{2} =10 kVA

pf_{1} =0.6 lagging

pf_{2}=0.8 leading

V=480 Volts

(a) Draw the power triangle for each load and for the combined load.

\alpha_{1}=cos^{-1} (0.6)=53.13°

\alpha_{2}=cos^{-1} (0.8)=36.86°

S_{1}=P_{1} /pf_{1} =15/0.6=25 kVA

Q_{1}=P_{1} tan(\alpha_{1} )=15*tan(53.13)=19.99 ≅ 20kVAR

P_{2} =S_{2}*pf_{2} =10*0.8=8 kW

Q_{2} =P_{2} tan(\alpha_{2} )=8*tan(-36.86)=-5.99 ≅ -6 kVAR

The negative sign means that the load 2 is providing reactive power rather than consuming  

Then the combined load will be

P_{c} =P_{1} +P_{2} =15+8=23 kW

Q_{c} =Q_{1} +Q_{2} =20-6=14 kVAR

(b) Determine the power factor of the combined load and state whether lagging or leading.

S_{c} =P_{c} +jQ_{c} =23+14j

or in the polar form

S_{c} =26.92°

pf_{C}=cos(31.32) =0.85 lagging

The relationship between Apparent power S and Current I is

S=VI^{*}

Since there is conjugate of current I therefore, the angle will become negative and hence power factor will be lagging.

(c) Determine the magnitude of the line current from the source.

Current of the combined load can be found by

I_{C} =S_{C}/\sqrt{3}*V

I_{C} =26.92*10^3/\sqrt{3}*480=32.37 A

(d) Δ-connected capacitors are now installed in parallel with the combined load. What value of capacitive reactance is needed in each leg of the A to make the source power factor unity?Give your answer in Ω

Q_{C} =3*V^2/X_{C}

X_{C} =3*V^2/Q_{C}

X_{C} =3*(480)^2/14*10^3 Ω

(e) Compute the magnitude of the current in each capacitor and the line current from the source.

Current flowing in the capacitor is  

I_{cap} =V/X_{C} =480/49.37=9.72 A

Line current flowing from the source is

I_{line} =P_{C} /3*V=23*10^3/3*480=27.66 A

8 0
3 years ago
We can process oil into a lot of useful fuels to run our cars, trucks, and even airplanes. Oil is used for making lots of other
Ostrovityanka [42]

Answer:

Explanation:

Products of oil in our everyday life:

(1) Petro-Chemical Feedstock: These are by product of Refining of Oil which it is used extensively to make PET bottles, Paints, Polyester Shirts, Pocket combs e.t.c

(2) Asphalt : Used extensively to make Motor Road, highways

(3) Plastics : we use plastics in our everyday life, this is also a product of Refining of crude oil e.g PVC, Telephone casing, Tapes e.t.c

(4) Lubricating Oil/Grease : This is another product from crude oil Fractional Distillation.

(5) Propane/ Cooking Gas: This is also a product from oil which is used in our everyday life for cooking, grilling etc.

4 0
3 years ago
Define a function pyramid_volume with parameters base_length, base_width, and pyramid_height, that returns the volume of a pyram
Maslowich

Hi, you haven't provided the programing language in which you need the code, I'll just explain how to do it using Python, and you can apply a similar method for any programming language.

Answer:

1. def pyramid_volume(base_length, base_width, pyramid_height):

2.     volume = base_length*base_width*pyramid_height/3

3.     return(volume)

Explanation step by step:

  1. In the first line of code, we define the function pyramid_volume and it's input parameters
  2. In the second line, we perform operations with the input values to get the volume of the pyramid with a rectangular base, the formula is V = l*w*h/3
  3. In the last line of code, we return the volume  

In the image below you can see the result of calling the function with input 4.5, 2.1, 3.0.

5 0
3 years ago
In C++ the declaration of floating point variables starts with the type name float or double, followed by the name of the variab
zubka84 [21]

Answer:

The given grammar is :

S = T V ;

V = C X

X = , V | ε

T = float | double

C = z | w

1.

Nullable variables are the variables which generate ε ( epsilon ) after one or more steps.

From the given grammar,

Nullable variable is X as it generates ε ( epsilon ) in the production rule : X -> ε.

No other variables generate variable X or ε.

So, only variable X is nullable.

2.

First of nullable variable X is First (X ) = , and ε (epsilon).

L.H.S.

The first of other varibles are :

First (S) = {float, double }

First (T) = {float, double }

First (V) = {z, w}

First (C) = {z, w}

R.H.S.

First (T V ; ) = {float, double }

First ( C X ) = {z, w}

First (, V) = ,

First ( ε ) = ε

First (float) = float

First (double) = double

First (z) = z

First (w) = w

3.

Follow of nullable variable X is Follow (V).

Follow (S) = $

Follow (T) = {z, w}

Follow (V) = ;

Follow (X) = Follow (V) = ;

Follow (C) = , and ;

Explanation:

4 0
3 years ago
Other questions:
  • A device is needed to accelerate a 3000 lb vehicle into a barrier with constant velocity to test its 5 mph bumpers. The vehicle
    12·2 answers
  • Suppose that the president of a small island nation has decided to increase government spending by constructing three beach reso
    11·1 answer
  • What does the following program segment do? Declare Count As Integer Declare Sum As Integer Set Sum = 0 For (Count = 1; Count &l
    15·1 answer
  • a refrigerator uses refrigerant-134a as the working fluid and operates on the vapor-compression refrigeration cycle. the evapora
    10·2 answers
  • The European Space Agency launched a probe called Rosetta in March 2004. In August​ 2014, Rosetta reached its​ destination: a co
    13·1 answer
  • If the bolt head and the supporting bracket are made of the same material having a failure shear stress of 'Tra;i = 120 MPa, det
    9·1 answer
  • Consider a potato being baked in an oven that is maintained at a constant temperature. the temperature of the potato is observed
    14·1 answer
  • 1. Given: R= 25 , E = 100 V<br> Solve for I
    5·1 answer
  • Technician A says that the use of methanol in internal combustion engines has declined over the years. Technician B says that th
    10·1 answer
  • 3. If nothing can ever be at absolute zero, why does the concept exist?
    8·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!