📘 Chapter 2: Probability Concepts for Engineers

🎮 Interactive Apps 📽️ PPT 📝 Quiz 📚 Homework 💬 Excel 📢 Student Q&A

🎮 Interactive Apps (HTML/JS Simulations)

📘 Chapter Review & Probability Basics

📐 Session 2.1.3 - Set Laws & Operations

🔢 Session 2.2 - Counting Techniques

📘 Sessions 2.3 - 2.9 - What is Probability?

📽️ PPT Slides

Download Chapter 2 Slides (ppt_chapter2.pptx)

📝 Quiz

  • Chapter 2 - Quiz 1 with Solutions
  • Chapter 2 - Quiz 2 with Solutions
  • Chapter 2 - Quiz 3 with Solutions
  • Chapter 2 - Quiz 4 with Solutions
  • 📚 Homework (due 9/10/2025)

    Download Chapter 2 Homework (chapter2-homework.docx)

    Download Chapter 2 Homework Set 1 Solution (chapter2-homework-solution1.html)

    Download Chapter 2 Homework Set 2 Solution (chapter2-homework-solution1.html)

    💬 Excel

  • Chapter 2 - Excel Functions
  • 📢 Student Q&A

    Q1: What does the union of two events A and B mean?

    The union A ∪ B means A occurs, or B occurs, or both occur.

    Q2: What does the intersection of A and B represent?

    The intersection A ∩ B means both A and B occur together.

    Q3: What is the probability of the sample space S?

    Always 1, because some outcome must happen in every trial.

    Q4: What is the complement of an event A?

    It is all outcomes in the sample space that are not in A, written as A′.

    Q5: What is the multiplication rule for independent events?

    If A and B are independent, then P(A ∩ B) = P(A) × P(B).

    Q6: What is conditional probability?

    The probability of A given that B has occurred: P(A|B) = P(A ∩ B) / P(B).

    Q7: What does Bayes’ Theorem allow us to do?

    It allows us to update the probability of a cause (event) when new evidence is observed.

    Q8: What is the difference between permutation and combination?

    Permutation cares about order of selection; Combination does not.

    Q9: If you flip a fair coin twice, what is the probability of at least one head?

    1 − P(no heads) = 1 − (1/2 × 1/2) = 3/4.

    Q10: Why are probability rules important for engineers?

    They help model uncertainty in real systems, reliability analysis, and risk management.

    Q11: What’s the difference between independent and mutually exclusive events?
    • Independent: Knowing one does not change the other. P(A∩B) = P(A)P(B) (equivalently, P(A|B)=P(A) and P(B|A)=P(B)). Independent events often do overlap.
    • Mutually exclusive (disjoint): Cannot occur together. P(A∩B) = 0. If P(A)>0 and P(B)>0, then they are automatically not independent because P(A)P(B)>0 ≠ 0.

    Examples: One coin toss—A: “Heads”, B: “Tails” ⇒ mutually exclusive (and dependent). Two coins—A: “1st is Heads”, B: “2nd is Heads” ⇒ independent.

    Q12: Bayes’ Theorem — how does it handle evidence, why is it important, and can you show a quick example?

    What it does: Bayes converts likelihoods into an updated belief (posterior): P(A|B) = [P(B|A)·P(A)] / P(B). It “turns around” conditional probability to answer “How likely is the cause given what I saw?”

    Why important: It’s the engine behind diagnostic testing, spam filtering, reliability and fault attribution, sensor fusion, and many ML workflows where you update prior knowledge with new evidence.

    Quick example (classroom pepper): Let A = “Foreign”, B = “Likes pepper”. Assume P(A)=0.20, P(B|A)=0.80, P(B|A′)=0.30. Then P(B)=0.80·0.20 + 0.30·0.80 = 0.40. Thus P(A|B) = (0.80·0.20)/0.40 = 0.40. Interpretation: among pepper-lovers, 40% are Foreign, 60% USA.