Skip to content

Instantly share code, notes, and snippets.

@j2labs
Created August 7, 2014 17:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save j2labs/4a0a82b9d064219c15bb to your computer and use it in GitHub Desktop.
Save j2labs/4a0a82b9d064219c15bb to your computer and use it in GitHub Desktop.
fb earnings extrapolation
>>> q1 = 2.91
>>> q5 = q1 + (q1 * .67)
>>> q5
4.8597
>>> distance = q5 - q1
>>> halfway = distance / 2
>>> step = halfway / 2
>>> q1 + step + step + step + step == q5
True
>>> step
0.487425
>>> q2 = q1 + step
>>> q3 = q1 + step + step
>>> q4 = q1 + step + step + step
>>> next_year_revenue = q2 + q3 + q4 + q5
>>> next_year_revenue
16.51425
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment