Skip to content

Instantly share code, notes, and snippets.

@hmurraydavis
Created March 23, 2016 04:00
Show Gist options
  • Save hmurraydavis/8f9194966f33a9979486 to your computer and use it in GitHub Desktop.
Save hmurraydavis/8f9194966f33a9979486 to your computer and use it in GitHub Desktop.
Project Management Math
def actualTime(a, m, b):
te = (a + (4*m) + b )/6
return te
def variance(a, b):
var = ( (b-a)/6 )**2
return var
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment