<aside>
<img src="https://s3-us-west-2.amazonaws.com/secure.notion-static.com/a5a1e3ce-00fa-46e4-9a75-58c2aed9e8ce/Notion_Fundamentals_with_Thomas_Frank_-_Avatar_2021.png" alt="https://s3-us-west-2.amazonaws.com/secure.notion-static.com/a5a1e3ce-00fa-46e4-9a75-58c2aed9e8ce/Notion_Fundamentals_with_Thomas_Frank_-_Avatar_2021.png" width="40px" /> Using exp()
, we can write a Notion formula that models continuous growth of a starting population by a certain percentage each year over a certain number of years.
This example is also used in the article on Euler’s Constant (e); its use here demonstrates how exp(n)
is equivalent to e^n
.
Created by Thomas Frank | Learn Notion Formulas | Notion Basics | Templates | Twitter
</aside>
// Compressed
prop("Starting Num") * exp(prop("Growth Rate") * prop("Periods"))
// Expanded
prop("Starting Num") *
exp(
prop("Growth Rate") *
prop("Periods")
)