The number of trays that should be prepared if the owner wants a service level of at least 95% is; 7 trays
<h3>How to utilize z-score statistics?</h3>
We are given;
Mean; μ = 15
Standard Deviation; σ = 5
We are told that the distribution of demand score is a bell shaped distribution that is a normal distribution.
Formula for z-score is;
z = (x' - μ)/σ
We want to find the value of x such that the probability is 0.95;
P(X > x) = P(z > (x - 15)/5) = 0.95
⇒ 1 - P(z ≤ (x - 15)/5) = 0.95
Thus;
P(z ≤ (x - 15)/5) = 1 - 0.95
P(z ≤ (x - 15)/5) = 0.05
The value of z from the z-table of 0.05 is -1.645
Thus;
(x - 15)/5 = -1.645
x ≈ 7
Complete Question is;
A bakery wants to determine how many trays of doughnuts it should prepare each day. Demand is normal with a mean of 15 trays and standard deviation of 5 trays. If the owner wants a service level of at least 95%, how many trays should he prepare (rounded to the nearest whole tray)? Assume doughnuts have no salvage value after the day is complete. 6 5 4 7 unable to determine with the above information.
Read more about Z-score at; brainly.com/question/25638875
#SPJ1
Answer:
The perceived economic impact of CO2 generated per year by lighting sstem is $8164.67.
Explanation:
The CO2 requirement for the plant is:
Amount of CO2 per year = (2.4 lb / KWh)(300,000 KWh)
Amount of CO2 per year = (720000 lb)(1 ton/ 2204.62 lb)
Amount of CO2 per year = 326.59 ton
The perceived economic impact of CO2 generated per year will then be:
Economic Impact = ($25 / ton)(326.59 ton)
<u>Economic Impact = $8164.67</u>
Answer:
Explanation gives the answer
Explanation:
% Using MATLAB,
% Matlab file : fieldtovar.m
function varargout = fieldtovar(S)
% function that accepts single structure as input, assigning each
% of the field values to user-defined variables
fields = fieldnames(S); % get the field names of the input structure
% check if number of user-defined variables and number of fields in
% structure are equal
if nargout == length(fields)
% if equal assign each value of structure to user-defined varable
for i=1:nargout
varargout{i} = getfield(S,fields{i});
end
else
% if not equal display an error message
error('The number of output variables does not equal the number of fields');
end
end
%This brings an end to the program
Answer:
For SGID you type this
$ find . -perm /4000
For SUID you type this
$ find . -perm /2000
Explanation:
Auxiliary file permissions, that are commonly referred to as “special permissions” in Linux are needed in order to easily find files which have SUID (Setuid) and SGID (Setgid) set.
After typing
$ find directory -perm /permissions
Then type the commands in the attachment below to obtain a list of these files with SGID and SUID.
Answer:
A) energy loss E = pgQtH
Where p = density in kg/m3
g = gravity acceleration in m/s2
Q = flow rate in m3/s
t = time taken for flow in sec
H = height of flow in m
B) power required to run pump;
P = pgQH
Explanation:
Detailed explanation and calculation is shown in the image below