Accendo Reliability

Your Reliability Engineering Professional Development Site

  • Home
  • About
    • Contributors
    • About Us
    • Colophon
    • Survey
  • Reliability.fm
    • Speaking Of Reliability
    • Rooted in Reliability: The Plant Performance Podcast
    • Quality during Design
    • CMMSradio
    • Way of the Quality Warrior
    • Critical Talks
    • Asset Performance
    • Dare to Know
    • Maintenance Disrupted
    • Metal Conversations
    • The Leadership Connection
    • Practical Reliability Podcast
    • Reliability Hero
    • Reliability Matters
    • Reliability it Matters
    • Maintenance Mavericks Podcast
    • Women in Maintenance
    • Accendo Reliability Webinar Series
  • Articles
    • CRE Preparation Notes
    • NoMTBF
    • on Leadership & Career
      • Advanced Engineering Culture
      • ASQR&R
      • 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 Maintenance Management
      • 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
      • RCM Blitz®
      • ReliabilityXperience
      • 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
      • Field Reliability Data Analysis
      • Metals Engineering and Product Reliability
      • Musings on Reliability and Maintenance Topics
      • Product Validation
      • Reliability by Design
      • Reliability Competence
      • Reliability Engineering Insights
      • Reliability in Emerging Technology
      • Reliability Knowledge
    • on Risk & Safety
      • CERM® Risk Insights
      • Equipment Risk and Reliability in Downhole Applications
      • Operational Risk Process Safety
    • on Systems Thinking
      • The RCA
      • Communicating with FINESSE
    • on Tools & Techniques
      • Big Data & Analytics
      • Experimental Design for NPD
      • Innovative Thinking in Reliability and Durability
      • Inside and Beyond HALT
      • Inside FMEA
      • Institute of Quality & Reliability
      • Integral Concepts
      • Learning from Failures
      • Progress in Field Reliability?
      • R for Engineering
      • Reliability Engineering Using Python
      • Reliability Reflections
      • Statistical Methods for Failure-Time Data
      • Testing 1 2 3
      • The Hardware Product Develoment Lifecycle
      • The Manufacturing Academy
  • eBooks
  • Resources
    • Accendo Authors
    • FMEA Resources
    • Glossary
    • Feed Forward Publications
    • Openings
    • Books
    • Webinar Sources
    • Journals
    • Higher Education
    • Podcasts
  • Courses
    • Your Courses
    • 14 Ways to Acquire Reliability Engineering Knowledge
    • Live Courses
      • Introduction to Reliability Engineering & Accelerated Testings Course Landing Page
      • Advanced Accelerated Testing Course Landing Page
    • Integral Concepts Courses
      • Reliability Analysis Methods Course Landing Page
      • Applied Reliability Analysis Course Landing Page
      • Statistics, Hypothesis Testing, & Regression Modeling Course Landing Page
      • Measurement System Assessment Course Landing Page
      • SPC & Process Capability Course Landing Page
      • Design of Experiments Course Landing Page
    • The Manufacturing Academy Courses
      • An Introduction to Reliability Engineering
      • Reliability Engineering Statistics
      • An Introduction to Quality Engineering
      • Quality Engineering Statistics
      • FMEA in Practice
      • Process Capability Analysis course
      • Root Cause Analysis and the 8D Corrective Action Process course
      • Return on Investment online course
    • Industrial Metallurgist Courses
    • FMEA courses Powered by The Luminous Group
      • FMEA Introduction
      • AIAG & VDA FMEA Methodology
    • Barringer Process Reliability Introduction
      • Barringer Process Reliability Introduction Course Landing Page
    • Fault Tree Analysis (FTA)
    • Foundations of RCM online course
    • Reliability Engineering for Heavy Industry
    • How to be an Online Student
    • Quondam Courses
  • Webinars
    • Upcoming Live Events
    • Accendo Reliability Webinar Series
  • Calendar
    • Call for Papers Listing
    • Upcoming Webinars
    • Webinar Calendar
  • Login
    • Member Home
Home » Articles » MTBF and Mean of Wearout Data

by Fred Schenkelberg 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

About Fred Schenkelberg

I am the reliability expert at FMS Reliability, a reliability engineering and management consulting firm I founded in 2004. I left Hewlett Packard (HP)’s Reliability Team, where I helped create a culture of reliability across the corporation, to assist other organizations.

« The Paradox of the Invisible Discipline
Progress in USAF Engine Logistics? »

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 *

The NoMTBF logo

Devoted to the eradication of the misuse of MTBF.

Photo of Fred SchenkelbergArticles by Fred Schenkelberg and guest authors

in the NoMTBF article series

Recent Posts

  • 7 Proven Strategies to Protect Your Supply Chain
  • Progress in USAF Engine Logistics?
  • MTBF and Mean of Wearout Data
  • The Paradox of the Invisible Discipline
  • Historical Data

Join Accendo

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

It’s free and only takes a minute.

Join Today

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

Book the Course with John
  Ask a question or send along a comment. Please login to view and use the contact form.
This site uses cookies to give you a better experience, analyze site traffic, and gain insight to products or offers that may interest you. By continuing, you consent to the use of cookies. Learn how we use cookies, how they work, and how to set your browser preferences by reading our Cookies Policy.