Wolfram Computation Meets Knowledge

Basketball Effective Field Goal Percentage

The effective field goal percentage is a statistic that adjusts field goal percentage to account for the fact that three-point field goals count for three points, while field goals only count for two points.

The effective field goal percentage equals the sum of the three-point field goals made divided by 2 and field goals made, all divided by field goals attempted.

Formula

QuantityVariable["eFG%", "Unitless"] == (0.5*QuantityVariable["3PM", "Unitless"] + QuantityVariable["FGM", "Unitless"])/QuantityVariable["FGA", "Unitless"]

symbol description physical quantity
eFG% effective field goal percentage "Unitless"
FGA field goals attempted "Unitless"
3PM three-point field goals made "Unitless"
FGM field goals made "Unitless"

Forms

Examples

Get the resource:

In[1]:=
ResourceObject["Basketball Effective Field Goal Percentage"]
Out[1]=

Get the formula:

In[2]:=
FormulaData[
 ResourceObject["Basketball Effective Field Goal Percentage"]]
Out[2]=

Use some values:

In[3]:=
FormulaData[
 ResourceObject[
  "Basketball Effective Field Goal Percentage"], {QuantityVariable[
   "3PM","Unitless"] -> 3}]
Out[3]=

Publisher Information