Presentation is loading. Please wait.

Presentation is loading. Please wait.

Data Structures and Algorithms (AT70. 02) Comp. Sc. and Inf. Mgmt

Similar presentations


Presentation on theme: "Data Structures and Algorithms (AT70. 02) Comp. Sc. and Inf. Mgmt"— Presentation transcript:

1 Data Structures and Algorithms (AT70. 02) Comp. Sc. and Inf. Mgmt
Data Structures and Algorithms (AT70.02) Comp. Sc. and Inf. Mgmt. Asian Institute of Technology Instructor: Prof. Sumanta Guha Slide Sources: CLRS “Intro. To Algorithms” book website (copyright McGraw Hill) adapted and supplemented

2 CLRS “Intro. To Algorithms” Ch
CLRS “Intro. To Algorithms” Ch. 5: Probabilistic Analysis and Randomized Algorithms

3 Probability Practice Linearity of Expectation
If the reward for rolling a dice is the number of dollars that the face up shows, what is the expected reward? What does this mean? E.g., if this were an actual game how much would you be willing to pay to play? If a coin is tossed 5 times, what is the probability of 0 heads, 1 head, 2 heads, …? If a coin is tossed 5 times what is expected number of heads? What does this mean? How do we calculate it? Two ways: (a) Let X be the random variable whose value is the number of heads E(X) = ∑x=0..5 x * Pr(X=x) (b) Let Xi = I{coin i is heads} Note: I(event) = 1, if event occurs; 0, if it doesn’t Then X = X1 + X2 + X3 + X4 + X5 Therefore, E(X) = E(X1) + E(X2) + E(X3) + E(X4) + E(X5) indicator variable Linearity of Expectation

4

5 How many times do we expect to hire a new assistant?
Let X be the random variable whose value is the number of times. Let Xi = I{candidate i is hired} Then X = X1 + X2 + … + Xn Therefore, E(X) = E(X1) + E(X2) + … + E (Xn) What is E(Xi), the probability that the i th candidate is hired? In other words, what is the probability the i th candidate is the best of the first i candidates? Answer: 1/i Therefore, E(X) = 1 + 1/2 +1/3 + … + 1/n ≈ loge n

6 Guarantee randomness, no matter what the input!

7 Randomly Permuting the Input Array
Assuming all priorities P[i ] are distinct, prove that the procedure produces a uniform random permutation. Prove that the procedure produces a uniform random permutation.

8 n balls are randomly tossed into b bins.
Birthday Paradox How many people must there be in a room before there is a 50% chance that two share a birthday? Ball and bins n balls are randomly tossed into b bins. Expectedly, how many balls fall into a given bin? Expectedly, how many balls must one toss until a given bin is hit at least once? Expectedly, how many balls must one toss until every bin is hit at least once? Streaks Suppose we toss a fair coin n times. What is the longest streak of heads one expects to see? First, try to estimate the probability that there will be a streak of length k.

9 Problems Ex. 5.1-2 Ex. 5.1-3 Ex. 5.2-1 Ex. 5.2-2 Ex. 5.2-4 Ex. 5.4-2
Suppose that balls are tossed into b bins. Each toss is independent, and each ball is equally likely to end up in any bin. What is the expected number of ball tosses before at least one of the bins contains two balls? Ex Prob. 5-2


Download ppt "Data Structures and Algorithms (AT70. 02) Comp. Sc. and Inf. Mgmt"

Similar presentations


Ads by Google