Tag Archives: mean median mode

MEDIAN in Measures of Central Tendency

MEDIAN IN MEASURES OF CENTRAL TENDENCY

The median is a statistical measure that identifies the middle value in a data set when the numbers are arranged in numerical order. It effectively divides the data set into two equal halves, with half of the values lying below the median and half above it.

  1. Odd Number of Observations: If a data set contains an odd number of values, the median is the value that lies exactly in the middle of the sorted data set.
  2. Even Number of Observations: If a data set contains an even number of values, the median is the average of the two middle values in the sorted data set.

There are three type of Series I which Median can be calculated like Individual Series , Discrete Series & Continuous Series.

Kindly Check the link for Practical Solution of this formula :

Median in individual series

In statistics, an individual series refers to a data set where values are listed individually without any frequency distribution.

Median in discrete series

In a discrete series, data are presented along with their corresponding frequencies. To calculate the median in a discrete series, the data set is first arranged in ascending order, and then cumulative frequencies are calculated to determine the median class.

Median in Continuous series

In continuous series, data is grouped into class intervals with their corresponding frequencies. Calculating the median in a continuous series involves identifying the median class and then applying a formula to find the precise median value.

Median in Different Contexts

  1. Descriptive Statistics: The median is commonly used to summarize the central tendency of a data set.
  2. Economics: Median income is often reported to understand the income distribution of a population without the distortion caused by very high incomes.
  3. Real Estate: Median home prices give a better sense of typical property values compared to average prices, which can be skewed by very expensive homes.

Hope you enjoyed the topic.
Thanks a lot

How to Find Mode in Measures of Central Tendency

MODE IN MEASURES OF CENTRAL TENDENCY

In measures of central tendency, “mode” refers to the value that appears most frequently in a dataset. Unlike mean and median, which focus on the average and middle value respectively, mode highlights the most common occurrence. It’s particularly useful in categorical data or when dealing with data where certain values occur with higher frequency than others. For example, in the dataset {1, 2, 2, 3, 4, 4, 4, 5}, the mode is 4 because it appears more frequently than any other number. In some cases, a dataset may have multiple modes (bimodal, trimodal, etc.) if two or more values occur with the same highest frequency.

In an individual series (also known as raw data series), where each observation is unique, finding the mode is straightforward. You simply identify the value that occurs most frequently in the dataset.

Here’s how to find the mode in an individual series:

  1. Count Frequencies: Count the frequency (number of occurrences) of each distinct value in the dataset.
  2. Identify the Mode: The mode is the value that appears with the highest frequency.

Let’s go through an example:

Suppose you have the following individual series: 5,7,9,7,2,4,7,5,9,3,7,55, 7, 9, 7, 2, 4, 7, 5, 9, 3, 7, 55,7,9,7,2,4,7,5,9,3,7,5

1. Count the frequency of each distinct value:

  • Value 2 occurs once.
  • Value 3 occurs once.
  • Value 4 occurs once.
  • Value 5 occurs three times.
  • Value 7 occurs four times.
  • Value 9 occurs twice.

2. Identify the mode: The value that occurs with the highest frequency is 7 (which occurs four times), so the mode of this dataset is 7.

So, in this example, the mode is 7.

To find the mode in a discrete series (a set of data with distinct values), you can follow these steps:

  1. Organize Data: Arrange your data in ascending or descending order to make it easier to identify repeated values.
  2. Count Frequencies: Count the frequency (number of times each value appears) for each distinct value in the dataset.
  3. Identify the Mode: The mode is the value that occurs with the highest frequency. It’s the value that appears most frequently in the dataset.

Here’s a step-by-step example:

Let’s say you have the following dataset: 3,4,5,5,6,6,6,7,8,8,8,83, 4, 5, 5, 6, 6, 6, 7, 8, 8, 8, 83,4,5,5,6,6,6,7,8,8,8,8

  1. Organize the data in ascending order: 3,4,5,5,6,6,6,7,8,8,8,83, 4, 5, 5, 6, 6, 6, 7, 8, 8, 8, 83,4,5,5,6,6,6,7,8,8,8,8
  2. Count the frequency of each distinct value: 3:1,4:1,5:2,6:3,7:1,8:43: 1, 4: 1, 5: 2, 6: 3, 7: 1, 8: 43:1,4:1,5:2,6:3,7:1,8:4
  3. Identify the mode: The value with the highest frequency is 8, which appears 4 times. So, the mode of this dataset is 8.

If there are multiple values with the same highest frequency, then the dataset is said to be multimodal, and it has multiple modes. If all values occur with the same frequency, then the dataset is said to be uniform or there is no mode.

In continuous series (where data is presented as intervals or ranges rather than individual values), finding the mode involves determining the interval with the highest frequency density.

Here’s how you can find the mode in a continuous series:

  1. Group Data: If not already grouped, create intervals or classes for the continuous data. Each interval should be mutually exclusive and collectively exhaustive, covering the entire range of the data.
  2. Count Frequencies: Count the frequency of data points falling within each interval.
  3. Identify the Modal Interval: Determine which interval has the highest frequency density. Frequency density is calculated by dividing the frequency of each interval by its width (the difference between the upper and lower limits of the interval).
  4. Estimate Mode: Once you’ve identified the modal interval, you can estimate the mode within that interval. This is usually done by assuming a uniform distribution within the interval and finding the midpoint of the modal interval.

Here the formula to calculate Mode in practical form . kindly check the link for this :

Thanks