1. Generality


2. Determinism


3. Termination

Stochastic Termination: The algorithm terminates based on some probabilistic factors.

Example: Dice Roll Game

Imagine a game where you roll a dice repeatedly, and the process ends when you roll a 6. The termination of this game is stochastic because it relies on a random event (rolling the die).

Steps:

  1. Roll a die.
  2. If the outcome is 6, stop (terminate).
  3. Otherwise, repeat the roll.

Stochastic Nature: The number of rolls required to terminate is unpredictable and varies each time you play, depending on random chance.

Expected Rolls: Statistically, the average number of rolls to get a 6 is 6 (due to the probability of 1/6 per roll), but this is not deterministic—it can happen on the first roll, the tenth roll, or any number of rolls.


4. Correctness

Refers to whether an algorithm produces the correct output.

Partial Correctness