Accendo Reliability

Your Reliability Engineering Professional Development Site

  • Home
  • About
    • Contributors
  • Reliability.fm
    • Speaking Of Reliability
    • Rooted in Reliability: The Plant Performance Podcast
    • Quality during Design
    • Way of the Quality Warrior
    • Critical Talks
    • Dare to Know
    • Maintenance Disrupted
    • Metal Conversations
    • The Leadership Connection
    • Practical Reliability Podcast
    • Reliability Matters
    • Reliability it Matters
    • Maintenance Mavericks Podcast
    • Women in Maintenance
    • Accendo Reliability Webinar Series
  • Articles
    • CRE Preparation Notes
    • on Leadership & Career
      • Advanced Engineering Culture
      • Engineering Leadership
      • Managing in the 2000s
      • Product Development and Process Improvement
    • on Maintenance Reliability
      • Aasan Asset Management
      • AI & Predictive Maintenance
      • Asset Management in the Mining Industry
      • CMMS and Reliability
      • Conscious Asset
      • EAM & CMMS
      • Everyday RCM
      • History of Maintenance Management
      • Life Cycle Asset Management
      • Maintenance and Reliability
      • Maintenance Management
      • Plant Maintenance
      • Process Plant Reliability Engineering
      • ReliabilityXperience
      • RCM Blitz®
      • Rob’s Reliability Project
      • The Intelligent Transformer Blog
      • The People Side of Maintenance
      • The Reliability Mindset
    • on Product Reliability
      • Accelerated Reliability
      • Achieving the Benefits of Reliability
      • Apex Ridge
      • Metals Engineering and Product Reliability
      • Musings on Reliability and Maintenance Topics
      • Product Validation
      • Reliability Engineering Insights
      • Reliability in Emerging Technology
    • on Risk & Safety
      • CERM® Risk Insights
      • Equipment Risk and Reliability in Downhole Applications
      • Operational Risk Process Safety
    • on Systems Thinking
      • Communicating with FINESSE
      • The RCA
    • on Tools & Techniques
      • Big Data & Analytics
      • Experimental Design for NPD
      • Innovative Thinking in Reliability and Durability
      • Inside and Beyond HALT
      • Inside FMEA
      • Integral Concepts
      • Learning from Failures
      • Progress in Field Reliability?
      • R for Engineering
      • Reliability Engineering Using Python
      • Reliability Reflections
      • Testing 1 2 3
      • The Manufacturing Academy
  • eBooks
  • Resources
    • Accendo Authors
    • FMEA Resources
    • Feed Forward Publications
    • Openings
    • Books
    • Webinars
    • Journals
    • Higher Education
    • Podcasts
  • Courses
    • 14 Ways to Acquire Reliability Engineering Knowledge
    • Reliability Analysis Methods online course
    • Measurement System Assessment
    • SPC-Process Capability Course
    • Design of Experiments
    • Foundations of RCM online course
    • Quality during Design Journey
    • Reliability Engineering Statistics
    • Quality Engineering Statistics
    • An Introduction to Reliability Engineering
    • Reliability Engineering for Heavy Industry
    • An Introduction to Quality Engineering
    • Process Capability Analysis course
    • Root Cause Analysis and the 8D Corrective Action Process course
    • Return on Investment online course
    • CRE Preparation Online Course
    • Quondam Courses
  • Webinars
    • Upcoming Live Events
  • Calendar
    • Call for Papers Listing
    • Upcoming Webinars
    • Webinar Calendar
  • Login
    • Member Home

by nomtbf Leave a Comment

MTBF and Mean of Wearout Data

MTBF and Mean of Wearout Data

MTBF is Just the Mean, Right?

A conversation the other day involved how or why someone would use the mean of a set of data described by a Weibull distribution.

The Weibull distribution is great at describing a dataset that has a decreasing or increasing hazard rate over time. Using the distribution we also do not need to determine the MTBF (which is not all that useful, of course).

Walking up the stairs today, I wondered if the arithmetic mean of the time to failure data, commonly used to estimate MTBF, is the same as the mean of the Weibull distribution. Doesn’t everyone think about such things?

Doesn’t everyone think about such things? So, I thought, I’d check. Set up some data with an increasing failure rate, and calculate the arithmetic mean and the Weibull distribution mean.

The Data Set

I opened R and using the random number generating function, rweibull, created 50 data points from a Weibull distribution with a shape (β) of 7 and scale (η) of 1,000.

Here’s a histogram of the data.

histogram
Histogram of 50 randomly generated time to failure data points

Calculating the Mean Two Ways

Let’s say the randomly generated data is complete. No censoring, no replacements, etc. All fifty items ran for some amount of time and then failed. We could calculate the MTBF by tallying up all the time to failure data and dividing by the number of failures.

This is the arithmetic mean, that one we use commonly for all sorts of data summarization work.

Doing so we find the mean is 951.1.

Now is the mean of the Weibull distribution the same or not?

The formula for the mean of a Weibull distribution is

$latex \displaystyle&s=4  \bar{T}=\eta \centerdot \Gamma \left( \frac{1}{\beta }+1 \right)$

according to Reliawiki’s discussion of the Weibull Distribution.

Ok, let’s calculate the Weibull mean given the distribution has a β of 7 and η of 1,000. We find the Weibull mean as 935.4.

Comparison and an Aha! Moment

Since 935.4 ≠ 951.1, I will conclude the two ways to calculate the mean is not the same. Hum, wait a minute. A set of random values from a distribution does not mean the data is best described by the generating distribution, especially for a small dataset.

So, let’s check something. If I generate 50,000 data points from the same distribution as above, the data should be very close to the distribution used to create the data.

With 50,000 data points, the arithmetic mean is 935.0, which is very close to the Weibull mean, 935.4, based on the β and η of the random generating function.

I have to now conclude the mean calculated both ways is same. Both determine the 1st moment of the dataset, the center of mass, etc.

My initial error was not determining the distribution parameters based on the data.

Summary

Question answered. The calculation of MTBF or the mean from the data or based on the distribution parameters is the same.

That leaves the question of why anyone would want to calculate the mean of a set of time to failure data in the first place. We’ve been trying to convince you and everyone else to not bother doing so.

If you have a good reason to calculate the mean of a dataset with a clear increasing hazard rate, leave a comment below. Need to check my assumpiton that the Weibull mean is not all that useful and not worth the effort to calcualte using any method.

Filed Under: Articles, NoMTBF

« Increase Productivity and Competitiveness with MRO Technology – Part 1
4 Differences Between Leaders & Managers »

Comments

  1. WILLIAM THORLAY says

    March 22, 2017 at 3:08 PM

    Fred, in this example you said that there were 50 failures in 1200 hours. From zero to 600h, there were no failures. How did you come up with MTBF of 951.1?

    Reply
    • Fred Schenkelberg says

      March 22, 2017 at 3:14 PM

      I knew I should have kept the raw data. What I did was generate 50 random number from a Weibull beta 7 eta 1,000 distribution. As the histogram shows an obvious increasing failure rate over time (not counting the last bin…)

      The MTBF or mean is just the straight calculator mean, adding all the value and dividing by the number of items. The values ranged from about 600 to 1,200, yet the center of mass for the 50 values was at 951. Since there were only 50 random numbers generated it likely would fit a distribution near beta 7 eta 1,000, yet not exactly.

      The Weibull derived mean is using the beta and eta withe Gamma function in the formula to calculate the mean – I suspected they should match, yet had never tried it.

      Cheers,

      Fred

      Reply

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

[popup type="" link_text="Get Weekly Email Updates" link_class="button" ]

[/popup]

The Accendo Reliablity logo of a sun face in circuit

Please login to have full access.




Lost Password? Click here to have it emailed to you.

Not already a member? It's free and takes only a moment to create an account with your email only.

Join

Your membership brings you all these free resources:

  • Live, monthly reliability webinars & recordings
  • eBooks: Finding Value and Reliability Maturity
  • How To articles & insights
  • Podcasts & additional information within podcast show notes
  • Podcast suggestion box to send us a question or topic for a future episode
  • Course (some with a fee)
  • Largest reliability events calendar
  • Course on a range of topics - coming soon
  • Master reliability classes - coming soon
  • Basic tutorial articles - coming soon
  • With more in the works just for members
Speaking of Reliability podcast logo

Subscribe and enjoy every episode

RSS
iTunes
Stitcher

Join Accendo

Receive information and updates about podcasts and many other resources offered by Accendo Reliability by becoming a member.

It’s free and only takes a minute.

Join Today

Dare to Know podcast logo

Subscribe and enjoy every episode

RSS
iTunes
Stitcher

Join Accendo

Receive information and updates about podcasts and many other resources offered by Accendo Reliability by becoming a member.

It’s free and only takes a minute.

Join Today

Accendo Reliability Webinar Series podcast logo

Subscribe and enjoy every episode

RSS
iTunes
Stitcher

Join Accendo

Receive information and updates about podcasts and many other resources offered by Accendo Reliability by becoming a member.

It’s free and only takes a minute.

Join Today

Recent Articles

  • test
  • test
  • test
  • Your Most Important Business Equation
  • Your Suppliers Can Be a Risk to Your Project

© 2025 FMS Reliability · Privacy Policy · Terms of Service · Cookies Policy