Outcome
An outcome is the specific result you get when something uncertain “plays out.” If you roll a die, draw a card, or measure tomorrow’s temperature, the outcome is what actually happens—not what could have happened.
What “outcome” means in probability
In probability theory, an outcome is a single, fully specified result of a random experiment. The set of all possible outcomes is the sample space (often written as Ω). An event is a collection of outcomes (a subset of the sample space). Probabilities are assigned to events, and by extension they describe how likely different outcomes are.
Concrete examples
- Die roll: outcome = 4; sample space = {1,2,3,4,5,6}; event “even” = {2,4,6}.
- House prices: outcome = the sale price of a particular home next week (a single numeric value).
- Medical test: outcome = “positive” or “negative”; event could be “test is positive.”
- Exam scores: outcome = a student’s score; event “score ≥ 90.”
Why outcomes matter in AI/ML
Machine learning is full of outcomes, even when we don’t call them that. The label in supervised learning (spam vs. not spam), the value you’re trying to predict (future demand), and the result of a model’s random choices (a bootstrap sample, a dropout mask) are all outcomes of underlying random processes. Getting clear about outcomes helps you:
- Define what your model is predicting (the target variable).
- Connect predictions to probabilities (e.g., P(Y=1 | X) in classification).
- Reason correctly about uncertainty, evaluation, and risk (loss functions depend on realized outcomes).
Outcome is a single realized result of a random experiment or process, corresponding to one element of the sample space. It is the atomic event that probability models assign likelihood to, and it underpins how data are generated and how uncertainty is quantified in AI/ML. For example, in binary classification, an outcome for one instance might be y=1 (positive) or y=0 (negative).
Imagine flipping a coin: it can land on heads or tails. Each possible result you could get is an outcome. It’s simply “what happened” after a random event.
In probability and statistics, an outcome is one specific result from an experiment or situation where you don’t know the result in advance—like the number rolled on a die, tomorrow’s weather (sunny vs. rainy), or whether an email is spam or not. In AI and machine learning, the outcome is often the label or result you’re trying to predict, such as “will this customer buy: yes or no?”