Difference between revisions of "Custom discrete probabilities"
Line 18: | Line 18: | ||
#:If the variable already has a definition, it confirms that you wish to replace it. | #:If the variable already has a definition, it confirms that you wish to replace it. | ||
#: | #: | ||
− | #:<tip title="Tip"> If the definition of a variable is already a probability table, a '''ProbTable''' button appears in the definition. Click it to open the '''Edit Table''' window (see | + | #:<tip title="Tip"> If the definition of a variable is already a probability table, a '''ProbTable''' button appears in the definition. Click it to open the '''Edit Table''' window (see [[Defining a variable as an edit table]]). </Tip> |
#: | #: | ||
# The '''Indexes''' dialog opens to confirm your choices for the indexes of the table. It already includes the selected variable (<code>Self</code>) among the selected indexes. Other options are variables with a domain that is a list of numbers or list of labels. Add or remove any other variables that you want to condition this variable on. | # The '''Indexes''' dialog opens to confirm your choices for the indexes of the table. It already includes the selected variable (<code>Self</code>) among the selected indexes. Other options are variables with a domain that is a list of numbers or list of labels. Add or remove any other variables that you want to condition this variable on. |
Revision as of 21:21, 8 January 2016
These functions let you specify a discrete probability distribution using a custom set of values, text (label) values, or numbers.
Probtable(): Probability Tables
To describe a probability distribution on a discrete variable whose domain is a list of numbers or list of labels, you use special kind of edit table called a probability table (or probtable), see Arrays and Indexes and Probtable().
Create a probability table: To define a variable using a probability table:
- Determine the variable’s domain — number or labels for its possible values.
- Select the variable and view its definition attribute in the Object window or Attribute panel of the Diagram window.
- Press the expr menu above the definition field and select Probability Table.
- If the variable already has a definition, it confirms that you wish to replace it.
- TipIf the definition of a variable is already a probability table, a ProbTable button appears in the definition. Click it to open the Edit Table window (see Defining a variable as an edit table).
- The Indexes dialog opens to confirm your choices for the indexes of the table. It already includes the selected variable (
Self
) among the selected indexes. Other options are variables with a domain that is a list of numbers or list of labels. Add or remove any other variables that you want to condition this variable on. - Click the OK button. An Edit Table window appears.
- Enter the possible values for the domain in the left column. As in any edit table, press Enter or down-arrow in the last row to add a row. Select Insert row (Control+i) or Delete row (Control+k) from the Edit menu. If they are numbers, they must be in increasing order.
- Enter the probability of each possible outcome in the second column. The probabilities should sum to 1. You may enter literal numbers or expressions.
Example: If P
is a variable whose value is a probability (between 0 and 1) and the possible weather outcomes are sunny and rainy, you might define a probability table for weather like this.
Expression view of probability table: The Weather probability table when viewed as an expression, looks like this.
Probtable(Self)(P, (1 - P))
The domain values do not appear in the expression view, and it is not very convenient for defining a probability table. More generally, the expression view of a multidimensional probability table looks like this:
Probtable(i1, i2, … in) (p1, p2, p3, … pm)
This example is an «n»-dimensional conditional probability table, indexed by the indexes «i1», «i2», … «in». One index must be Self
. «p1», «p2», «p3», … «pm» are the probabilities in the array. «m» is the product of the sizes of the indexes «i1», «i2», … «in».
Add a conditioning variable: You might wish to add one or more conditioning variables to a probability table, to create conditional dependency. Each discrete conditioning variable adds a dimension to the table. For example, in the Weather probability table, shown above, the probability of rain might depend on the season. So you might have Season
as a conditioning variable, defined as a list of labels:
Variable Season := ['Winter', 'Spring', 'Summer', 'Fall']
- Open the Edit Table window by clicking the ProbTable button.
- Click the indexes
button to open the Indexes dialog.
- Click the All Variables checkbox above the left hand list.
- Move the desired variable, e.g.,
Season
, to add it as an index. - Click OK to accept the changes.
The resulting table is indexed by both the domain of your variable and the domains of the conditionally dependent variables. You need to enter a probability for each cell. The probabilities must sum to one over the domain of the variable (sunny
and rainy
in the example), not over the conditioning index(es).
Determtable(): Deterministic conditional table
Determtable() defines the value of a variable as a deterministic (not uncertain) function of one or more discrete variables. It gives a value conditional on the value of one or more discrete variables, often including a probabilistic discrete variable and a discrete decision variable defined as a list. DetermTable() is described in More Array Functions, but we also include it in this section on discrete probability distributions, even though it is not probabilistic, because you usually use it in conjunction with Probtable and other discrete distributions. It is an editable table, like Probtable, but with a single (deterministic) value, number, or text, in each cell.
The Determtable() function looks like an edit table or a probability table, with an index (dimension) from each discrete variable on which it depends. Unlike Probtable(), it does not need a self index. Its result is probabilistic if any of its conditioning variables are probabilistic.
For the steps to create a determTable, see Creating a DetermTable.
Example: In Create a probability table above, Weather
is defined as a probability table. If P
, the probability of “sunny” is 0.4, then the probability of “rainy” is 0.6. Party_location
is a decision variable with values ['outdoors', 'porch','indoors']. value_to_me
is a determtable, containing utility values (or “payoffs”) for each combination of Party_location
and Weather
.
Evaluating value_to_me
gives the value of each party location, considering the uncertain distribution of Weather
. The mean value of value_to_me
is the expected utility.
Chancedist(p, a, i)
Creates a discrete probability distribution, where «a» is an array of outcome values, numbers or text, and «p» is the corresponding array of probabilities. «a» and «p» must both be indexed by «i».
When to use: Use: Chancedist() instead of ProbTable() when:
- The array of outcome a is multidimensional.
or
- You want to use other variables or expressions to define the outcomes or probability arrays.
Library: Distribution
Example:
Index Index_b :=
Red White Blue
Variable Array_q :=
Index_b ▶ Red White Blue 0.3 0.2 0.5
The domain of the variable is a list of labels: ['Red', 'White', 'Blue']
.
Chancedist(Array_q, Index_b, Index_b) →
See Also
- Probtable()
- Determtable()
- Chancedist()
Enable comment auto-refresher