Wolfram Computation Meets Knowledge

Reliability Mathematics in Mathematica

What is the cost of extending a warranty for a car? I’d be interested to know, since my car broke down just past the 100,000 mile marker on a road trip through America. With Mathematica 9 comes complete functionality for reliability analysis that can help us analyze systems like cars. I thought it might be worthwhile to take Mathematica for a spin and look at how some technical systems can be modeled and analyzed.

As an example, take the engine of my Mitsubishi Diamante. In order to work, the Mitsubishi V6 engine needs spark plugs, gasoline direct injection, and a timing belt. This can be modeled with ReliabilityDistribution:

 ReliabilityDistribution

The function ReliabilityDistribution takes two arguments: a Boolean expression describing the layout of the system and probability distributions describing the individual components’ lifetimes. I’m using ∧ for the And operator in the above input; Mathematica can handle “And,” ” ∧,” and “&&” for the And operator and similarly, “∨,” “||,” and “Or” for the Or operator.

System connection
 
The system works as long as there’s a connection from start to end.

The lifetime distributions can be the typical distributions used in the field, such as Weibull, exponential, gamma, log-normal, Erlang, Birnbaum–Saunders, and many more. Here I’m using both the Weibull and the exponential distributions and assuming that the average failure of the gasoline direct injection system occurs at around 220,000 miles, 75,000 miles for the timing belt, and 145,000 miles for the spark plugs.

Lifetime distributions

These are survival functions of some common distributions that are used in reliability.

Now I can easily query the system for various properties such as the mean time to failure (MTTF), which is about 53,000 miles:

mean = Mean[engine]

Or plot the survival function, sometimes called the reliability function.

Reliability function for the engine

In short, all of the probability and statistics functions work with ReliabilityDistribution.

Another subsystem of my car that I recently had to familiarize myself with is the rear lighting system. This system will fail if the light bulb burns out, the fuse blows, or the electrical wires are broken. This failure-oriented approach can be modeled with a FailureDistribution.

FailureDistribution

Failure diagram
 
The events are the circles at the bottom, one level above them is how they are connected, and at the top is the top event. When the top event is triggered, the system has failed. In this case the connection between the events is an Or gate, since any bottom event would trigger the top event. This type of diagram is often called a fault tree.

Here I’m using three different failure rates for the light bulbs, the fuse, and the wires. The coefficients in front of the parameter λ reflect my experience that the bulbs blow more often than the fuses, which in turn are less prone to faults than the wires. I’ll keep λ, the failure rate in months, symbolic to start with and use numeric values when needed.

Just as with the ReliabilityDistribution, I can calculate properties for this system. Symbolic computations are of course directly supported. Here is the probability that the system fails before time t==1/2.

Probability[t < 1/2, t \[Distributed] lightSystem]

To create more elaborate models, I usually structure my models into hierarchies. So if I want to model both the front and the rear lights, I can do that with a hierarchical system by combining two ReliabilityDistributions into one, separating them by a Boolean expression—in this case an And operation.

Two ReliabilityDistributions

By setting λ to 100 months, I can plot the survival function for the system:

Plot

My car is also equipped with a traction control system and anti-lock braking system (ABS). If the ABS fails, the car reverts to using the regular braking system. This fallback mechanism can be modeled with a StandbyDistribution. For the ABS to work, both the electronic control unit (ECU) and the two wheel sensors need to work.

I start with creating a reliability distribution for the ABS and with two separate symbolic failure rates λ1 and λ2.

Reliability distribution for the ABS

This is the reliability block diagram for the anti-lock braking system.

Then I can create a distribution for how the complete brake system works.

Distribution for how the complete brake system works

RBD stand by system

This is the reliability block diagram for the standby system, which will fall back
on the standard brakes if the ABS systems breaks.

OK, so say I have the components, their lifetimes, and their configuration. Now how do I find out which components to improve? This question is exactly what the so-called importance measures are for. As an example, I’ll look at my anti-lock braking system and figure out which components to improve.

iImportance = ImprovementImportance[\[ScriptCapitalR]ABS, t]

Improvement importance (sometimes also called improvement potential) describes how much the survival function of a component would increase if it were replaced by a perfect component, making it easy to see which components to increase the reliability of. If you have economic data, it’s also easy to make economically sound decisions. The improvement importance is a relative measure, so for a figure to make sense, it has to be put in context with the other components in the system.

In this case, it’s not surprising to see that the left- and right-wheel sensors show the same importance (they have the same structural importance and the same lifetime distribution). By adding some numbers to the failure rates, assuming the sensor breaks on average after 10,000 hours and the ECU after 25,000 hours, I can plot the system.

Plot the system

Given these numbers, one should first improve the sensors before improving the ECU, since they show higher improvement potential throughout. This agrees with my and other Diamante owners’ experience, when my sensors have failed while the ECU is fine. The sensors are easy to replace, but (relatively) expensive.

Finally, let’s return to my opening question and the pricing of warranty policies. What should an extension of the warranty from 100,000 miles to 150,000 miles cost?

Cost probability

With a mean cost of repair at $1,000, it would turn out to be around $96:

96.1141

If you are interested in learning about the capabilities of the reliability functionality in Mathematica, you can watch this presentation I did at last year’s Wolfram Technology Conference.

Or go right to the documentation.

Download this post as a Computable Document Format (CDF) file.

Comments

Join the discussion

!Please enter your comment (at least 5 characters).

!Please enter your name.

!Please enter a valid email address.

13 comments

  1. This is a great post! Very much enjoyed reading this.

    Reply
  2. Great stuff. Keep up the good work !

    Reply
  3. Thanks for sharing. This post is very informative and even contains a video.

    Reply
  4. Great post. How did you get the three parameters for the distributions appearing in the first line of code?

    Reply
  5. Very nice that this function is built into mathematica, definitely need to get a hold of this software.

    Reply
  6. Thank you, Andrew. Yes a GUI would definitely be a cool feature. Stay tuned for further developments in this area!

    Reply
  7. Thank you Marshal,
    As for survival analysis, Mathematica 9 actually added a full suite of tools for that. Check out these pages:
    http://www.wolfram.com/mathematica/new-in-9/survival-analysis/
    http://reference.wolfram.com/mathematica/guide/SurvivalAnalysis.html
    And also this presentation from Mathematica Experts Live: http://wolfr.am/HXld9q

    Reply
  8. In terms of being able to answer quitseons, I’m willing to give it the benefit of the doubt. The project is in its early days.I am pleased to see a couple of easter eggs in there, e.g. speed of a sparrow .

    Reply