Wolfram Computation Meets Knowledge

Turkey Portion Counter

The Turkey Portion Counter calculates the turkey mass needed to feed a group of adults, teenagers and children.

The turkey weight equals a half-pound per child, plus a pound per adult and teenager.

Formula

QuantityVariable["W", "Mass"] == Quantity[0.5, "Pounds"]*QuantityVariable["C", "Unitless"] + Quantity[1, "Pounds"]*(QuantityVariable["A", "Unitless"] + QuantityVariable["T", "Unitless"])

symbol description physical quantity
W turkey weight "Mass"
C number of children "Unitless"
A number of adults "Unitless"
T number of teenagers "Unitless"

Forms

Examples

Get the resource:

In[1]:=
ResourceObject["Turkey Portion Counter"]
Out[1]=

Get the formula:

In[2]:=
FormulaData[ResourceObject["Turkey Portion Counter"]]
Out[2]=

Use some values:

In[3]:=
FormulaData[
 ResourceObject[
  "Turkey Portion Counter"], {QuantityVariable["W","Mass"] -> 
   Quantity[16, "Pounds"], QuantityVariable["C","Unitless"] -> 2, 
  QuantityVariable["A","Unitless"] -> 2}]
Out[3]=

Publisher Information