3

The distribution is left-skewed if mean<median<mode.

The distribution is right-skewed if mean>median>mode.

Can mode lie between mean and median?

eMathHelp
  • 2,409
  • 3
    related: https://stats.stackexchange.com/questions/251701/counterexamples-where-median-is-outside-mode-mean – user51547 Jan 05 '22 at 16:19
  • 1
    This is a very nice question (+1). It brings up some issues you may not have thought about. I mention a few of them in my Answer. – BruceET Jan 06 '22 at 03:58

4 Answers4

3

First, left- or right-skewed tells you nothing about the mode.

For a case you are looking for try out $$0, 1, 1.5, 1.6, 2, 2, 12$$

Paul
  • 8,153
  • I wrote about mode because of this picture: https://www.statisticshowto.com/wp-content/uploads/2014/02/pearson-mode-skewness.jpg – eMathHelp Jan 05 '22 at 16:56
2

Paul's answer works, but it is also possible to have a distribution which is unimodal and either is continuous or is discrete with equal gaps in the support, such as the following distribution with median $2$, mode $3$ and mean $3.02$:

x   P(X=x)
0   0.16
1   0.17
2   0.18
3   0.19
4   0.06
5   0.055
6   0.05
7   0.045
8   0.04
9   0.03
10  0.02

It is possible to have the mean, median and mode in any order, though having the mode strictly between the other two may in a vague handwaving sense be less likely than other patterns, as I once tried to show

Henry
  • 157,058
1

Yes, The first two sentences are often, but not always, true. (They are true for some well-known distributions.)

However, as you can see from other Answers, and from my example below, it is possible to contrive a sample or population with discrete values, for which the mode lies between the median and the mean. [Using R.]

x = c(1,1,1,2,2,3,3,3,4,4,4,4,25)
summary(x)
   Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
 1.000   2.000   3.000   4.385   4.000  25.000 

Median is $3,$ mode is $4,$ mean is $4.385.$

Exponential distribution. Among frequently-used distributions, consider right-skewed $\mathsf{Exp(1)}.$

Mode is $0$, median is $0.6931$ (below), and mean is $1.$

qexp(.5, 1)
[1] 0.6931472

A beta distribution. For the left-skewed continuous distribution $\mathsf{Beta}(5,2),$ the mean is $5/7 \approx 0.714,$ the median is $0.736,$ and the mode is $4/5 = 0.800.$

qbeta(.5, 5, 2)
[1] 0.73555

Samples from continuous distributions. It is not so easy to define the mode of a sample from a continuous distribution because no two sample values (before rounding) can ever be exactly the same.

Two (of many) possible definitions of the mode of the beta sample below might be the center of the tallest bar of its histogram (which is somewhat arbitrary depending on binning), or the maximum of its kernel density estimator (KDE), which we can view for the moment as a 'smoothed ideal histogram'.

set.seed(2022)
x = rbeta(1000, 5, 2)
summary(x)
   Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
 0.1800  0.5991  0.7428  0.7095  0.8381  0.9976 
hist(x, prob=T, ylim=c(0,3), col="skyblue2")
lines(density(x), col="orange", lwd=2)

enter image description here

So, the sample mean is $0.710,$ the sample median is $0.742,$ and the sample mode might be taken to be something like $0.75$ (from the tallest histogram bar) or something like $0.79$ from the KDE (orange curve).

BruceET
  • 51,500
0

In case of a positively skewed frequency distribution, the mean is always greater than median and the median is always greater than the mode. In case of a negatively skewed frequency distribution, the mean is always lesser than median and the median is always lesser than the mode.

  • 1
    From what I can see, the OP understands that what you say is the case. It seems like he/she was looking for an example where this is not the case, and so while your answer is appreciated, it leaves something to be desired (particularly with the other answers already posted). – scoopfaze Jan 06 '22 at 04:44
  • Answer doesn't really add much to the dialogue that isn't already present. – scoopfaze Jan 06 '22 at 04:44
  • @Paul told that "left- or right-skewed tells you nothing about the mode". You say that mode matter. Where is the truth? – eMathHelp Jan 06 '22 at 12:47