Created
August 7, 2014 17:48
-
-
Save j2labs/4a0a82b9d064219c15bb to your computer and use it in GitHub Desktop.
fb earnings extrapolation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> 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