Cricket Bowling Economy Rate Calculator
Bowlers are judged on three numbers: how cheaply they bowl, how often they strike, and how much each wicket costs. This calculator computes all three — economy rate, bowling average, and bowling strike rate — from runs conceded, overs bowled, and wickets taken.
How it works
Cricket overs are written in overs.balls notation, so the first step is converting them to a total ball count, remembering each over is 6 balls:
balls = (whole overs * 6) + part-balls // e.g. 8.3 -> 8*6 + 3 = 51 balls
overs (decimal) = balls / 6
Economy rate = Runs conceded / overs (decimal) // runs per over
Bowling average = Runs conceded / Wickets // runs per wicket
Strike rate = balls / Wickets // balls per wicket
Economy rate is always defined when at least one ball is bowled. Average and strike rate require at least one wicket, otherwise they are undefined.
Example and notes
A bowler with 10.0 overs (60 balls), 42 runs conceded, and 3 wickets has an economy of 42 / 10 = 4.20 runs per over, a bowling average of 42 / 3 = 14.0 runs per wicket, and a strike rate of 60 / 3 = 20.0 balls per wicket.
Tips: for all three metrics, lower is better. Economy rate matters most in white-ball cricket where containing runs wins matches, while bowling average and strike rate are weighted more heavily in Test cricket where taking 20 wickets is the goal. The part-ball field accepts 0-5, since a 6th ball completes the over.