Probability is a mathematical measure of the likelihood of an event occurring, ranging from 0 (impossible) to 1 (certain).
Non-negativity Axiom: Probability of any event is non-negative
P(A) ≥ 0 for any event A
Totality Axiom: Probability of the entire sample space is 1
P(Ω) = 1, where Ω represents the sample space
Additivity Axiom: Probability of mutually exclusive events can be added
For mutually exclusive events A and B: P(A ∪ B) = P(A) + P(B)
Consider a fair six-sided die:
Probability of rolling a 3: P(3) = 1/6
Probability of rolling an even number: P(even) = 3/6 = 1/2
Sample Space (Ω): The set of all possible outcomes of an experiment
Event: A subset of the sample space
Simple Event: A single, specific outcome
Compound Event: Combination of multiple simple events
Impossible Event: An event with zero probability
Certain Event: An event that always occurs
Coin Toss Experiment
Sample Space Ω = {Heads, Tails}
Simple Events: {Heads}, {Tails}
Compound Event: {Getting Heads at least once in 3 tosses}
Probability of a specific event = (Number of favorable outcomes) / (Total number of possible outcomes)
Events that cannot occur simultaneously
P(A ∩ B) = 0
Probability of either event: P(A ∪ B) = P(A) + P(B)
Occurrence of one event does not affect the probability of the other
P(A and B) = P(A) * P(B)
Card Drawing
Drawing a red card and a face card from a standard deck
These events might be mutually exclusive or independent depending on the specific draw
P(Independent Events) = P(A) * P(B)
P(Mutually Exclusive Events) = P(A) + P(B)
Conditional probability is the probability of an event occurring given that another event has already occurred.
P(A|B) = P(A ∩ B) / P(B)
P(A|B): Probability of A given B has occurred
P(A ∩ B): Probability of both A and B occurring
P(B): Probability of B occurring
Medical Test Scenario
Probability of having a disease given a positive test
Bayes' Theorem application
P(Disease|Positive Test) = [P(Positive Test|Disease) * P(Disease)] / P(Positive Test)
Reliability analysis involves calculating the probability of a system or component functioning successfully over a specific time period.
Failure Rate: Probability of component failure per unit time
Reliability Function: Probability of successful operation
Survival Probability: Probability of system functioning without failure
Series Systems
Parallel Systems
Mixed Configurations
Series System Reliability R(system) = R1 * R2 * R3
Where R is the reliability of each component
Exponential Distribution
Weibull Distribution
Normal Distribution
Textbook: "A First Course in Probability" by Sheldon Ross
Online Course: Coursera - Introduction to Probability and Data
Interactive Learning: R Programming for Probability Calculations
Solve multiple-choice probability problems
Use simulation tools like Monte Carlo methods
Practice calculating probabilities for real-world scenarios
Learn basic programming for probability simulations (Python, R)