The batting average (BA) of a Test batsman is computed from runs scored and innings played — completed innings and incomplete innings (not out) in the following manner:
\[ r_1 = \text{Number of runs scored in completed innings} \] \[ n_1 = \text{Number of completed innings} \] \[ r_2 = \text{Number of runs scored in incomplete innings} \] \[ n_2 = \text{Number of incomplete innings} \]
\[ BA = \frac{r_1 + r_2}{n_1} \]
To better assess a batsman’s accomplishments, the ICC is considering two other measures MBA1 and MBA2, defined as follows:
\[ MBA_1 = \frac{r_1}{n_1} + \frac{n_2}{n_1} \max \left( 0, \left( \frac{r_2}{n_2} - \frac{r_1}{n_1} \right) \right) \]
\[ MBA_2 = \frac{r_1 + r_2}{n_1 + n_2} \]