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
shepuryov [24]
3 years ago
5

I. The time till failure of an electronic component has an Exponential distribution and it is known that 10% of components have

failed by 1000 hours. (a) Find the mean and standard deviation of the time till failure. (b) What is the probability that a component is still working after 5000 hours? (c) What is the probability that three components fail in one hour? (d) What is the probability that at least two components fail in one half hour?
Engineering
1 answer:
drek231 [11]3 years ago
4 0

Answer:

(a) The mean time to fail is 9491.22 hours

The standard deviation time to fail is 9491.22 hours

(b) 0.5905

(c) 3.915 × 10⁻¹²

(d) 2.63 × 10⁻⁵

Explanation:

(a) We put time to fail = t

∴ For an exponential distribution, we have f(t) = \lambda e^{-\lambda t}

Where we have a failure rate = 10% for 1000 hours, we have(based on online resource);

P(t \leq 1000) = \int\limits^{1000}_0 {\lambda e^{-\lambda t}} \, dt = \dfrac{e^{1000\lambda}-1}{e^{1000\lambda}} = 0.1

e^(1000·λ) - 0.1·e^(1000·λ) = 1

0.9·e^(1000·λ) = 1

1000·λ = ㏑(1/0.9)

λ = 1.054 × 10⁻⁴

Hence the mean time to fail, E = 1/λ = 1/(1.054 × 10⁻⁴) = 9491.22 hours

The standard deviation = √(1/λ)² = √(1/(1.054 × 10⁻⁴)²)) = 9491.22 hours

b) Here we have to integrate from 5000 to ∞ as follows;

p(t>5000) = \int\limits^{\infty}_{5000} {\lambda e^{-\lambda t}} \, dt =\left [  -e^{\lambda t}\right ]_{5000}^{\infty} = e^{5000 \lambda} = 0.5905

(c) The Poisson distribution is presented as follows;

P(x = 3) = \dfrac{\lambda ^x e^{-x}}{x!}  = \frac{(1.0532 \times 10^{-4})^3 e^{-3} }{3!}  = 3.915\times 10^{-12}

p(x = 3) = 3.915 × 10⁻¹²

d) Where at least 2 components fail in one half hour, then 1 component is expected to fail in 15 minutes or 1/4 hours

The Cumulative Distribution Function is given as follows;

p( t ≤ 1/4) CDF = 1 - e^{-\lambda \times t} = 1 - e^{-1.054 \times 10 ^{-4} \times 1/4} = 2.63 \times 10 ^{-5}.

You might be interested in
A cylindrical specimen of a hypothetical metal alloy is stressed in compression. If its original and final diameters are 30.00 a
IrinaVladis [17]

Answer:

The original length of the specimen l_{o} = 104.7 mm

Explanation:

Original diameter d_{o} = 30 mm

Final diameter d_{1} = 30.04 mm

Change in diameter Δd = 0.04 mm

Final length l_{1} = 105.20 mm

Elastic modulus E = 65.5 G pa = 65.5 × 10^{3} M pa

Shear modulus G = 25.4 G pa = 25.4 × 10^{3} M pa

We know that the relation between the shear modulus & elastic modulus is given by

G = \frac{E}{2(1 + \mu)}

25.5 = \frac{65.5}{2 (1 + \mu)}

\mu = 0.28

This is the value of possion's ratio.

We know that the possion's ratio is given by

\mu = \frac{\frac{0.04}{30} }{\frac{change \ in \ length}{l_{o} } }

{\frac{change \ in \ length}{l_{o} } = \frac{\frac{0.04}{30} }{0.28}

{\frac{change \ in \ length}{l_{o} } = 0.00476

\frac{l_{1} - l_{o}  }{l_{o}  } = 0.00476

\frac{l_{1} }{l_{o} } = 1.00476

Final length l_{o} = 105.2 m

Original length

l_{o} = \frac{105.2}{1.00476}

l_{o} = 104.7 mm

This is the original length of the specimen.

5 0
3 years ago
Developed an automated program in any language which take 12 dependent variable and corresponding independent variables and show
otez555 [7]

Answer:

Explanation:

var generator = new Random(1);

// Now the nextGaussian() function returns a normal distribution of random numbers with the following parameters: a mean of zero and a standard deviation of one

var draw = function() {

var num = generator.nextGaussian();

var standardDeviation = 60;

var mean = 2003;

// Multiply by the standard deviation and add the mean.

var x = standardDeviation * num + mean;

noStroke();

fill(214, 159, 214, 10);

ellipse(x, 200, 16, 16); };

Hope this will be helpful

3 0
3 years ago
Counter argument for why engineers dont make a positive change in the world.​
egoroff_w [7]

Answer:

They don't make a positive change in the world because they have made mistakes that aren't able to be made fixed and there are a lot of engineers who haven't study enough and know the important basis of coming to engineer.

3 0
3 years ago
Explain the conductivity results observed for ionic compounds in the solid state and in aqueous solution.i.Solid ionic compounds
Svetach [21]

Answer:

Aqueous solution of ionic compounds conduct electricity while solid ionic compounds don't.

Explanation:

Ionic compound conduct electricity when liquid or in aqueous solution that is resolved in water because the ionic bonds of the compound become weak and the ions are free to move from place to place.

Ionic compounds don't conduct electricity while in solid state because the ionic bonds are to strong and ions cannot move around with lack of space for movement which makes the electric conductivity zero.

8 0
3 years ago
In Lab 7, we worked through a program that displayed the homeless shelter occupancy over time. The same approach can be used for
Bezzdna [24]

Answer:

Explanation:

The python code to generate this is quite simple to run.

i hope you understand everything written here, you can as well try out other problems to understand better.

First to begin, we import the package;

Code:

import pandas as pd

import matplotlib.pyplot as plt

name = input('Enter name of the file: ')

op = input('Enter name of output file: ')

df = pd.read_csv(name)

df['Date'] = pd.to_datetime(df["Date"].apply(str))

plt.plot(df['Date'],df['Absent']/(df['Present']+df['Absent']+df['Released']),label="% Absent")

plt.legend(loc="upper right")

plt.xticks(rotation=20)

plt.savefig(op)

plt.show()

This should generate the data(plot) as seen in the uploaded screenshot.

thanks i hope this helps!!!

6 0
3 years ago
Other questions:
  • Steam at 150 bars and 600°C passes through process equipment and emerges at 100 bars and 700°C. There is no flow of work into or
    8·1 answer
  • 12. The small space above the piston in which fuel is burned is called the
    10·1 answer
  • Use the orange points (square symbol) to plot the initial short-run industry supply curve when there are 20 firms in the market.
    5·1 answer
  • A piston having a diameter of 5.48 inches and a length of 9.50 in slides downward with a
    13·1 answer
  • Do heavier cars really use more gasoline? Suppose a car is chosen at random. Let x be the weight of the car (in hundreds of poun
    9·1 answer
  • Create an abstract class DiscountPolicy. It should have a single abstract method computeDiscount that will return the discount f
    7·1 answer
  • Write a function separatethem that will receive one input argument which is a structure containing fields named length and width
    8·1 answer
  • Digital leaders are people who __ others down a particular path.
    13·2 answers
  • Set the leak rate to zero and choose a non-zero value for the proportional feedback gain.Restart the simulation and turn on the
    5·1 answer
  • How pine are processed ????
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!