Guesspage is a tool for creating dynamic, parameterized documents with probabilistic reasoning. It allows you to write formatted explanations that include uncertain values and relationships, automatically updating charts and calculations as you modify inputs.
With Guesspage, you can explore complex scenarios, perform sensitivity analyses, and visualize the impact of changing assumptions - all within a single, interactive document.
To share documents, save them to your Google Drive. This requires authenticating the site. Documents are saved to the folder "Guesspage Files". When saved, you can share the document with others by copying the URL.
Your account information is not stored anywhere but your browser, and not sent anywhere but the Google Drive API, when required to save.
[cellname = value]
: Define a cell with a fixed value[cellname = normal(mean, stddev)]
: Define a cell with a normal distribution[cellname = uniform(min, max)]
: Define a cell with a uniform distribution[cellname = triangular(min, mode, max)]
: Define a cell with a triangular distribution[cellname = othercell * 2]
: Define a cell based on other cells[cellname = if(condition, value_if_true, value_if_false)]
: Conditional statement*bold text*
: Create bold text_italic text_
: Create italic text`code`
: Inline code# Heading 1
: Create a top-level heading## Heading 2
: Create a second-level heading[Link text](URL)
: Create a hyperlinknormal(mean, stddev)
: Generate a value from a normal distributionuniform(min, max)
: Generate a value from a uniform distributiontriangular(min, mode, max)
: Generate a value from a triangular distributionmin(a, b, ...)
: Return the minimum of the given valuesmax(a, b, ...)
: Return the maximum of the given valuesmean(a, b, ...)
: Calculate the arithmetic mean of the given valuesmedian(a, b, ...)
: Calculate the median of the given valuesstdev(a, b, ...)
: Calculate the standard deviation of the given valuespercentile(p, a, b, ...)
: Calculate the p-th percentile of the given valueslog(x)
: Calculate the natural logarithm of xexp(x)
: Calculate e raised to the power of xsin(x)
, cos(x)
, tan(x)
: Trigonometric functionsAND
: Logical AND operatorOR
: Logical OR operatorNOT
: Logical NOT operator==
: Equal to!=
: Not equal to<
: Less than>
: Greater than<=
: Less than or equal to>=
: Greater than or equal to