Calcolatore della MedianaFormula

## How to Find the Median

### Method

1. Sort the numbers from smallest to largest
2. The median is the middle number

For 3 values, the median equals the sum minus the minimum minus the maximum:

**Median = a + b + c - min(a,b,c) - max(a,b,c)**

Esempio Risolto

Find the median of 7, 3, and 12.

  1. Sort the values: 3, 7, 12
  2. The middle value is 7
  3. Alternatively: 7 + 3 + 12 - min(3,7,12) - max(3,7,12) = 22 - 3 - 12 = 7