Question

In: Computer Science

5. A test engineer conducted an experiment to estimate time to failure of a system component...

5. A test engineer conducted an experiment to estimate time to failure of a system component known to decay with time. Because activation of the component depended on its interaction with other components in the system, she could not control when the component was activated, but she could measure the time of its activation. She tracked the function of that component in 14 randomly chosen prototypes of the system, recording activation time (Ta) for the component, and the time the component decayed to the point of failure (Tf). Results are delineated below (each data point in the recorded data is the time recorded in seconds from when the experiment began)

Chart : Prototype ID 3 8 14 17 21 22 25 32 34 40 46 43 48 49

Ta (sec) 0 12 6 17 32 14 35 22 10 18 29 23 4 15

Tf (sec) 130 115 158 180 250 292 117 217 231 172 123 182 218 200   

Write a MATLAB script that obtain statistics about the time it takes the component to decay to the point of failure. Your script can hardcode the data in Table 2 or ask the user to input the data. Include in your display the number of prototypes tested, a minimum time (the lowest calculated time), a maximum time (the highest calculated time), a standard estimate (the mean of calculated times across all prototypes), and a conservative estimate (the mean of calculated times across prototypes with the highest and lowest values removed). Your display should have the format as follows (with calculated values replacing ): Experimental results --------- Number of prototypes: Minimum time to failure: Maximum time to failure: Mean time to failure (standard): Mean time to failure (conservative):

Solutions

Expert Solution

Ta=[0 12 6 17 32 14 35 22 10 18 29 23 4 15];
Tf=[130 115 158 180 250 292 117 217 231 172 123 182 218 200];
time=Tf-Ta;
count=length(Ta);
maxTime=max(time);
minTime=min(time);
stdEstimate=mean(time);
conservativeEstimate=(sum(time)-maxTime-minTime)/(count-2);
fprintf('Experimental results\n')
fprintf('---------\n')
fprintf('Number of prototypes: %d\n',count)
fprintf('Minimum time to failure: %d s\n',minTime)
fprintf('Maximum time to failure: %d s\n',maxTime)
fprintf('Mean time to failure (standard): %g s\n',stdEstimate)
fprintf('Mean time to failure (conservative): %g s\n',conservativeEstimate)


Related Solutions

You are a failure analysis engineer who must certify the integrity of an engineering component. Your...
You are a failure analysis engineer who must certify the integrity of an engineering component. Your component manufacturer has informed you that the plane strain fracture toughness of the component is measured to be as high as 140 ???√? and certifies that the surface cracks observed in the components are not bigger than 0.01 mm. During service, this component is to be continuously cycled at 3000 revolutions per minute between compressive and tensile stresses of 350 MPa. Assume that ?...
researchers conducted an experiment to test the effvts of alcohol. errors were recorded in a test...
researchers conducted an experiment to test the effvts of alcohol. errors were recorded in a test of visual and motor skills for a treatment group of 21 people who drank ethanol and another geouo of 21 people given a placebo. the errors for the treatment group have a standard deviation of 2.40, and the errors for the placebo group have a standard deviation of 0.87. use a 0.05 significance level to test the claim that the treatment group has errors...
Researchers conducted an experiment to test the effects of alcohol. Errors were recorded in a test...
Researchers conducted an experiment to test the effects of alcohol. Errors were recorded in a test of visual and motor skills for a treatment group of 21 people who drank ethanol and another group of 21 people given a placebo. The errors for the treatment group have a standard deviation of 2.40​, and the errors for the placebo group have a standard deviation of 0.83. Use a 0.05 significance level to test the claim that the treatment group has errors...
researchers conducted an experiment to test the effects of alcohol. Errors were recorded in a test...
researchers conducted an experiment to test the effects of alcohol. Errors were recorded in a test of visual and motor skills for a treatment group of 21 people who drank ethanol and another group of 21 people given a placebo. The errors for the treatment group have a standard deviation of 2.40 and the errors for the placebo group; have a standard deviation of 0.73 use a 0.05 significance level to test the claim that the treatment group has errors...
Researchers conducted an experiment to test the effects of alcohol. Errors were recorded in a test...
Researchers conducted an experiment to test the effects of alcohol. Errors were recorded in a test of visual and motor skills for a treatment group of 21 people who drank ethanol and another group of 21 people given a placebo. The errors for the treatment group have a standard deviation of 2.40​, and the errors for the placebo group have a standard deviation of 0.83. Use a 0.05 significance level to test the claim that the treatment group has errors...
The random variable x describes the failure time (in years) of a certain hydraulic component. The...
The random variable x describes the failure time (in years) of a certain hydraulic component. The function of the variable is: f(x) = 32 / (x + 4)^3      x > 0 1) Determine if it is a function of density 2) Determine the cumulative probability function 3) Calculate the probability that the component's lifetime is between 2 and 6 years. 4) Calculate V (x) and E (x) for the life span of this type of component. 5) If you were...
The failure time T (in hours of use) for a particular electronics component follows an exponential...
The failure time T (in hours of use) for a particular electronics component follows an exponential distribution with parameter λ. Find the probability that a failure time is somewhere within 1 standard deviation of the mean failure time. Explain in words what you did to solve this, and then tell me your final answer.
An experiment was conducted to test the effect of different lighting systems and the presence or...
An experiment was conducted to test the effect of different lighting systems and the presence or absence of a watchman on the average number of car burglaries per month at a parking garage. The data are in the following table and also in the file GARAGE, where the variables are named BURGLAR, LIGHTING and WATCHMAN. Lighting Watchman Mean Number of Burglaries poor no 2.80 good no 1.00 poor yes 2.40 good yes 0.75 Using the Lenth procedure, find which effect(s)...
In 1954, an experiment was conducted to test the effectiveness of the Salk Vaccine as protection...
In 1954, an experiment was conducted to test the effectiveness of the Salk Vaccine as protection against the devastating effects of polio. Approximately 200,000 children were injected with an ineffective salt solution, and 200,000 other children were injected with the vaccine. The experiment was "double blind". Only 30 of the 200,000 vaccinated children later developed paralytic polio, whereas 120 of the 200,000 injected with the salt solution later developed paralytic polio. a) Estimate the 95% confidence interval for the relative...
An experiment was conducted to test the effect of a new drug on a viral infection....
An experiment was conducted to test the effect of a new drug on a viral infection. After the infection was induced in 100 mice, the mice were randomly split into two groups of 50. The control group received no treatment for the infection, while the other group received the drug. After a 30-day period, the proportions of survivors, p̂1 and p̂2, in the two groups were found to be 0.38 and 0.66, respectively. (a) Is there sufficient evidence to indicate...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT