Models in Modeling-with-Distributions-EXAMPLES

Models in Modeling-with-Distributions-EXAMPLES

Updated
people = normal(2000,1000)

eggs_per_day = normal(2,1)

days_of_supplies = normal(12,4)

eggs_on_titanic = people * eggs_per_day * days_of_supplies
Updated
// When you write "x to y", Squiggle creates a lognormal distribution with 90% confidence interval (x,y)
people = 1500 to 4000 

eggs_per_day = 0.8 to 4

days_of_supplies = 6 to 20

eggs_on_titanic = people * eggs_per_day * days_of_supplies